   /* Base Styles (Same as Main Page) */
        :root {
            --primary: #4a6bff;
            --primary-dark: #3a56d4;
            --secondary: #ff6b4a;
            --dark: #2d3748;
            --light: #f7fafc;
            --gray: #e2e8f0;
            --success: #48bb78;
            --warning: #ed8936;
            --danger: #f56565;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        /* Header Styles (Same as Main Page) */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        .top-bar {
            background-color: var(--dark);
            color: white;
            padding: 0.5rem 5%;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .top-links a {
            color: white;
            text-decoration: none;
            margin-left: 1rem;
            transition: color 0.3s;
            white-space: nowrap;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .nav-links li {
            margin-left: 1.5rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .nav-links a.active {
            color: var(--primary);
        }
        
        .cta-button {
            background-color: var(--primary);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* About Us Hero Section (Enhanced) */
        .about-hero {
            padding: 10rem 5% 4rem;
            background: linear-gradient(135deg, #f6f9ff 0%, #e9f0ff 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--dark);
            position: relative;
            z-index: 2;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #4a5568;
            position: relative;
            z-index: 2;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }
        
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .breadcrumb span {
            margin: 0 0.5rem;
            color: #718096;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg3NCwgMTA3LCAyNTUsIDAuMDUpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
            opacity: 0.8;
            z-index: 1;
        }
        
        /* Global Network Section */
        .global-network {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .network-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: center;
        }
        
        .network-map {
            position: relative;
            height: 400px;
            background-image: url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1476&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .network-dots {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .network-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: var(--secondary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
            70% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
            100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
        }
        
        .network-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .network-content h2 span {
            color: var(--primary);
        }
        
        .network-content p {
            margin-bottom: 1.5rem;
            color: #4a5568;
        }
        
        .network-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background-color: #f8fafc;
            border-radius: 10px;
            border-left: 3px solid var(--primary);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: #718096;
            font-size: 0.9rem;
        }
        
        /* Domains Section */
        .domains-section {
            padding: 5rem 5%;
            background-color: #f8fafc;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .section-header p {
            color: #718096;
        }
        
        .domains-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .domain-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .domain-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .domain-image {
            height: 180px;
            overflow: hidden;
        }
        
        .domain-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .domain-card:hover .domain-image img {
            transform: scale(1.1);
        }
        
        .domain-info {
            padding: 1.5rem;
        }
        
        .domain-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .domain-info h3 i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .domain-info p {
            color: #718096;
            font-size: 0.9rem;
        }
        
        /* Virtual Assistance Section */
        .virtual-assistance {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .assistance-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: center;
        }
        
        .assistance-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .assistance-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .assistance-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .assistance-content h2 span {
            color: var(--primary);
        }
        
        .assistance-features {
            margin-top: 2rem;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
            background-color: #f8fafc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .feature-text p {
            color: #718096;
            font-size: 0.9rem;
        }
        
        /* Clients Section */
        .clients-section {
            padding: 5rem 5%;
            background-color: #f8fafc;
        }
        
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .client-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            padding: 1rem;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .client-logo img {
            max-width: 100%;
            max-height: 100%;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        
        .client-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        /* Exam Service Section */
        .exam-service {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .service-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: center;
        }
        
        .service-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .service-content h2 span {
            color: var(--primary);
        }
        
        .service-content p {
            margin-bottom: 1.5rem;
            color: #4a5568;
        }
        
        .service-features {
            margin-top: 2rem;
        }
        
        .service-features li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }
        
        .service-features li i {
            color: var(--success);
            margin-right: 10px;
            margin-top: 3px;
        }
        
        .service-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
         /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 5% 2rem;
            position: relative;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-column h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 8px;
            font-size: 0.8rem;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        
        .social-links a:hover {
            transform: translateY(-3px);
        }
        
        .footer-newsletter input {
            width: 100%;
            padding: 0.8rem;
            border-radius: 5px;
            border: none;
            margin-bottom: 1rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 2rem;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        /* Responsive Styles */
        @media (max-width: 992px) {
            .network-container,
            .assistance-container,
            .service-container {
                grid-template-columns: 1fr;
            }
            
            .network-map {
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero {
                padding-top: 12rem;
            }
            
            .about-hero h1 {
                font-size: 2.2rem;
            }
            
            .stat-item {
                padding: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .about-hero {
                padding-top: 14rem;
            }
            
            .about-hero h1 {
                font-size: 1.8rem;
            }
            
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

         /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background-color: white;
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.9rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            white-space: nowrap;
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }
        




















        







        
/*----------------------about css--------------------------/*
  /* Service Features Section */
        .service-features {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background-color: #f8fafc;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid var(--primary);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left-color: var(--secondary);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .feature-card p {
            color: #4a5568;
            margin-bottom: 1.5rem;
        }
        
        .feature-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }
        
        .feature-link:hover {
            color: var(--secondary);
        }
        
        .feature-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .feature-link:hover i {
            transform: translateX(5px);
        }
        
        /* Service Categories Section */
        .service-categories {
            padding: 5rem 5%;
            background-color: #f8fafc;
        }
        
        .categories-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            justify-content: center;
        }
        
        .category-tab {
            padding: 0.8rem 1.5rem;
            background-color: white;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .category-tab.active {
            background-color: var(--primary);
            color: white;
        }
        
        .category-content {
            display: none;
        }
        
        .category-content.active {
            display: block;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--dark);
            display: flex;
            align-items: center;
        }
        
        .service-card h3 i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .service-card p {
            color: #4a5568;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .service-price {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .service-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #718096;
        }
        
        /* How It Works Section */
        .how-it-works {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .steps-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .step-line {
            position: absolute;
            height: 100%;
            width: 2px;
            background-color: var(--gray);
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }
        
        .steps {
            position: relative;
            z-index: 2;
        }
        
        .step {
            display: flex;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .step:nth-child(even) {
            flex-direction: row-reverse;
            text-align: right;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            flex-shrink: 0;
            margin: 0 2rem;
            position: relative;
        }
        
        .step-content {
            flex: 1;
            background-color: #f8fafc;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .step-content h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .step-content p {
            color: #4a5568;
            margin-bottom: 1rem;
        }
        
        /* Pricing Section */
        .pricing-section {
            padding: 5rem 5%;
            background-color: #f8fafc;
        }
        
        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pricing-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            background-color: white;
            padding: 0.5rem;
            border-radius: 50px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .pricing-tab {
            padding: 0.8rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark);
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .pricing-tab.active {
            background-color: var(--primary);
            color: white;
        }
        
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .pricing-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
        }
        
        .popular-badge {
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: var(--secondary);
            color: white;
            padding: 0.3rem 3rem;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .pricing-price span {
            font-size: 1rem;
            color: #718096;
            font-weight: 400;
        }
        
        .pricing-features {
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--gray);
            color: #4a5568;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonials-slider {
            position: relative;
            overflow: hidden;
        }
        
        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            min-width: 100%;
            padding: 0 1rem;
            box-sizing: border-box;
        }
        
        .testimonial-content {
            background-color: #f8fafc;
            padding: 2rem;
            border-radius: 10px;
            position: relative;
            margin-bottom: 2rem;
        }
        
        .testimonial-content:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50px;
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 15px solid #f8fafc;
        }
        
        .testimonial-rating {
            color: var(--warning);
            margin-bottom: 1rem;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #4a5568;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
            color: var(--dark);
        }
        
        .author-info p {
            font-size: 0.9rem;
            color: #718096;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--gray);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .testimonial-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 5rem 5%;
            background-color: #f8fafc;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 10px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #4a5568;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 5%;
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }
        
        .cta-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.5;
            z-index: 1;
        }
        
        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background-color: white;
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.9rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            white-space: nowrap;
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background-color: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 999;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .step-line {
                left: 25px;
            }
            
            .step {
                flex-direction: row !important;
                text-align: left !important;
                padding-left: 60px;
            }
            
            .step-number {
                position: absolute;
                left: 0;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
                padding: 0.5rem;
            }
            
            .top-links a {
                margin: 0 0.5rem;
            }
            
            .navbar {
                flex-direction: column;
                padding: 1rem;
            }
            
            .nav-links {
                margin-top: 1rem;
                width: 100%;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links li {
                margin: 0.5rem;
            }
            
            .search-box {
                margin: 1rem auto 0;
                width: 100%;
            }
            
            .search-box input {
                width: 100%;
            }
            
            .hero {
                padding-top: 12rem;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding-top: 14rem;
            }
            
            .hero h2 {
                font-size: 1.6rem;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-tooltip {
                display: none;
            }
        }