

   
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: var(--light-green);
            color: var(--white);
        }

        /* Background Image */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


.text-gradient {
  background: linear-gradient(
    90deg,
    var(--light-green),
    
   
    #8fce72
  );
  -webkit-background-clip: text;
  
  font-weight: 900;
  -webkit-text-fill-color: transparent;
}

        /* ================================

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--transperancy);
            backdrop-filter: blur(8px);
            border-radius: 50px;
            padding: 8px 16px;
            font-size: 14px;
            color: var(--dark-blue);
            box-shadow: var(--light-shadow);
            margin-bottom: 2rem;
        }

        /* ================================

        .btn-hero {
            background-color: var(--light-green);
            color: var(--white);
            padding: 14px 28px;
            font-size: 16px;
            font-weight: 600;
            border-radius: var(--border-radius);
            border: none;
            box-shadow: var(--dark-shadow);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-hero:hover {
            background-color: #5b9644;
            transform: translateY(-2px);
        }

        .btn-outline-hero {
            background: transparent;
            color: var(--white);
            padding: 14px 28px;
            font-size: 16px;
            font-weight: 600;
            border-radius: var(--border-radius);
            border: 2px solid var(--white);
            transition: all 0.3s ease;
        }

        .btn-outline-hero:hover {
            background: var(--white);
            color: var(--dark-blue);
        }

        /* ================================
   TRUST INDICATORS
================================ */
        .hero-trust {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .hero-trust span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* ================================
   BOTTOM FADE
================================ */
        /* .hero-bottom-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 120px;
            background: linear-gradient(to top,
                    var(--light-bg),
                    transparent);
            z-index: 1;
        } */

        /* ================================
   ANIMATIONS
================================ */
        .animate-fade-in {
            animation: fadeIn 0.6s ease forwards;
        }

        .animate-slide-up {
            animation: slideUp 0.6s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.1s;
        }

        .delay-2 {
            animation-delay: 0.15s;
        }

        .delay-3 {
            animation-delay: 0.2s;
        }

        .delay-4 {
            animation-delay: 0.3s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ================================
   RESPONSIVE
================================ */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-text {
                font-size: 0.95rem;
            }
        }



        /* ================================
   FAQ SECTION
================================ */
        .faq-section {
            background-color: var(--light-bg);
        }

        /* Badge */
        .faq-badge {
            display: inline-block;
            color: var(--light-green);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .faq-subtitle {
            font-size: 1.1rem;
            color: #555;
        }



        /* ================================
   ACCORDION CUSTOM STYLE
================================ */
        .accordion-custom .accordion-item {
            background-color: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            border: 1px solid #e5e5e5;
            box-shadow: var(--light-shadow);
            overflow: hidden;
        }

        .accordion-custom .accordion-button {
            font-family: var(--main-font);
            font-weight: 600;
            color: var(--dark-blue);
            padding: 1.5rem;
            background-color: var(--white);
        }

        .accordion-custom .accordion-button:not(.collapsed) {
            background-color: #f1f5ff;
            color: var(--dark-blue);
            box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
        }

        .accordion-custom .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .accordion-custom .accordion-body {
            font-family: var(--para-font);
            color: #555;
            line-height: 1.7;
            padding: 0 1.5rem 1.5rem;
        }

        /* Remove Bootstrap default arrow background */
        .accordion-button::after {
            background-size: 1.2rem;
        }

        /* ================================
   RESPONSIVE
================================ */
        @media (max-width: 768px) {
            .faq-title {
                font-size: 2rem;
            }
        }


        /* ================================
   TECHNICAL SECTION
================================ */
        .technical-section {
            background: var(--light-bg);
        }

        /* Badge */
        .tech-badge {
            display: inline-block;
            color: var(--light-green);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        /* Titles */
        .tech-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-blue);
        }

        /* Feature Cards */
        .tech-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2rem 1.5rem;
            box-shadow: var(--light-shadow);
            height: 100%;
            transition: all 0.3s ease;
        }

        .tech-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--dark-shadow);
        }

        .tech-icon {
            width: 52px;
            height: 52px;
            background: var(--light-green);
            color: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
        }

        .tech-card h5 {
            color: var(--dark-blue);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .tech-card p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
        }

        /* ================================
   PROCESS STEPS
================================ */
        .process-box {
            background: var(--white);
            border-radius: 16px;
            padding: 3rem 2rem;
            box-shadow: var(--light-shadow);
        }



        .process-subtitle {
            color: #555;
            max-width: 600px;
            margin: auto;
        }

        .step-item {
            text-align: center;
        }

        .step-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--light-green);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            margin: 0 auto 1rem;
        }

        .step-item h6 {
            font-weight: 600;
            color: var(--dark-blue);
        }

        .step-item p {
            font-size: 0.9rem;
            color: #555;
        }

        /* ================================
   EXPERIENCE
================================ */
        .experience-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(106, 168, 79, 0.1);
            color: var(--light-green);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }



        .experience-text {
            max-width: 900px;
            margin: auto;
            color: #555;
            font-size: 1.05rem;
        }

        /* ================================
   RESPONSIVE
================================ */
        @media (max-width: 768px) {
            .tech-title {
                font-size: 2rem;
            }

            .process-box {
                padding: 2rem 1.5rem;
            }
        }

        /* ================================
   HOW WE DELIVER – TIMELINE LINE
================================ */

        /* Horizontal line (Desktop only) */
        .process-steps::before {
            content: "";
            position: absolute;
            top: 0px;
            /* Circle ke center ke paas */
            left: 5%;
            width: 90%;
            height: 2px;
            background-color: #dcdcdc;
            z-index: 0;
        }

        /* Ensure circles stay above line */
        .step-item {
            position: relative;
            z-index: 1;
        }

        /* Hide line on mobile & tablet */
        @media (max-width: 991px) {
            .process-steps::before {
                display: none;
            }
        }

        .process-steps::before {
            content: "";
            position: absolute;
            top: 50px;
            left: 5%;
            width: 90%;
            height: 2px;
            background: linear-gradient(to right,
                    transparent,
                    var(--light-green),
                    transparent);
            z-index: 0;
        }



        /* ================================
   PROCESS SECTION
================================ */
        .process-section {
            background-color: var(--light-bg);
        }

        /* Badge */
        .process-badge {
            display: inline-block;
            color: var(--light-green);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }


        .step-wrapper {
            position: relative;
            height: 100%;
        }

        /* Connector line */
        .process-steps::before {
            content: "";
            position: absolute;
            top: 56px;
            left: 10%;
            width: 80%;
            height: 2px;
            background: linear-gradient(to right,
                    transparent,
                    var(--light-green),
                    transparent);
            z-index: 0;
        }

        .step-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            box-shadow: var(--light-shadow);
            position: relative;
            z-index: 1;
            height: 100%;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--dark-shadow);
        }

        /* Icon */
        .step-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg,
                    var(--light-green),
                    #8fce72);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        /* Labels */
        .step-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--light-green);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .step-card h5 {
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 0.75rem;
        }

        .step-card p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
        }

        /* ================================
   RESPONSIVE
================================ */
        @media (max-width: 991px) {
            .process-steps::before {
                display: none;
            }

            .process-title {
                font-size: 2rem;
            }
        }


        /* ================================
   LEAD FORM SECTION
================================ */
        .lead-section {
            background: linear-gradient(135deg, var(--dark-blue), #0e2a5c);
        }

        /* FORM CARD */
        .lead-form-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--dark-shadow);
        }

        .lead-form-card h2 {
            font-weight: 700;
            color: var(--dark-blue);
        }

        .form-subtext {
            color: #666;
            margin-bottom: 1.5rem;
        }

        /* INPUTS */
        .form-control {
            height: 48px;
            border-radius: 8px;
            border: 1px solid #ddd;
        }

        textarea.form-control {
            height: auto;
        }

        /* BUTTON */
        .btn-submit {
            background: linear-gradient(135deg, var(--light-green), #8fce72);
            color: var(--white);
            padding: 14px;
            font-weight: 600;
            border-radius: 10px;
            border: none;
        }

        .btn-submit:hover {
            opacity: 0.9;
        }

        /* NOTE */
        .form-note {
            text-align: center;
            font-size: 0.85rem;
            color: #777;
        }

        /* CONTACT CARDS */
        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .contact-card a {
            color: #fff;
            text-decoration: none;
        }

        .contact-card a:hover {
            color: var(--light-green);
        }

        /* EXPECT CARD */
        .expect-card {
            background: rgba(255, 255, 255, 0.08);
            padding: 1.5rem;
            border-radius: 14px;
        }

        .expect-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .expect-card li {
            margin-bottom: 0.5rem;
            color: #eee;
        }



        /* ================================
   SOLUTIONS SECTION
================================ */

        .section-badge {
            display: inline-block;
            color: var(--light-green);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .section-title {
            font-weight: 800;
            color: var(--dark-blue);
        }

        .section-subtitle {
            color: #666;
        }

        /* SOLUTION CARD */
        .solution-card-two {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--light-shadow);
            transition: transform 0.3s;
        }

        .solution-card-two:hover {
            transform: translateY(-4px);
        }

        .solution-img img {
            width: 100%;
            height: 230px;
            object-fit: cover;
        }

        /* FEATURE ICON */
        .feature-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--light-green), #9bd27c);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
        }

        /* RESULTS */
        .results-box {
            background: linear-gradient(135deg, var(--dark-blue), #0e2a5c);
            padding: 3rem 2rem;
            border-radius: 24px;
        }

        .result-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            height: 100%;
            padding: 1.5rem;
            color: #fff;
        }

        .result-card h4 {
            font-size: 2rem;
            font-weight: 700;
        }

        .result-card p {
            font-size: 0.85rem;
            color: #ddd;
        }

        /* RESULT ICON */
        .result-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .result-icon.green-two {
            background: rgba(106, 168, 79, 0.2);
        }

        .result-icon.blue-two {
            background: rgba(28, 69, 135, 0.6);
        }

        .result-icon.amber {
            background: rgba(255, 193, 7, 0.25);
        }

        .result-icon.orange {
            background: rgba(255, 140, 0, 0.25);
        }
        
        
        
        
        
        .problem-card {
            background: white;
            border-radius: 16px;
            padding: 35px 30px;
            box-shadow: 0 4px 20px rgba(28, 69, 135, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #6AA84F 0%, #8bc972 100%);
            border-radius: 16px 16px 0 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
     .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 25px;
        }
        .problem-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(106, 168, 79, 0.2);
            border-color: #6AA84F;
        }

        .problem-card:hover::before {
            opacity: 1;
        }

        .icon-wrapper {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #6AA84F 0%, #8bc972 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 6px 18px rgba(106, 168, 79, 0.25);
            transition: transform 0.3s ease;
        }

        .problem-card:hover .icon-wrapper {
            transform: scale(1.1);
        }

        .icon-wrapper i {
            font-size: 30px;
            color: white;
        }

        .problem-content h3 {
            color: #1C4587;
            font-size: 1.05em;
            line-height: 1.7;
            font-weight: 600;
            margin: 0;
        }

        .problem-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 32px;
            height: 32px;
            background: rgba(106, 168, 79, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #6AA84F;
            font-size: 0.85em;
        }

        @media (max-width: 768px) {
            body {
                padding: 40px 15px;
            }

            .header h1 {
                font-size: 2em;
            }

            .header p {
                font-size: 1em;
            }
            
            .section{
                padding: 60px 0px !important;
            }

            .problems-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .problem-card {
                padding: 30px 25px;
            }
        }
        
        .title-section{
    color: var(--dark-blue);
    text-align: center;
}



.projects-section {
  background: var(--light-bg);
}

/* Card */
.project-card-v3 {
  background: var(--white);
  border-radius: 18px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05); /* very light */
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-card-v3:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--light-green);
}

/* Icon */
.project-icon-v3 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef3ff;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.project-card-v3:hover .project-icon-v3 {
  background: var(--light-green);
  color: var(--white);
}

/* Text */
.project-card-v3 h6 {
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark-blue);
  margin: 0;
}


    