

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 28, 79, 0.85), rgba(7, 33, 124, 0.85)), url('https://i.ibb.co/Tq4PD4TZ/Your-paragraph-text-1.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;
            position: relative;
            z-index: 1;
            margin: 0 auto;
        }

        .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;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
            justify-content: center;
        }

        .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);
        }

        /* Features Carousel */
        .features-carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 50px auto 0;
            overflow: hidden;
        }

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

        .feature-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 20px;
            min-width: 100%;
        }

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

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--blue);
            transition: var(--transition);
            flex-shrink: 0;
        }

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

        .feature-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .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;
        }

        /* 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: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .process-step.visible {
            opacity: 1;
            transform: translateY(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);
        }

        /* CTA Sidebar */
        .cta-sidebar {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            margin-top: 50px;
        }

        .cta-sidebar 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;
        }

        /* 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: 600;
            color: var(--blue);
            border: 1px solid transparent;
        }

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

        /*  CTA Section */
        .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;
        }

        .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;
        }

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

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

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

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

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--orange);
            animation: float 6s ease-in-out infinite;
            opacity: 0.1;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            top: 30%;
            left: 70%;
            animation-delay: 4s;
        }

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

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

        @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;
                text-align: center;
            }

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

            .hero-btns {
                justify-content: center;
            }

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

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

            .feature-card {
                flex-direction: column;
                text-align: center;
            }

            .feature-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }

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

        @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;
            }

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

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

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