 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #10b981;
            --secondary: #059669;
            --accent: #f59e0b;
            --dark: #1f2937;
            --light: #f0fdf4;
        }

        body {
            font-family: "IBM Plex Serif", serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        html{
            scroll-behavior: smooth;
        }
   

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .nav-container {
            max-width: 1400px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

      .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 220px;
    height: 120px;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-menu a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

     .cta-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

   .cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
            padding: 120px 40px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent);
            border-radius: 50%;
            animation: pulse 4s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(16, 185, 129, 0.1);
            color: var(--primary);
            border-radius: 50px;
            margin-bottom: 25px;
            font-weight: 600;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: var(--dark);
            margin-bottom: 25px;
            line-height: 1.2;
            animation: slideInLeft 1s 0.2s ease-out backwards;
        }

        .hero h1 span {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.3rem;
            color: #6b7280;
            margin-bottom: 40px;
            line-height: 1.8;
            animation: slideInLeft 1s 0.4s ease-out backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInLeft 1s 0.6s ease-out backwards;
        }

        .btn-primary {
            padding: 18px 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
        }

        .btn-secondary {
            padding: 18px 40px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: #fff;
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

      
        

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .card-text h4 {
            color: var(--dark);
            margin-bottom: 5px;
        }

        .card-text p {
            color: #6b7280;
            font-size: 0.9rem;
        }
         
/*      ABOUT SECTION     */


.about-section {
    padding: 100px 7%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background:rgba(16, 185, 129, 0.2);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    animation: fadeInScale 1.2s ease;
}

.about-image img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}



.about-content {
    animation: slideUp 1s ease forwards;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0 20px;
    color: #333;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
    margin-bottom: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-icon {
    font-size: 26px;
}

.about-btn {
    margin-top: 10px;
    padding: 14px 30px;
    font-size: 18px;
}

/* ---------------------- */
/*     ANIMATIONS         */
/* ---------------------- */

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight {
        justify-content: center;
    }

    .about-image img {
        width: 90%;
        margin: auto;
        display: block;
    }


}

        /* Services Section */
        .services-section {
            margin-top: -40px;
            padding: 100px 40px;
            background: var(--light);
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 10px;
        }

        .service-card {
            background: #fff;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
        }

        .service-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: #fff;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .service-content {
            padding: 35px;
        }

        .service-title {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .service-desc {
            color: #6b7280;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-features li {
            padding: 8px 0;
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 900;
            font-size: 1.2rem;
        } 
         
            
/* Features Section */
.features-section {
    margin-top: 10px;
    padding: 100px 40px;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 50px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.8;
}

.features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    height: 800px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Feature Card New Style */
.feature-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Image top area */
.feature-img {
    width: 100%;
    height: 230px;
    background-size: cover;
    background-position: center;
}

/* Card content below image */
.feature-content {
    padding: 25px 30px;
    text-align: center;
}

.feature-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-desc {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}
/* ===========================
   RESPONSIVE FEATURES SECTION
   =========================== */

/* Tablets - 1024px ↓ */
@media (max-width: 1024px) {
    .features-section {
        padding: 80px 30px;
    }

    .features-grid {
        height: auto;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }

    .feature-img {
        height: 210px;
    }

    .feature-title {
        font-size: 1.4rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }
}

/* Mobile Large - 768px ↓ */
@media (max-width: 768px) {
    .features-section {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-img {
        height: 190px;
    }

    .feature-card {
        border-radius: 16px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }
}

/* Mobile Portrait - 600px ↓ */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 25px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .feature-img {
        height: 180px;
    }

    .feature-content {
        padding: 18px 20px;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Extra Small Devices - 420px ↓ */
@media (max-width: 420px) {
    .features-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-img {
        height: 160px;
    }

    .feature-title {
        font-size: 1.15rem;
    }

    .feature-desc {
        font-size: 0.8rem;
    }
}


     

        /* Process Section */
        .process-section {
            padding: 100px 40px;
            margin-top: -60px;
            background: #fff;
            position: relative;
            overflow: hidden;
        }

        .process-timeline {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            transform: translateX(-50%);
        }

        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process-content {
            flex: 1;
            padding: 40px;
            background: var(--light);
            border-radius: 20px;
            margin: 0 40px;
            transition: all 0.4s;
        }

        .process-step:nth-child(even) .process-content {
            text-align: right;
        }

        .process-content:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
        }

        .process-number-wrapper {
            position: relative;
            z-index: 2;
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }

        .process-title {
            font-size: 1.8rem;
            text-align: center;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .process-desc {
            color: #6b7280;
            text-align: left;
            line-height: 1.8;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
        }

        .testimonials-slider {
            max-width: 1200px;
            margin: 60px auto 0;
            position: relative;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 50px;
            text-align: center;
        }

        .testimonial-avatar {
            width: 100px;
            height: 100px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .stars {
            font-size: 1.8rem;
            color: #fbbf24;
            margin-bottom: 25px;
        }

        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .testimonial-role {
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 40px;
            background: var(--light);
            text-align: center;
        }

        .cta-container {
            max-width: 1000px;
            margin: 0 auto;
            background: #fff;
            border-radius: 30px;
            padding: 80px 60px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            color: var(--dark);
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.3rem;
            color: #6b7280;
            margin-bottom: 40px;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: #9ca3af;
            padding: 80px 40px 30px;
        }

        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            color: #fff;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }

        .footer-section p {
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
            }

            .hero-image {
                order: -1;
            }


            .process-step,
            .process-step:nth-child(even) {
                flex-direction: column !important;
            }

            .process-content {
                text-align: center !important;
            }

            .timeline-line {
                display: none;
            }
        }