@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --dark-blue: #1e40af;
    --light-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --text-dark: #1e293b;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 30px;
    font-weight: 900;
    color: var(--primary-blue);
}

.logo a{
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.cta-btn {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: rgb(235, 235, 235) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

#dropmenus {
    display: none; /* Hidden by default */
    margin-top: 0;
    opacity: 0;
    transition: opacity 0.3s ease, margin-top 0.3s ease; /* Optional: for smooth transitions */
}

.dropdown.active #dropmenus {
    display: block;
    margin-top: 20px;
    opacity: 1;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    margin-top: 0.25rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-radius: 8px;
    margin: 0 4px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        backdrop-filter: blur(20px);
        padding: 1rem 0;
        border-top: 1px solid var(--light-gray);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        padding: 12px 20px;
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: var(--light-gray);
        backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
        padding: 0 0 0 2rem; /* Indentation for submenu */
        opacity: 1;
        transform: none;
        display: none;
        flex-direction: column; /* Ensure vertical stacking */
    }

    .dropdown-menu.show {
        display: flex;
    }

    .dropdown-menu a {
        padding: 10px 20px;
        border-bottom: none;
        color: var(--text-dark);
        width: 100%; /* Ensure full width on mobile */
    }

    .dropdown-menu a:hover {
        background: var(--light-blue);
        color: var(--white) !important;
        margin: 0;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section (Enhanced) */
.hero {
    background: var(--darker-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background: radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    animation: gradientPulse 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes gradientPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content .subheadline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
    
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::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.4s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-secondary::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.4s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s;
    animation-fill-mode: both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-blue);
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.8s;
    animation-fill-mode: both;
}

.platforms-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 450px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-xl);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
    transition: transform 0.4s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.2);
}

.platform-name {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Trust Indicators */
.trust-section {
    background: var(--light-gray);
    padding: 4rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1rem;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 24px;
}

.trust-item h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--medium-gray);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title-white {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-white {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    color: white;
    
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 28px;
}

.service-card:hover .service-icon {
    background: white;
    color: var(--gradient-text-hover, #1e3a8a); /* Optional: custom color for icon on hover */
}

.service-card .service-list li {
    color: #666;
    transition: color 0.4s ease-in-out;
}

.service-card:hover .service-list li {
    color: white;
}


.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card:hover .learn-more {
    color: white;
}


/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: var(--light-gray);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.success-story-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.success-story-metric {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.success-story-period {
    opacity: 0.9;
    font-size: 0.9rem;
}

.success-story-content {
    padding: 2rem;
}

.success-story-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.success-story-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-story-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.success-story-tag {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.testimonial-content {
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h5 {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author-info p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    color: var(--primary-blue);
    opacity: 0.15;
    z-index: 0;
}

/* Packages Section */
.packages {
    background: 
        radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        var(--dark-bg);
    color: white;
    padding: 6rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    background: rgba(37, 99, 235, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-check {
    color: #10b981;
}

.feature-cross {
    color: #ef4444;
}

/* Packages Section - Light Theme */
.packages-light {
    background: 
        radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        #f5f7fa; /* Light grayish background */
    color: #1f2937; /* Dark text for contrast */
    padding: 6rem 0;
}

.packages-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card-light {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white for cards */
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow for depth */
}

.package-card-light.featured-light {
    border-color: var(--primary-blue); /* Retain brand color */
    transform: scale(1.05);
    background: rgba(37, 99, 235, 0.05); /* Light blue tint for featured card */
}

.package-card-light:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9); /* Slightly more opaque on hover */
}

.package-badge-light {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary); /* Keep gradient for consistency */
    color: #ffffff; /* White text for badge */
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-name-light {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937; /* Dark text for readability */
}

.package-price-light {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-blue); /* Keep accent color */
    margin-bottom: 2rem;
}

.package-price-light-span {
    font-size: 20px;
}


.feature-list-light {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.feature-list-light li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Light border for list items */
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151; /* Slightly lighter dark text */
}

.feature-check-light {
    color: #10b981; /* Green check for consistency */
}

.feature-cross-light {
    color: #ef4444; /* Red cross for consistency */
}

/* FAQ Section - Light Theme */
.faq-light {
    background: 
        radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        #f5f7fa; /* Light grayish background */
    color: #1f2937; /* Dark text for contrast */
    padding: 6rem 0;
}

.faq-accordion-light {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item-light {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Soft shadow */
}

.faq-question-light {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question-light:hover {
    background: rgba(37, 99, 235, 0.05); /* Light blue tint on hover */
}

.faq-icon-light {
    color: var(--primary-blue); /* Brand color */
    transition: transform 0.3s ease;
}

.faq-item-light[open] .faq-icon-light {
    transform: rotate(180deg); /* Rotate chevron when open */
}

.faq-answer-light {
    padding: 1.5rem;
    font-size: 1rem;
    color: #374151; /* Slightly lighter dark text */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.section-title-light {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937; /* Dark text for light theme */
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle-light {
    font-size: 1.2rem;
    color: #374151; /* Lighter dark text */
    text-align: center;
    margin-bottom: 2rem;
}

/* Legal Pages Section - Light Theme (Privacy Policy, Terms of Service, Disclaimer) */
.legal-light {
    background: 
        radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        #f5f7fa; /* Light grayish background */
    color: #1f2937; /* Dark text for contrast */
    padding: 6rem 0;
}

.legal-content-light {
    max-width: 800px;
    margin: 3rem auto;
}

.legal-item-light {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
    border-radius: 10px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Soft shadow */
}

.legal-heading-light {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.legal-text-light {
    font-size: 1rem;
    color: #374151; /* Slightly lighter dark text */
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-list-light {
    list-style: none;
    margin-bottom: 1rem;
}

.legal-list-light li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.legal-icon-light {
    color: #10b981; /* Green check for consistency */
}

.section-title-light {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937; /* Dark text for light theme */
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle-light {
    font-size: 1.2rem;
    color: #374151; /* Lighter dark text */
    text-align: center;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
}

.contact-method i {
    width: 20px;
    text-align: center;
}

.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        var(--dark-bg);
    color: white !important;
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.why-choose-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Our Approach Section */
.approach {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: rgba(37, 99, 235, 0.05);
}

.approach-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.approach-item:hover::before {
    opacity: 1;
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.approach-item:hover .approach-icon {
    transform: scale(1.1);
}

.approach-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-item {
        padding: 1.5rem;
    }

    .approach-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .approach-item h3 {
        font-size: 1.3rem;
    }

    .approach-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .approach-item {
        padding: 1.25rem;
    }

    .approach-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .approach-item h3 {
        font-size: 1.2rem;
    }

    .approach-item p {
        font-size: 0.9rem;
    }
}

/* About Company Section (Our Story) */
.about-company {
    padding: 6rem 0;
    background: var(--light-gray);
}

.company-content {
    max-width:100%;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--medium-gray);
    font-size: 1.1rem;
    text-align: justify;
}

.company-content p {
    margin-bottom: 1.5rem;
}

.section-title-about {
    text-align: left;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle-about {
    text-align: left;
    color: var(--medium-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .section-title, .section-title-white {
        font-size: 2rem;
    }

    .section-subtitle, .section-subtitle-white {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .company-content {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

 /* Footer */
    .footer {
        background: var(--darker-bg);
        color: white;
        padding: 5rem 0 3rem;
        position: relative;
        overflow: hidden;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
        z-index: 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
        position: relative;
        z-index: 1;
    }

    .footer-section h3 {
        margin-bottom: 1.5rem;
        font-weight: 700;
        font-size: 1.4rem;
    }

    .footer-section-new h3 {
        margin-bottom: 1.5rem;
        font-weight: 700;
        font-size: 35px;
    }

    .footer-section p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .footer-section a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

     .footer-section-new a {
       color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        display: block;
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

    .footer-section-new p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: justify;
    }
    .footer-section a:hover {
        color: var(--accent-blue);
        transform: translateX(5px);
    }
    

    .social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 40px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: white;
        font-size: 1.3rem !important;
    }

    .social-icon:hover {
        background: var(--primary-blue);
        transform: scale(1.1);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        position: relative;
        z-index: 1;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-copyright {
        margin: 0;
    }

    .company-highlight {
        color: var(--accent-blue);
        text-decoration: none;
    }

    .company-highlight:hover {
        color: var(--white);
    }

    .footer-policies {
        display: flex;
        gap: 1.5rem;
    }

    .footer-policies a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.9rem;
    }

    .footer-policies a:hover {
        color: var(--accent-blue);
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
        .footer-bottom-content {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-policies {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--light-blue);
}

/* Sticky CTA (Left) */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 2.5rem;
    left: 3.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
    box-shadow: var(--shadow-xl);
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    display: flex; /* Show when visible class is added */
}

.sticky-cta:hover {
    transform: translateX(5px);
    background: var(--light-blue);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.loader-spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
    }

   .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 4rem 1rem;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content .subheadline {
    font-size: 1.1rem;
    max-width: 100%;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 3rem;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    text-align: center;
}

.hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    padding: 1rem 0.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-stats .stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4A90E2;
    display: block;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.8);
}

    .platforms-showcase {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .packages-grid,
    .services-grid,
    .case-studies-grid,
    .testimonials-grid,
    .why-choose-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .sticky-cta {
        bottom: 70px;
        padding: 10px 15px;
        font-size: 0.9rem;
        bottom: 20px;
        left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content .subheadline {
        font-size: 1.1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 22px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .platforms-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }

    .platform-card {
        padding: 1.25rem;
    }

    .platform-icon {
        font-size: 2rem;
    }

    .platform-name {
        font-size: 0.9rem;
    }

    .package-price {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .why-choose-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Hero Section Custom Responsive for 1000px - 1500px Devices */

/* Large Laptop/Small Desktop (1400px - 1500px) */
@media (max-width: 1500px) and (min-width: 1401px) {
    .hero-container {
        max-width: 1200px;
        padding: 5rem 2rem;
        gap: 3rem;
    }
    .hero-content h1 {
        font-size: 3.2rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    .hero-content .subheadline {
        font-size: 1.25rem;
        max-width: 520px;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    .hero-buttons {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    .hero-stats {
        gap: 2rem;
        margin-top: 3rem;
    }
    .hero-stats .stat-number {
        font-size: 2.2rem;
    }
    .hero-stats .stat-label {
        font-size: 1rem;
    }
}

/* Standard Laptop (1300px - 1400px) */
@media (max-width: 1400px) and (min-width: 1301px) {
    .hero-container {
        max-width: 1100px;
        padding: 4.5rem 2rem;
        gap: 2.5rem;
    }
    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    .hero-content .subheadline {
        font-size: 1.2rem;
        max-width: 500px;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    .hero-buttons {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 1.05rem;
    }
    .hero-stats {
        gap: 1.8rem;
        margin-top: 3rem;
    }
    .hero-stats .stat-number {
        font-size: 2.1rem;
    }
    .hero-stats .stat-label {
        font-size: 0.95rem;
    }
}

/* Medium Laptop (1200px - 1300px) */
@media (max-width: 1300px) and (min-width: 1201px) {
    .hero-container {
        max-width: 1000px;
        padding: 4.5rem 1.5rem;
        gap: 2.5rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    .hero-content .subheadline {
        font-size: 1.15rem;
        max-width: 480px;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    .hero-buttons {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    .hero-stats .stat-label {
        font-size: 0.9rem;
    }
}

/* Small Laptop (1100px - 1200px) */
@media (max-width: 1200px) and (min-width: 1101px) {
    .hero-container {
        max-width: 950px;
        padding: 4rem 1.5rem;
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    .hero-content .subheadline {
        font-size: 1.1rem;
        max-width: 460px;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    .hero-buttons {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    .hero-stats .stat-number {
        font-size: 1.9rem;
    }
    .hero-stats .stat-label {
        font-size: 0.9rem;
    }
}

/* Large Tablet/Small Laptop (1000px - 1100px) */
@media (max-width: 1100px) and (min-width: 1000px) {
    .hero-container {
        max-width: 900px;
        padding: 4rem 1.5rem;
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    .hero-content .subheadline {
        font-size: 1.05rem;
        max-width: 440px;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    .hero-buttons {
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    .hero-stats {
        gap: 1.2rem;
        margin-top: 2.5rem;
    }
    .hero-stats .stat-number {
        font-size: 1.8rem;
    }
    .hero-stats .stat-label {
        font-size: 0.85rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}