/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

p {
    text-align: center;
}

/* Typography Guidelines - Heading Hierarchy */
h1 {
    font-size: 34px; /* 32-36px range */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #f8fafc;
}

h2 {
    font-size: 27px; /* 24-30px range */
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #333;
}

h3 {
    font-size: 21px; /* 18-24px range */
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #333;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #333;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #333;
}

h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #333;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    /* width: 40px;
    height: 40px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-link:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #eb2456;
}

.cta-button {
    background: #eb2456;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    background: #d41f4a;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle (hidden on desktop) */
.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 36, 86, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(235, 36, 86, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #10b981, #059669);
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-header {
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(235, 36, 86, 0.3);
    font-weight: 500;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1e293b;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #64748b;
    max-width: 700px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.title-highlight {
    background: linear-gradient(135deg, #eb2456, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border: 1px solid rgba(235, 36, 86, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(235, 36, 86, 0.3);
}

.hero-features .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(235, 36, 86, 0.3);
}

.hero-features .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.hero-features .feature-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.hero-features .feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-actions .btn {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(235, 36, 86, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(235, 36, 86, 0.4);
}

.hero-actions .btn-outline {
    background: transparent;
    color: #eb2456;
    border: 2px solid #eb2456;
    transition: all 0.3s ease;
}

.hero-actions .btn-outline:hover {
    background: #eb2456;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 36, 86, 0.3);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    background: white;
    border: 1px solid rgba(235, 36, 86, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats .stat-item {
    text-align: center;
    flex: 1;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #eb2456;
    margin-bottom: 8px;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(235, 36, 86, 0.2);
}

/* Title Highlight */
.title-highlight {
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Button Styles */
.btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #eb2456;
    color: white;
}

.btn-primary:hover {
    background: #d41f4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 36, 86, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #eb2456;
    border: 2px solid #eb2456;
}

.btn-secondary:hover {
    background: #eb2456;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 36, 86, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-hero {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary.btn-hero {
    background: linear-gradient(135deg, #eb2456, #3b82f6);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(235, 36, 86, 0.3);
}

.btn-primary.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(235, 36, 86, 0.4);
}

.btn-secondary.btn-hero {
    background: transparent;
    color: #eb2456;
    border: 2px solid #eb2456;
}

.btn-secondary.btn-hero:hover {
    background: #eb2456;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(235, 36, 86, 0.3);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary.btn-hero:hover .btn-glow {
    left: 100%;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-main {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-features {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 15px 15px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-features {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stats .stat-item {
        padding: 15px;
    }
    
    .hero-stats .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-stats .stat-icon i {
        font-size: 1.2rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-badge {
        padding: 10px 18px;
    }
    
    .hero-badge span {
        font-size: 0.8rem;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-subtitle {
    color: #FF8C42;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 27px; /* H2 size */
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 32px;
    max-width: 600px;
    text-align: center;
}

/* Who We Are Section */
.who-we-are {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.who-we-are .container {
    text-align: left;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-we-are-content {
    max-width: 500px;
}

.who-we-are .section-subtitle {
    color: #eb2456;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(236, 36, 86, 0.1);
    border-radius: 25px;
    border-left: 4px solid #eb2456;
}

.who-we-are .section-title {
    font-size: 27px; /* H2 size */
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-we-are .section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 100%;
    text-align: center;
}

.who-we-are .btn {
    position: relative;
    overflow: hidden;
    background: #eb2456;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 36, 86, 0.3);
    transition: all 0.3s ease;
}

.who-we-are .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.who-we-are .btn:hover::before {
    left: 100%;
}

.who-we-are .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.who-we-are-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-we-are-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 140, 66, 0.1) 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.who-we-are-visual::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.visual-icon {
    position: relative;
    z-index: 3;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #eb2456 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(236, 36, 86, 0.3);
    animation: pulse 4s ease-in-out infinite;
}

.visual-icon i {
    font-size: 3rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Services Section */
.services {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services .section-subtitle {
    color: #eb2456;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(236, 36, 86, 0.1);
    border-radius: 25px;
    border-left: 4px solid #eb2456;
}

.services .section-title {
    font-size: 27px; /* H2 size */
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    padding: 40px 30px;
    color: #1e293b;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #eb2456, #FF8C42, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 140px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #eb2456 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(236, 36, 86, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.service-image i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-image i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 21px; /* H3 size */
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #eb2456;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.service-card .learn-more {
    color: #eb2456;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.service-card:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

.service-card .learn-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more i {
    transform: translateX(5px);
}

.services .btn {
    position: relative;
    overflow: hidden;
    background: #eb2456;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 36, 86, 0.3);
    transition: all 0.3s ease;
    padding: 18px 36px;
    font-size: 1.1rem;
}

.services .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.services .btn:hover::before {
    left: 100%;
}

.services .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 36, 86, 0.4);
}

/* Our Approach Section */
.our-approach {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.our-approach::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.our-approach::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.our-approach .container {
    position: relative;
    z-index: 2;
}

.approach-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.our-approach .section-subtitle {
    color: #eb2456;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(236, 36, 86, 0.1);
    border-radius: 25px;
    border-left: 4px solid #eb2456;
}

.our-approach .section-title {
    font-size: 27px; /* H2 size */
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.our-approach .section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
    max-width: 100%;
    text-align: center;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.approach-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #eb2456, #FF8C42, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.approach-card:hover::before {
    transform: scaleX(1);
}

.approach-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.approach-icon {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eb2456 0%, #FF8C42 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(236, 36, 86, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.approach-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.approach-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(236, 36, 86, 0.15);
    line-height: 1;
    position: absolute;
    right: 0;
    top: -10px;
    z-index: 1;
}

.approach-content h3 {
    font-size: 21px; /* H3 size */
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
    transition: color 0.3s ease;
}

.approach-card:hover .approach-content h3 {
    color: #eb2456;
}

.approach-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

/* Industries Section */
.industries {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.industries::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.industries .container {
    position: relative;
    z-index: 2;
}

.industries-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.industries-text {
    max-width: 500px;
}

.industries .section-title {
    font-size: 27px; /* H2 size */
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries .section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 100%;
    text-align: center;
}

.industries .btn {
    position: relative;
    overflow: hidden;
    background: #eb2456;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 36, 86, 0.3);
    transition: all 0.3s ease;
    padding: 18px 36px;
    font-size: 1.1rem;
}

.industries .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.industries .btn:hover::before {
    left: 100%;
}

.industries .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 36, 86, 0.4);
}

.industries-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.industry-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 20px 10px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B9D, #FF8C42, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.industry-item:hover::before {
    transform: scaleX(1);
}

.industry-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.industry-item span {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.industry-item:hover span {
    color: #FF6B9D;
}

.industry-item i {
    color: #FF6B9D;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 107, 157, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-item:hover i {
    background: rgba(255, 107, 157, 0.2);
    transform: scale(1.1);
}

/* Fixed Sidebar Elements */
.fixed-sidebar {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.whatsapp-fixed,
.to-top-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 24px;
}

            .whatsapp-fixed {
                background: linear-gradient(135deg, #25D366, #128C7E);
                color: white;
            }

            .whatsapp-fixed:hover {
                background: linear-gradient(135deg, #128C7E, #075E54);
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            }

            .instagram-fixed {
                background: linear-gradient(135deg, #E4405F, #C13584);
                color: white;
                border-radius: 50%;
                position: relative;
                overflow: hidden;
            }

            .instagram-fixed:hover {
                background: linear-gradient(135deg, #C13584, #833AB4);
                transform: translateY(-3px) scale(1.05);
                box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5);
            }

.to-top-btn {
    background: linear-gradient(135deg, #eb2456, #d41f4a);
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.to-top-btn:hover {
    background: linear-gradient(135deg, #d41f4a, #b91c3a);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(235, 36, 86, 0.4);
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid #333;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

            .whatsapp-fixed:hover .tooltip,
            .instagram-fixed:hover .tooltip,
            .to-top-btn:hover .tooltip {
                opacity: 1;
                visibility: visible;
                right: 75px;
            }

/* Responsive Design for Fixed Elements */
@media (max-width: 768px) {
    .fixed-sidebar {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .whatsapp-fixed,
    .to-top-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .fixed-sidebar {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }
    
    .whatsapp-fixed,
    .to-top-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        /* flex-direction: column; */
        gap: 20px;
    }
    
    .nav {
        display: none; /* Hide desktop navigation on mobile */
    }
    
    .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        background: none;
        border: none;
        padding: 10px;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        margin: 5px 0;
        transition: 0.3s;
    }
    
    .mobile-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 20px 0;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .mobile-nav-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 1.1rem;
        padding: 15px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        background: #f8f9fa;
        color: #eb2456;
    }
    
    .mobile-menu-cta {
        padding: 20px;
        border-top: 1px solid #e5e7eb;
    }
    
    .mobile-menu-cta .cta-button {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    
    .hero .container {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .who-we-are .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .who-we-are-content {
        max-width: 100%;
    }
    
    .who-we-are .section-title {
        font-size: 2.2rem;
    }
    
    .who-we-are-visual {
        height: 300px;
    }
    
    .industries-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .industries .section-title {
        font-size: 2.2rem;
    }
    
    .industries-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .industry-item {
        padding: 20px 18px;
    }
    
    .industry-item span {
        font-size: 1rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .approach-card {
        padding: 30px 25px;
    }
    
    .approach-card h3 {
        font-size: 1.3rem;
    }
    
    .approach-card p {
        font-size: 0.95rem;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .service-image i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 1rem;
    }
    
    .service-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .service-image i {
        font-size: 2.5rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-card {
        padding: 30px 25px;
    }
    
    .approach-card h3 {
        font-size: 1.3rem;
    }
    
    .approach-card p {
        font-size: 1rem;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .icon-wrapper i {
        font-size: 2rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .industries .section-title {
        font-size: 2rem;
    }
    
    .industries-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .industry-item {
        padding: 18px 16px;
    }
    
    .industry-item span {
        font-size: 0.95rem;
    }
    
    .industry-item i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Button hover effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Animation for service cards */
.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for service cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Animation for approach cards */
.approach-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation for approach cards */
.approach-card:nth-child(1) { animation-delay: 0.1s; }
.approach-card:nth-child(2) { animation-delay: 0.2s; }
.approach-card:nth-child(3) { animation-delay: 0.3s; }
.approach-card:nth-child(4) { animation-delay: 0.4s; }
.approach-card:nth-child(5) { animation-delay: 0.5s; }

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #3F51B5 100%);
    color: #f8fafc;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 36, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #eb2456, #FF8C42);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 51%!important;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #eb2456 0%, #FF8C42 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 36, 86, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(236, 36, 86, 0.4);
}

.social-link i {
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: #eb2456;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #eb2456;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item span {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #eb2456;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 0 0;
    }
    
    .footer-content {
        gap: 35px;
        margin-bottom: 35px;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-item span {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-bottom-links {
        gap: 20px;
        flex-wrap: wrap;
    }
}

.about-cta p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 120px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Simple Page Header - No Banner */
.simple-page-header {
    padding: 60px 0 30px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.simple-page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

/* Privacy Policy & Terms Pages */
.privacy-policy-page,
.terms-conditions-page {
    min-height: 100vh;
    padding: 140px 0 0 0;
    overflow: visible;
}

.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

.content-section {
    margin-bottom: 40px;
    overflow: visible;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    margin-top: 0;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 16px;
}

.content-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.content-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 8px;
}

.contact-section {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 36, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 34px; /* H1 size */
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 36, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 34px; /* H1 size */
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    text-align: center;
    margin-right: auto;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23eb2456" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text .hero-title {
    font-size: 34px; /* H1 size */
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text .hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #eb2456;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(235, 36, 86, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.floating-icon i {
    font-size: 2rem;
    color: #eb2456;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 27px; /* H2 size */
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.method-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(235, 36, 86, 0.15);
    border-color: #eb2456;
}

.method-card.primary {
    background: linear-gradient(135deg, #eb2456 0%, #d41f4a 100%);
    color: white;
}

.method-card.primary .method-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.method-card.primary .method-link {
    color: white;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.method-icon i {
    font-size: 2rem;
    color: #eb2456;
}

.method-card h3 {
    font-size: 21px; /* H3 size */
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.method-card p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #eb2456;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.method-link:hover {
    gap: 12px;
    color: #d41f4a;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.contact-info-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 27px; /* H2 size */
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.form-header p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #eb2456;
    font-size: 1.1rem;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-wrapper textarea {
    padding-left: 48px;
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #eb2456;
    box-shadow: 0 0 0 4px rgba(235, 36, 86, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #adb5bd;
}

.submit-btn {
    background: linear-gradient(135deg, #eb2456 0%, #d41f4a 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(235, 36, 86, 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-header {
    text-align: center;
}

.info-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.info-header p {
    color: #666;
    line-height: 1.6;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(235, 36, 86, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eb2456 0%, #d41f4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.info-content p {
    color: #666;
    margin-bottom: 4px;
    font-weight: 500;
}

.info-note {
    font-size: 0.85rem;
    color: #eb2456;
    font-weight: 500;
}

.response-time-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid #eb2456;
}

.response-icon {
    width: 50px;
    height: 50px;
    background: #eb2456;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.response-icon i {
    font-size: 1.2rem;
    color: white;
}

.response-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.response-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(235, 36, 86, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-choose-section .section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.why-choose-section .section-header p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #eb2456, #3b82f6, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 100px;
    height: 50px;
    background: linear-gradient(135deg, #eb2456, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(235, 36, 86, 0.3);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(235, 36, 86, 0.4);
}

.feature-icon i {
    font-size: 1.8rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    /* font-weight: 300; */
}

/* Feature item animations */
.feature-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .contact-info-section .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .hero-text .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card {
        padding: 30px 20px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Page Banner Styles */
.page-banner {
    margin-top: 41px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(235, 36, 86, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(235, 36, 86, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(235, 36, 86, 0.04) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(235, 36, 86, 0.03) 50%, transparent 70%),
        radial-gradient(circle, rgba(235, 36, 86, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 15s ease-in-out infinite;
}

.page-banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-banner .page-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.1;
    position: relative;
    letter-spacing: -0.02em;
}

.page-banner .page-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.page-banner .page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #eb2456, #FF8C42);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(235, 36, 86, 0.3);
}

.page-banner .page-subtitle {
    font-size: 1.4rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    padding: 20px 0;
}

.page-banner .page-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #eb2456, #FF8C42);
    border-radius: 1px;
}

/* Responsive Design for Page Banners */
@media (max-width: 768px) {
    .page-banner {
        padding: 70px 0;
    }
    
    .page-banner .page-title {
        font-size: 3rem;
    }
    
    .page-banner .page-subtitle {
        font-size: 1.2rem;
        max-width: 500px;
    }
    
    .page-banner::after {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 50px 0;
    }
    
    .page-banner .page-title {
        font-size: 2.2rem;
    }
    
    .page-banner .page-subtitle {
        font-size: 1.1rem;
        max-width: 400px;
    }
    
    .page-banner::after {
        width: 200px;
        height: 200px;
    }
}

/* Products Page Styles */
.products-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23eb2456" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.products-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text .hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #eb2456;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(235, 36, 86, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.floating-icon i {
    font-size: 2rem;
    color: #eb2456;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Innovation Segment */
.innovation-segment {
    padding: 80px 0;
    background: white;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.innovation-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #eb2456, #FF8C42, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(235, 36, 86, 0.15);
    border-color: #eb2456;
}

.innovation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.innovation-card:hover .innovation-icon {
    background: linear-gradient(135deg, #eb2456 0%, #d41f4a 100%);
}

.innovation-icon i {
    font-size: 2rem;
    color: #eb2456;
    transition: all 0.3s ease;
}

.innovation-card:hover .innovation-icon i {
    color: white;
}

.innovation-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.innovation-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.innovation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(235, 36, 86, 0.1);
    color: #eb2456;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Flagship Products */
.flagship-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(235, 36, 86, 0.15);
}

.product-showcase.reverse {
    direction: rtl;
}

.product-showcase.reverse .product-content {
    direction: ltr;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #eb2456 0%, #d41f4a 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 24px;
}

.badge-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.badge-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item i {
    color: #eb2456;
    font-size: 1.1rem;
}

.highlight-item span {
    color: #333;
    font-weight: 500;
}

.product-tech h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: rgba(235, 36, 86, 0.1);
    color: #eb2456;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(235, 36, 86, 0.2);
}

.product-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #eb2456 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(235, 36, 86, 0.3);
    position: relative;
    z-index: 2;
}

.product-icon-large i {
    font-size: 3rem;
    color: white;
}

.product-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(235, 36, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Core Technology Segment */
.core-technology {
    padding: 80px 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(235, 36, 86, 0.15);
    border-color: #eb2456;
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: linear-gradient(135deg, #eb2456 0%, #d41f4a 100%);
}

.tech-icon i {
    font-size: 2rem;
    color: #eb2456;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon i {
    color: white;
}

.tech-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech-feature {
    background: rgba(235, 36, 86, 0.1);
    color: #eb2456;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* FAQs Section */
.faqs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faqs-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(235, 36, 86, 0.1);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(235, 36, 86, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #eb2456;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .products-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 30px;
    }
    .hero-visual {
        position: relative;
        height: 0px;
    }
    .hero-text .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
    
    .product-showcase.reverse {
        direction: ltr;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-hero {
        padding: 80px 0 60px;
    }
    
    .hero-text .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .product-showcase {
        padding: 20px 15px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .tech-card {
        padding: 30px 20px;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23eb2456" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23services-grain)"/></svg>');
    opacity: 0.3;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.services-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-hero .hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
}

.services-hero .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.services-hero .stat-item {
    text-align: center;
}

.services-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #eb2456;
    margin-bottom: 8px;
}

.services-hero .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.services-hero .hero-visual {
    position: relative;
    height: 400px;
}

.services-hero .floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.services-hero .floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(235, 36, 86, 0.2);
    animation: float 6s ease-in-out infinite;
}

.services-hero .floating-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.services-hero .floating-icon:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.services-hero .floating-icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.services-hero .floating-icon i {
    font-size: 2rem;
    color: #eb2456;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #eb2456, #FF8C42, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(235, 36, 86, 0.15);
    border-color: #eb2456;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #eb2456 0%, #d41f4a 100%);
}

.service-card .service-icon i {
    font-size: 2rem;
    color: #eb2456;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.service-card .feature-tag {
    background: rgba(235, 36, 86, 0.1);
    color: #eb2456;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: #f8f9fa;
}

.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(235, 36, 86, 0.15);
}

.service-showcase.reverse {
    direction: rtl;
}

.service-showcase.reverse .service-content {
    direction: ltr;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #eb2456 0%, #d41f4a 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 24px;
}

.service-badge .badge-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.service-badge .badge-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.service-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-highlights .highlight-item i {
    color: #eb2456;
    font-size: 1.1rem;
}

.service-highlights .highlight-item span {
    color: #333;
    font-weight: 500;
}

.service-tech h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.service-tech .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tech .tech-tag {
    background: rgba(235, 36, 86, 0.1);
    color: #eb2456;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(235, 36, 86, 0.2);
}

.service-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #eb2456 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(235, 36, 86, 0.3);
    position: relative;
    z-index: 2;
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(235, 36, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.choose-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(235, 36, 86, 0.15);
    border-color: #eb2456;
}

.choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.choose-card:hover .choose-icon {
    background: linear-gradient(135deg, #eb2456 0%, #d41f4a 100%);
}

.choose-icon i {
    font-size: 2rem;
    color: #eb2456;
    transition: all 0.3s ease;
}

.choose-card:hover .choose-icon i {
    color: white;
}

.choose-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.choose-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .services-hero-content {
        /* grid-template-columns: 1fr; */
        text-align: center;
        gap: 40px;
        padding: 25px;
    }
    
    .services-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero .hero-stats {
        flex-direction: column !important;
        gap: 20px;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
    
    .service-showcase.reverse {
        direction: ltr;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 80px 0 60px;
    }
    
    .services-hero .hero-title {
        font-size: 2rem;
    }
    
    .services-hero .hero-stats {
        flex-direction: column !important;
        gap: 15px;
        align-items: center;
    }
    
    .service-showcase {
        padding: 20px 15px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .choose-card {
        padding: 30px 20px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(235, 36, 86, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 15px 15px;
}

.about-hero-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #eb2456;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-hero-visual {
    position: relative;
    height: 500px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: #eb2456;
    margin-bottom: 10px;
}

.floating-card span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    right: 40px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 80px;
    left: 60px;
    animation-delay: 4s;
}

.main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(235, 36, 86, 0.3);
}

.main-visual i {
    font-size: 4rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 15px 15px;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.highlight-item:hover {
    background: #e9ecef;
}

.highlight-item i {
    font-size: 1.2rem;
    color: #eb2456;
}

.highlight-item span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.story-visual {
    position: relative;
}

.story-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(235, 36, 86, 0.3);
}

.image-overlay i {
    font-size: 3rem;
    color: white;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mv-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23eb2456" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23mv-pattern)"/></svg>');
    opacity: 0.6;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.mv-container {
    position: relative;
    z-index: 2;
}

/* MV Hero Section */
.mv-hero {
    background: white;
    border-radius: 25px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(235, 36, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mv-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.mv-hero-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mv-hero-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.mv-hero-visual {
    text-align: center;
}

.mv-hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(235, 36, 86, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.mv-hero-icon i {
    font-size: 3rem;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* MV Cards Container */
.mv-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.mv-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px 20px;
    position: relative;
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(235, 36, 86, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(235, 36, 86, 0.3);
}

.mv-icon i {
    font-size: 1.8rem;
    color: white;
}

.card-content {
    padding: 0 40px 40px;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.card-content p {
    font-size: 0.9rem;
    color: #64748b !important;
    margin: 0;
}

.mission-features,
.vision-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
}

.feature-item i {
    font-size: 1.2rem;
    color: #eb2456;
}

.feature-item span {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #eb2456, #FF8C42);
}

/* MV Stats */
.mv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(235, 36, 86, 0.3);
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #eb2456;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: white;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    text-align: center;
    position: relative;
}

.founder-avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 20px 60px rgba(235, 36, 86, 0.3);
}

.founder-avatar i {
    font-size: 4rem;
    color: white;
}

.founder-badge {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

.founder-badge span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.founder-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.founder-text blockquote {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.founder-text blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #eb2456;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.founder-signature {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.founder-signature strong {
    font-size: 1.2rem;
    color: #333;
}

.founder-signature span {
    font-size: 1rem;
    color: #666;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.partner-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(235, 36, 86, 0.3);
}

.partner-icon i {
    font-size: 1.8rem;
    color: white;
}

.partner-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.partner-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Recognitions Section */
.recognitions-section {
    padding: 100px 0;
    background: white;
}

.recognitions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.recognition-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.recognition-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.recognition-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eb2456, #FF8C42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(235, 36, 86, 0.3);
}

.recognition-icon i {
    font-size: 1.8rem;
    color: white;
}

.recognition-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.recognition-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-text h2 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
    }
    
    .mv-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-cards-container {
        grid-template-columns: 1fr;
    }
    
    .mv-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partners-grid,
    .recognitions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Why Choose Section Responsive */
    .why-choose-section {
        padding: 80px 0;
    }
    
    .why-choose-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .why-choose-section .section-header p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 25px;
        margin-top: 40px;
    }
    
    .feature-item {
        padding: 30px 25px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        aspect-ratio: 1 / 1;
        flex-shrink: 0;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .partners-grid,
    .recognitions-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-text h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Privacy Policy & Terms Pages Mobile */
    .simple-page-header h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content,
    .terms-content {
        padding: 0 15px;
    }
    
    .contact-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    /* Why Choose Section Mobile */
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-section .section-header p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
        aspect-ratio: 1 / 1;
        flex-shrink: 0;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
}
