
        section {
            padding: 80px 0;
        }

       

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 28, 79, 0.85), rgba(7, 33, 124, 0.85)), url('https://i.ibb.co/qFpCnDmg/Untitled-design-2.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .hero-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .typing-text {
            color: var(--orange);
            font-weight: 800;
            border-right: 3px solid var(--orange);
            animation: blink 1s infinite;
            display: inline-block;
        }

        @keyframes blink {
            0%, 100% { border-color: var(--orange); }
            50% { border-color: transparent; }
        }

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

        /* Service Overview Section */
        .service-overview {
            background-color: var(--section-bg);
        }

        .overview-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .overview-content p {
            font-size: 1.2rem;
            color: var(--text-color);
        }

        /* What's Included Carousel */
        .carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 50px auto 0;
            overflow: hidden;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            min-width: 33.333%;
            margin: 0 10px;
            opacity: 0.7;
            transform: scale(0.9);
        }

        .carousel-card.active {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .carousel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .carousel-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--blue);
            transition: var(--transition);
        }

        .carousel-card:hover .carousel-icon {
            background-color: var(--orange);
            color: var(--dark-blue);
        }

        .carousel-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--light-blue);
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot.active {
            background: var(--orange);
            transform: scale(1.2);
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--card-bg);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: var(--blue);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            z-index: 10;
        }

        .carousel-arrow:hover {
            background: var(--blue);
            color: var(--white);
        }

        .carousel-arrow.prev {
            left: 10px;
        }

        .carousel-arrow.next {
            right: 10px;
        }

       /* CTA */
        .cta-section {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            margin-top: 50px;
        }
        .cta-section h1,
        .cta-section h2,
        .cta-section h3
        { color: #001c4f;
        }

        .cta-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--blue);
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-info {
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .contact-info h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--blue);
        }

        .contact-info p {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1.1rem;
            margin-bottom: 0;
        }
        .final-cta h1
        .final-cta h3,
        .final-cta h2,
        .final-cta a {
        color: #ffffff !important;
     }

        /* Process Section */
        .process {
            background-color: var(--section-bg);
        }

        .process-steps {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .process-step {
            display: flex;
            margin-bottom: 40px;
            position: relative;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .process-step.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
            margin-right: 25px;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .step-content {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow);
            flex: 1;
            transition: var(--transition);
        }

        .step-content:hover {
            transform: translateX(10px);
        }

        .step-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--blue);
        }

        /* Add-On Services Section */
        .addon-services {
            background-color: var(--section-bg);
        }

        .addon-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }

        .addon-tag {
            background: var(--card-bg);
            border-radius: 50px;
            padding: 12px 25px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            font-weight: 500;
            color: var(--blue);
        }

        .addon-tag:hover {
            background: var(--blue);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Final CTA Section */
        .final-cta {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            color: var(--white);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .final-cta::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 1200 800" opacity="0.05"><path d="M0,0V800H1200V0ZM200,400C200,533,333,600,400,600S600,533,600,400,467,200,400,200,200,267,200,400Z" fill="white"/></svg>');
            background-size: cover;
        }

        .final-cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .final-cta-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .final-cta .shape {
            opacity: 0.1;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }

            .carousel-card {
                min-width: 50%;
            }

            .cta-container {
                flex-direction: column;
            }

            .cta {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                gap: 0;
                flex-direction: column;
                background-color: var(--card-bg);
                width: 100%;
                text-align: center;
                transition: var(--transition);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .hero {
                padding: 150px 0 100px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .final-cta-btns {
                flex-direction: column;
                align-items: center;
            }

            .carousel-card {
                min-width: 100%;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .process-step {
                flex-direction: column;
            }

            .step-number {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .cta-buttons {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            section {
                padding: 60px 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .logo img {
                height: 50px;
            }
        }
