<style>
        /* General Styles */
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
            background-color: #f9f9f9;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0d6efd;
            margin-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #00d25b;
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* 1. Header Section - Hero Banner */
        .hero-section {
			
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            animation: fadeInDown 1s ease-out;
        }

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

        .btn-hero {
            padding: 15px 40px;
            background-color: #00d25b;
            color: white;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            animation: fadeInUp 1s ease-out 1s forwards;
            opacity: 0;
            border: none;
        }

        .btn-hero:hover {
            background-color: #0d6efd;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            color: white;
        }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            cursor: pointer;
        }

        .scroll-down i {
            color: white;
            font-size: 2rem;
        }

        /* 2. Introduction Section */
        .intro-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .intro-img {
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            width: 100%;
            transition: transform 0.5s ease;
        }

        .intro-img:hover {
            transform: scale(1.02);
        }

        .intro-text h3 {
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
        }

        .intro-features {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .intro-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .intro-features li i {
            color: #00d25b;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        /* 3. Why Choose Us Section */
        .why-choose-us {
            padding: 100px 0;
            background-color: #f4f6f9;
        }

        .feature-box {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

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

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(13, 110, 253, 0.1);
            color: #0d6efd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-icon {
            background: #0d6efd;
            color: white;
        }

        .feature-box h4 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* 4. Services Section */
        .services-section {
            padding: 100px 0;
            background: #fff;
        }

        .service-card {
            border: 1px solid #eee;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            background: #fff;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #0d6efd, #00d25b);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .service-card:hover {
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

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

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #00d25b;
        }

        .btn-service {
            margin-top: 20px;
            color: #0d6efd;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
        }

        .btn-service:hover {
            color: #00d25b;
            text-decoration: underline;
        }

        /* 5. Portfolio Section */
        .portfolio-section {
            padding: 100px 0;
            background: #f9f9f9;
        }

        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            cursor: pointer;
        }

        .portfolio-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 110, 253, 0.9);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        /* 6. Testimonials Section */
        .testimonial-section {
            padding: 100px 0;
            background: #fff;
        }

        .testimonial-card {
            text-align: center;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 15px;
            margin: 20px;
        }

        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 3px solid #00d25b;
        }

        .client-quote {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
        }

        .client-name {
            font-weight: 700;
            color: #333;
        }

        .client-role {
            font-size: 0.9rem;
            color: #777;
        }

        /* 7. Call to Action Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(45deg, #0d6efd, #00d25b);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-bg-anim {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1440,112L1440,320L1344,320C1248,320,1152,320,1056,320C960,320,864,320,768,320C672,320,576,320,480,320C384,320,288,320,192,320C96,320,48,320,0,320Z"></path></svg>');
            background-size: cover;
            animation: wave 10s linear infinite;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .btn-cta {
            padding: 18px 50px;
            background: white;
            color: #0d6efd;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 30px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            color: #00d25b;
        }

        /* Animations */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }

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

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

        @keyframes wave {
            0% { background-position-x: 0; }
            100% { background-position-x: 1000px; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2rem; }
            .section-title h2 { font-size: 2rem; }
            .hero-section { height: auto; min-height: 100vh; padding: 100px 0; }
        }
    </style>