  /* Reset & base */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --primary: #4f46e5;
    --success: #41bc0d; /* Green Color */
    --primary-dark: #4338ca;
    --secondary: #10b981;
    --accent: #f97316;
    --light: #f8fafc;
    --dark: #1e293b;
    --text: #334155;
    --gray: #94a3b8;
    --primary: #6c63ff;
    --secondary: #4ecdc4;
    --accent: #ff6b6b;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-reverse: linear-gradient(135deg, var(--secondary), var(--primary));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #eaedf2 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  
  .section {
    padding: 5rem 0;
  }

  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    
    position: relative;
    display: inline-block;
  }

  .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    /* background: linear-gradient(to right, var(--primary), var(--secondary)); */
       background-color: #198754;

    border-radius: 2px;
  }

  .section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }

  .btn {
    display: inline-block;
    /* padding: 0.8rem 2rem; */
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
  }

  .btn-primary {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
    text-decoration: none;
  }

  .btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
  }

  .btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    text-decoration: none;
  }
  
  
  /*frontend dropdown color */
  /* Dashboard success hover effect */
a.dropdown-item {
    color: #333; /* normal text color */
    transition: background-color 0.3s ease, color 0.3s ease;
}

a.dropdown-item:hover {
    background-color: #28a745; /* success green */
    color: #fff; /* white text on hover */
}


  /* Header */
  header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--dark);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding-left: 2rem;
    padding-right: 2rem;
}

  

  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 70px;
    padding-right: 60px;
  }

  header .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }

  nav ul li {
    font-weight: 600;
  }

  nav ul li a {
    color: var(--dark);
    padding: 0.5rem 0;
    position: relative;
  }

  nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--success);
    transition: width 0.3s ease;
  }

  nav ul li a:hover:after {
    width: 100%;
  }

  nav ul li a:hover {
    color: var(--primary);
    text-decoration: none;
  }

  .header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .header-actions .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }

 
  
  .hero {
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 800 800"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="%236c63ff" stop-opacity="0.05"/><stop offset="1" stop-color="%234ecdc4" stop-opacity="0"/></radialGradient></defs><rect fill="url(%23a)" width="800" height="800"/></svg>') no-repeat center center;
    background-size: cover;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: var(--gradient-reverse);
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-left: 50px; 
    padding-right: 40px;
}

  
  .hero-text {
    max-width: 600px;
  }

  .hero h1 {
    font-size: 3.5rem;
    /*color:#41bc0d;*/
        color:#000000;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 1.0rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
  }

  .btn:hover::before {
    transform: translateX(0);
  }

  .btn-primary {
    background: var(--gradient);
    color: white;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
  }

  .btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
  }

  .hero-image:hover img {
    transform: perspective(1000px) rotateY(0);
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
  }

  .stat {
    display: flex;
    flex-direction: column;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--success);
    line-height: 1;
    margin-bottom: 10px;
  }

  .stat-label {
    font-size: 1rem;
    color: #7f8c8d;
  }

  /* Decorative elements */
  .floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    z-index: -1;
  }

  .element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
  }

  .element-2 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    right: 10%;
    animation: float 8s ease-in-out infinite 1s;
  }

  .element-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 20%;
    animation: float 7s ease-in-out infinite 0.5s;
  }

  @keyframes float {
    0% {
      transform: translateY(0) rotate(0deg);
    }

    50% {
      transform: translateY(-20px) rotate(10deg);
    }

    100% {
      transform: translateY(0) rotate(0deg);
    }
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }

    .hero h1 {
      font-size: 2.8rem;
    }

    .hero-buttons {
      justify-content: center;
    }

    .hero-stats {
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }

    .hero p {
      font-size: 1.1rem;
    }

    .btn {
      padding: 14px 28px;
      font-size: 1rem;
    }

    .stat-number {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.8rem;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }

    .btn {
      width: 220px;
    }

    .hero-stats {
      gap: 20px;
    }
  }


  /* Responsive */
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 2.8rem;
    }

    nav ul {
      gap: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    header .container {
      flex-direction: column;
      gap: 1rem;
    }

    nav ul {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .header-actions {
      margin-top: 1rem;
    }

    .hero {
      padding: 8rem 0 4rem;
    }

    .hero h1 {
      font-size: 2.3rem;
    }

    .hero p {
      font-size: 1.1rem;
    }

    .hero-buttons,
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }

    .pricing-card.featured {
      transform: scale(1);
    }

    .pricing-card.featured:hover {
      transform: translateY(-10px);
    }
  }    
 /* Media Queries for Responsiveness */

        /* Extra Small Devices (phones, <576px) */
        @media (max-width: 575.98px) {
            .hero {
                padding: 50px 0;
            }

            .floating-element {
                display: none; 
            }

            .hero-content {
                flex-direction: column;
                gap: 30px;
            }

            .hero-text {
                max-width: 100%;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 1.5rem;
            }

         .hero-text p {
            font-size:1rem !important;
            text-align: center !important;
            color: #555 !important;
                }


            .hero-buttons {
                flex-direction: row;
                gap: 10px;
                align-items: center;
            }

            .btn {
                width: 80%;
                text-align: center;
            }

        .hero-stats {
            display: flex !important;
            flex-direction: row !important;
            justify-content: center !important; 
           
            gap: 20px !important;               
            flex-wrap: nowrap !important;      
            margin-top: 2rem !important;
}
         .stat-label {
            font-size: 0.9rem;
            color: #7f8c8d;
          }

            .stat-number {
                font-size: 1.2rem;
            }

            .hero-image {
                max-width: 100%;
            }

            .modal-dialog {
                margin: 10px;
            }

            .modal-body video {
                height: auto;
            }
        }

        /* Small Devices (tablets, ≥576px) */
        @media (min-width: 576px) and (max-width: 767.98px) {
            .hero-content {
                flex-direction: column;
                gap: 40px;
            }

            .hero-text {
                max-width: 100%;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image {
                max-width: 100%;
            }
        }

        /* Medium Devices (desktops, ≥768px) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .hero-text h1 {
                font-size: 2.8rem;
            }

            .hero-text p {
                font-size: 1.15rem;
            }

            .hero-stats {
                gap: 30px;
            }
        }

        /* Large Devices (large desktops, ≥992px) */
        @media (min-width: 992px) and (max-width: 1199.98px) {
            /* Mostly uses base styles, minor adjustments if needed */
            .hero-text h1 {
                font-size: 2.9rem;
            }
        }

        /* Extra Large Devices (larger desktops, ≥1200px) */
        @media (min-width: 1200px) {
            /* Uses base styles */
        }

        /* Extra Extra Large Devices (≥1400px) */
        @media (min-width: 1400px) {
            .container {
                max-width: 1400px;
            }
        }



  /* section features */

  /* Section Title */
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title h2 {
    font-size: 3.2rem;
    font-weight: 700;
 background-color: #4fbd21;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: 1.2px;
  }

  .section-title p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
  }

  /* Features Grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 cards per row */
    gap: 40px;
  }

  /* Feature Card */
  .feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px 50px;
    box-shadow: 0 15px 30px rgb(255, 255, 255);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 200%;
    height: 200%;
    background-color: #198754;
    /* background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); */
    border-radius: 50%;
    opacity: 0.1;
    transition: opacity 0.4s ease;
    z-index: 0;
  }

  .feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(77, 197, 29, 0.597);
  }

  .feature-card:hover::before {
    opacity: 0.15;
  }

  /* Icon  */
  .feature-icon {
    /* background: linear-gradient(135deg, #6a11cb, #2575fc); */
    background-color:#6FD943;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(101, 41, 255, 0.3);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
  }


  .feature-card:hover .feature-icon {
    background-color:  #4fac28;
    /* background: linear-gradient(135deg, #2575fc, #6a11cb); */
      box-shadow: 0 12px 30px rgb(21, 167, 21);

  }

  .feature-icon i {
    color: #ffffff;
    font-size: 40px;
    transition: transform 0.4s ease;
  }

  .feature-card:hover .feature-icon i {
    transform: scale(1.15);
  }

  /* Feature Title */
  .feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2D815A;
    z-index: 1;
  }

  /* Feature Description */
  .feature-desc {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.5;
    max-width: 280px;
    z-index: 1;
  }

  /* Responsive Media Queries */

  /* Large tablets / smaller desktops */
  @media (max-width: 1200px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      /* 2 cards per row */
    }
  }

  /* Tablets / landscape phones */
  @media (max-width: 992px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .section-title h2 {
      font-size: 2.8rem;
    }

    .section-title p {
      font-size: 1.15rem;
    }
  }

  /* Small tablets / large phones */
  @media (max-width: 768px) {
    body {
      padding: 10px 10px;
    }

    .features-grid {
      grid-template-columns: 1fr;
      /* 1 card per row */
      gap: 25px;
    }

    .section-title h2 {
      font-size: 2.4rem;
    }

    .section-title p {
      font-size: 1.1rem;
    }

    .feature-desc {
      max-width: 100%;
    }
  }

  /* Mobile phones */
  @media (max-width: 480px) {
    .section-title h2 {
      font-size: 2rem;
    }

    .feature-icon {
      width: 75px;
      height: 75px;
      margin-bottom: 25px;
    }

    .feature-icon i {
      font-size: 32px;
    }

    .feature-title {
      font-size: 1.4rem;
    }
  }

  

  /* Testimonials */
  .testimonials {
    background: var(--light);
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
  }

  .testimonial-card:before {
    content: '"';
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
  }

  .testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
    z-index: 2;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
  }

  .author-info h4 {
    color: var(--dark);
    margin-bottom: 0.2rem;
  }

  .author-info p {
    color:#4fac28;
    font-size: 0.9rem;
    font-weight: 500;
  }

  /* Pricing */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .pricing-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

 .pricing-card.featured {
    border: 2px solid #4fac28;
    transform: scale(1.05);
}


  .pricing-card.featured:before {
    content: 'Most Popular';
    position: absolute;
    top: 15px;
    right: -35px;
    /* background: var(--primary); */
    background-color: #4fac28;
    color: white;
    padding: 0.3rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
  }

  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
  }

  .pricing-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .price {
    font-size: 3rem;
    font-weight: 700;
    color:#4fac28;
    margin-bottom: 2rem;
  }

  .price span {
    font-size: 1rem;
    color: var(--dark);
  }

  .pricing-features {
    list-style: none;
    margin-bottom: 2rem;
  }

  .pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .pricing-features li:last-child {
    border-bottom: none;
  }

  /* CTA Section */
  .cta {
    /* background: linear-gradient(to right, var(--primary), var(--primary-dark)); */
    background-color:#eaeff4;
    color: dark;
    text-align: center;
    padding: 6rem 0;
  }

  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
  }

  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  .cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .cta .btn-secondary:hover {
    background: white;
    color: var(--primary);
  }

  /* Footer */
 footer {
    background: var(--dark);
    color: var(--gray);
    padding: 5rem 3rem 2rem; /* ✅ Added left and right padding */
    padding-inline: 3rem; /* ✅ Modern inline padding */
  }

  .footer-grid {
    display: flex;
    flex-wrap: wrap; /* only wrap on very small screens */
    gap: 2rem;
    justify-content: space-between;
}
.footer-col {
    flex: 1 1 200px; /* grow, shrink, base width */
}


  .footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
  }

  .footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
  }

  .footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .footer-links {
    list-style: none;
  }

  .footer-links li {
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    transition: all 0.3s ease;
  }

  .footer-links a:hover {
    color: #4FC3F7 !important;
    transform: translateX(5px);
    transition: all 0.3s ease;
    padding-left: 5px;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
  }

  .social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
  }

  .contact-info {
    list-style: none;
  }

  .contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
  }

  .contact-info i {
    color: var(--primary);
    margin-top: 4px;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
  }

  /*media query*/
  
/* Powerful Features section */

/* Large Desktops (1200px and above) */
@media (min-width: 1200px) {
    .section-title h2 {
        font-size: 2.8rem;
    }
}

/* Tablets (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title p {
        font-size: 1rem;
    }
}

/* Mobile Devices (Below 768px) */
@media (max-width: 767px) {
    .section.features {
        padding: 70px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }
}

/* Small Phones (Below 480px) */
@media (max-width: 480px) {
    .section.features {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-desc {
        font-size: 0.9rem;
    }
}
/* Powerful Features section end */

/* ===========================
   STATS SECTION STYLING + SLIDER
   =========================== */
.section.stats {
  /* background: linear-gradient(to right, var(--primary), var(--primary-dark)); */
  background-color: #6FD943;
  color: white;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

/* Slider wrapper */
.stats-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track that moves */
.stats-track {
  display: flex;
  gap: 2rem;
  animation: scrollStats 10s linear infinite;
}

/* Each stat box */
.stat-item {
  flex: 0 0 auto;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.08);
}

/* Typography (yours preserved) */
.stat-item h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000000;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
  color: #000000;
}

/* Animation for smooth continuous movement */
@keyframes scrollStats {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* Responsive tweaks */
@media (max-width: 768px) {
  .stat-item {
    min-width: 180px;
    padding: 25px;
  }
}
/* ===========================
   RESPONSIVE MEDIA QUERIES
   =========================== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .section.stats {
    padding: 80px 0;
  }
  

  .stat-item {
    min-width: 200px;
    padding: 35px 18px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .stats-track {
    gap: 1.5rem;
    animation-duration: 6s; 
  }

  .stat-item {
    min-width: 180px;
    padding: 30px 15px;
  }

  .stat-item h3 {
    font-size: 2.2rem;
  }

  .stat-item p {
    font-size: 1rem;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .section.stats {
    padding: 60px 0;
  }

  .stat-item {
    min-width: 160px;
    padding: 25px 12px;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }

  .stat-item p {
    font-size: 0.95rem;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .stats-track {
    gap: 1rem;
    animation-duration: 4s;
  }

  .stat-item {
    min-width: 140px;
    padding: 20px 10px;
    border-radius: 15px;
  }

  .stat-item h3 {
    font-size: 1.6rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }
}
.stats-track:hover {
  animation-play-state: paused;
}

/* ===========================
   RESPONSIVE MEDIA QUERIES
   =========================== */

/* Large tablets and small laptops */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .pricing-card {
    padding: 35px 25px;
  }

  .pricing-header .price {
    font-size: 2.2rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .section.pricing {
    padding: 80px 0;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .pricing-card h3 {
    font-size: 1.4rem;
  }

  .pricing-header .price {
    font-size: 2rem;
    margin:0;
  }

  .pricing-features li {
    font-size: 0.95rem;
  }
}
/* Mobile landscape */
@media (max-width: 768px) {
  .section.pricing {
    padding: 40px 0; /* reduced from 60px */
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px; /* reduced from 20px */
  }

  .pricing-card {
    padding: 20px 15px; /* reduced from 30px 20px */
  }

  .pricing-header .price {
    font-size: 1.6rem; /* optional, smaller */
  }

  .pricing-card h3 {
    font-size: 1.2rem; /* optional, smaller */
  }

  .pricing-features li {
    font-size: 0.85rem; /* optional, smaller */
  }
}
/* Small mobile */
@media (max-width: 480px) {
  .section.pricing {
    padding: 30px 0; /* reduced from default */
  }

  .pricing-grid {
    gap: 10px; /* tighter */
  }

  .pricing-card {
    padding: 15px 10px; /* tighter */
    border-radius: 12px; /* optional */
  }

  .pricing-header .price {
    font-size: 1.4rem;
  }

  .pricing-card h3 {
    font-size: 1.1rem;
  }

  .pricing-features li {
    font-size: 0.8rem;
  }

  .pricing-card .btn {
    font-size: 0.85rem;
    padding: 8px 15px;
  }
}
/* ===============================
   reviews MEDIA QUERIES
   =============================== */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonials .section-title h2 {
    font-size: 2.2rem;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .author-avatar {
    width: 55px;
    height: 55px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .testimonials {
    padding: 70px 0;
  }

  .testimonials .section-title h2 {
    font-size: 2rem;
  }

  .testimonials .section-title p {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 20px 15px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-author {
    flex-direction: column;
  }

  .author-info h4 {
    font-size: 1rem;
  }

  .author-info p {
    font-size: 0.9rem;
  }
}

/* Small Phones (max-width: 480px) */
@media (max-width: 480px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials .section-title h2 {
    font-size: 1.7rem;
  }

  .testimonial-card {
    padding: 18px 12px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .author-info h4 {
    font-size: 0.95rem;
  }

  .author-info p {
    font-size: 0.85rem;
  }
}

/* ===============================
   cta MEDIA QUERIES
   =============================== */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .cta {
    padding: 80px 0;
  }

  .cta h2 {
    font-size: 2.2rem;
  }

  .cta p {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .cta .btn {
    padding: 12px 28px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .cta {
    padding: 70px 0;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta .btn {
    width: 80%;
    max-width: 300px;
    text-align: center;
  }
}

/* Small Phones (max-width: 480px) */
@media (max-width: 480px) {
  .cta {
    padding: 60px 0;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .cta .btn {
    width: 50%;
    font-size: 0.95rem;
    padding: 10px 10px;
  }
}


/* btn color  */
      .element11 {
    background-color: #4fbd21 !important;
   
      }

.element12 {
 color: #55b62b !important;
}

@media only screen and (max-width: 600px) {
    .hero-content{
        padding:0;

    }
    .mobile-cs
    {
        width: 46%;  
        padding: 14px 10px;
        
    }
    .nav-cs{
        padding:0 !important;
        
    }
    .header-cs{
        padding: 9px;
        
    }
    
    
}
  
  




  
  