* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a1a;
}

:root {
        --primary: #98cd00; /* Vibrant green */
        --primary-dark: #5a8f00; /* Dark green for contrast */
        --secondary: #7ab800; /* Medium green */
        --dark: #1a2e05; /* Very dark green for text */
        --light: #f8fff0; /* Very light green for background */
        --accent: #c1ff72; /* Light accent green */
        --gray: #6b7d5e; /* Muted green-gray */
        --light-gray: #e9f5d8; /* Light green-gray */
        --card-shadow: 0 10px 30px rgba(152, 205, 0, 0.15);}
/* navbar */
header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background-color: #242824;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-text {
  color: white;
  font-weight: 500;
  font-size: 25px;
  
}

.logo img {
  width: 80px;
  height: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.nav-links > .dropdown,
.nav-links > a {
  position: relative;
  padding: 5px 10px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-links > .dropdown:hover > a,
.nav-links > a:hover {
  color: #98CD00;
}

.nav-links a {
  text-decoration: none;
  color: #e8e8e8;
  font-weight: 500;
  font-size: 16px;
}

.start-btn {
  padding: 8px 16px;
  background-color: #98CD00;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
  padding: 8px 0;
  border-radius: 6px;
  min-width: 160px;
  transition: all 0.3s ease;
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-weight: 400;
  white-space: nowrap;
  font-size: 15px;
  background-color: #fff;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background-color: #f6f6f6;
  color: #98CD00;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.hamburger {
  color: white;
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .logo img {
    width: 60px;
    height: 50px;
  }

  .logo-text {
    font-size: 16px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 0;
    background-color: #040404;
    width: 100%;
    padding: 20px 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    gap: 14px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    display: none;
    background-color: transparent;
    box-shadow: none;
    padding-left: 10px;
  }

  .dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .dropdown-content a {
    font-size: 14px;
    padding: 6px 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
  }

  .nav-links a,
  .start-btn {
    margin: 4px 0;
  }
}
/* navbar  close*/

/* Add padding to body to account for fixed navbar */
body {
  padding-top: 80px;
}

 /* banner */
 .strategy-section {
        background: linear-gradient(135deg, #75a80f,#B8DF7D);
        color: #fff;
        text-align: center;
        padding: 80px 20px 120px;
        position: relative;
      }

      .strategy-section h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
      }

      .strategy-section p {
        font-size: 1.25rem;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
      }

      .strategy-section .cta-button {
        background-color: #fff;
        color: #98CD00;
        font-weight: 600;
        padding: 12px 28px;
        border-radius: 8px;
        text-decoration: none;
        display: inline-block;
        transition: 0.3s;
      }

      .strategy-section .cta-button:hover {
        background-color: #eee;
      }

      /* Wave SVG */
      .wave-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        overflow: hidden;
        line-height: 0;
      }

      .wave-bottom svg {
        position: relative;
        display: block;
        width: calc(200% + 1.3px);
        height: 100px;
      }

      .wave-bottom .shape-fill {
        fill: #ffffff;
      }

      @media (max-width: 600px) {
        .strategy-section h1 {
          font-size: 2rem;
        }

        .strategy-section p {
          font-size: 1rem;
          padding: 0 10px;
        }
      }
/* banner close */

/* home */
 
/* home  close*/

/* footer */
 footer {
            background-color:#242824;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-column p{
          color:var(--light-gray);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--gray);
            color: var(--light-gray);
            font-size: 14px;
        }

/* footer close  */

/* features */


      @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

    

      /* Header Styles */
      .feature-header {
       background-color: var(--primary) ;
        color: #ffffff;
        padding: 4rem 0 6rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
      }

       .feature-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        animation: float 20s infinite linear;
      }

      .header-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 2;
      }

      .feature-header h1 {
        font-size: 2.1rem;
        margin-bottom: 1.5rem;
        /* font-weight: 800; */
        letter-spacing: -0.5px;
      }

      .feature-header p {
        font-size: 1rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        opacity: 0.9;
        font-weight: 400;
      }

      .header-image {
        width: 80%;
        max-width: 800px;
        margin: 3rem auto 0;
        border-radius: 10px;
        box-shadow: var(--card-shadow);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      /* Main Content Styles */
      .feature-container {
        max-width: 1200px;
        margin: -3rem auto 5rem;
        padding: 0 2rem;
      }

      .feature-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 5rem;
      }

      .highlight-card {
        background: white;
        border-radius: 10px;
        padding: 2rem;
        box-shadow: var(--card-shadow);
        transition: transform 0.3s ease;
        border-left: 4px solid var(--primary);
      }

      .highlight-card:hover {
        transform: translateY(-10px);
      }

      .highlight-card h3 {
        color: var(--primary-dark);
        margin-bottom: 1rem;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        font-weight: 600;
      }

      /* How It Works Section */
      .how-it-works {
        background: white;
        border-radius: 20px;
        padding: 3rem;
        margin-bottom: 5rem;
        box-shadow: var(--card-shadow);
        border: 1px solid rgba(0, 0, 0, 0.03);
      }

      .how-it-works h2 {
        text-align: center;
        color: var(--primary-dark);
        margin-bottom: 3rem;
        font-size: 1.5rem;
        font-weight: 700;
      }

      .steps {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
      }

      .step {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
      }

      .step-number {
        /* background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        ); */
        background-color:#064A06 ;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-weight: bold;
        margin-top: 5px;
        box-shadow: 0 5px 15px rgba(152, 205, 0, 0.2);
      }

      .step-content h3 {
        margin-bottom: 0.5rem;
        color:#040404;
        font-weight: 600;
        font-size: 1.2rem;
      }

      /* Benefits Section - Updated Design */
      .benefits {
        margin-bottom: 5rem;
      }

      .benefits h2 {
        text-align: center;
        color:#040404;
        margin-bottom: 3rem;
        font-size: 1.5rem;
        font-weight: 700;
      }

      .feature-group {
        display: flex;
        gap: 60px;
        align-items: flex-start;
        margin-bottom: 80px;
      }

      .feature-header-benefits {
        flex: 0 0 300px;
        position: sticky;
        top: 100px;
      }

      .feature-icon-benefits {
        width: 70px;
        height: 70px;
       background-color: #064A06;
        color: white;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 25px;
        box-shadow: 0 10px 20px rgba(152, 205, 0, 0.15);
      }

      .feature-title-benefits {
        font-size: 1.5rem;
        color: var(--primary-dark);
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.3;
      }

      @media (max-width: 768px) {
  .feature-title-benefits {
        font-size: 1.2rem;
      }
      .step-content p{
        font-size: 1rem;
      }


}

    
      .feature-content-benefits {
        flex: 1;
        background: white;
        border-radius: 20px;
        padding: 50px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.03);
      }

      .feature-list {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .feature-list li {
        padding: 20px;
        border-radius: 12px;
        background-color: rgba(152, 205, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        padding-left: 55px;
        border-left: 4px solid var(--primary);
      }

      .feature-list li:hover {
        transform: translateY(-3px);
        background-color: rgba(152, 205, 0, 0.1);
        box-shadow: 0 5px 15px rgba(152, 205, 0, 0.1);
      }

      .feature-list li::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 20px;
        width: 24px;
        height: 24px;
        background-color: var(--primary);
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        mask-repeat: no-repeat;
        mask-position: center;
      }

       @media (max-width: 1024px) {
  .feature-list li::before {
        display:none;
      }


}

      .feature-list li strong {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--dark);
      }

      .feature-list li span {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.6;
      }

      .divider {
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(90, 143, 0, 0.1),
          transparent
        );
        margin: 0 auto;
        width: 80%;
      }

      /* CTA Section */
      .cta-section {
        text-align: center;
        margin-bottom: 5rem;
      }

      .cta-section h2 {
        color: #064A06;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        font-weight: 700;
      }

      .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
      }

      .cta-button {
        display: inline-block;
        padding: 1rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .primary-button {
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        color: white;
      }

      .secondary-button {
        background: white;
        color: var(--primary-dark);
        border: 2px solid var(--primary-dark);
      }

      .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      
      /* Responsive Styles */
      @media (max-width: 1024px) {
        .feature-group {
          flex-direction: column;
          gap: 30px;
        }

        .feature-header-benefits {
          position: static;
          flex: 1;
          width: 100%;
        }

        .feature-content-benefits {
          padding: 30px;
        }
      }

      /* Responsive for tablet and mobile without affecting desktop view */
      @media (max-width: 1024px) {
        .feature-header {
          padding: 3rem 2rem;
          clip-path: none;
        }

        .header-content {
          padding: 0 1rem;
        }

        .feature-header h1 {
          font-size: 2.2rem;
        }

        .feature-header p {
          font-size: 1.1rem;
          padding: 0 1rem;
        }

        .header-image {
          width: 100%;
          margin: 2rem auto 0;
        }

        .feature-highlights {
          grid-template-columns: 1fr;
          padding: 0 1rem;
        }

        .how-it-works {
          padding: 2rem 1.2rem;
        }

        .steps {
          gap: 2rem;
        }

        .step {
          flex-direction: column;
          gap: 0.5rem;
        }

        .step-number {
          margin-bottom: 0.5rem;
        }

        .benefits .feature-group {
          flex-direction: column;
          gap: 2rem;
        }

        .feature-header-benefits {
          position: static;
          width: 100%;
          margin-bottom: 1rem;
        }

        .feature-content-benefits {
          padding: 2rem;
        }

        .feature-list li {
          padding: 1.2rem;
          font-size: 0.95rem;
        }

        .cta-section {
          padding: 0 1rem;
        }

        .cta-buttons {
          flex-direction: column;
          align-items: center;
          gap: 1rem;
        }

      }

      @media (max-width: 600px) {
        .feature-header h1 {
          font-size: 1.5rem;
        }

        .feature-header p {
          font-size: 1rem;
        }

        .step-number {
          width: 32px;
          height: 32px;
          font-size: 1rem;
        }

        .feature-title-benefits {
          font-size: 1.5rem;
        }

        .feature-icon-benefits {
          width: 50px;
          height: 50px;
          font-size: 1.2rem;
        }

        .cta-button {
          padding: 0.8rem 1.5rem;
          font-size: 0.95rem;
        }

        .highlight-card h3{
          font-size: 1.2rem;
        }

        .how-it-works{
          font-size: 1.2rem;
        }

      }
/* features close */

/* solutions */
 .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .container h1{
        font-size: 1.5rem;
      }

      /* Header */
      .header {
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--secondary) 100%
        );
        color: white;
        padding: 2rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        animation: float 20s infinite linear;
      }

      .header h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        font-weight: 700;
      }

      .header p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0.9;
      }

      .cta-button-sol {
        background: white;
        color: var(--primary);
        padding: 15px 40px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      }

      .cta-button-sol:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      }

      /* Features Grid */
      .features-section {
        padding: 5rem 0;
        background: var(--light);
      }

      .section-title {
        text-align: center;
        font-size: 1.5rem;
        color: var(--dark);
        margin-bottom: 3rem;
        position: relative;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
      }

      .feature-card {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: var(--card-shadow);
        transition: all 0.3s ease;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
      }

      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(152, 205, 0, 0.1),
          transparent
        );
        transition: left 0.5s ease;
      }

      .feature-card:hover::before {
        left: 100%;
      }

      .feature-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
        box-shadow: 0 20px 40px rgba(152, 205, 0, 0.2);
      }

      .feature-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 2rem;
      }

      .feature-icon i{
        /* height:10px;
        width:10px; */
        color:#e8e8e8;
      }

      .feature-card h3 {
        font-size: 1.5rem;
        color: var(--dark);
        margin-bottom: 1rem;
      }

      .feature-card p {
        color: var(--gray);
        line-height: 1.7;
      }

      /* AI Insights Section */
      .ai-insights {
        padding: 5rem 0;
        background: var(--light-gray);
      }

      .insights-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .insights-content h2 {
        font-size: 1.5rem;
        color: var(--dark);
        margin-bottom: 2rem;
      }

      .insights-list {
        list-style: none;
      }

      .insights-list li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(152, 205, 0, 0.2);
        position: relative;
        padding-left: 2rem;
      }

      .insights-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary);
        font-weight: bold;
        font-size: 1.2rem;
      }

      .productivity-image {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: var(--card-shadow);
        position: relative;
        text-align: center;
      }

      .productivity-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(152, 205, 0, 0.2);
      }

      .image-caption {
        margin-top: 1rem;
        color: var(--gray);
        font-size: 0.9rem;
        font-style: italic;
      }

      /* Real-time Section */
      .realtime-section {
        padding: 5rem 0;
        background: var(--light);
      }

      .realtime-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .realtime-card {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: var(--card-shadow);
        text-align: center;
        transition: transform 0.3s ease;
      }

      .realtime-card:hover {
        transform: scale(1.05);
      }

      .pulse-dot {
        width: 20px;
        height: 20px;
        background: var(--primary);
        border-radius: 50%;
        margin: 0 auto 1rem;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(152, 205, 0, 0.7);
        }
        70% {
          box-shadow: 0 0 0 10px rgba(152, 205, 0, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(152, 205, 0, 0);
        }
      }

      @keyframes float {
        0% {
          transform: translateX(-100px);
        }
        100% {
          transform: translateX(calc(100vw + 100px));
        }
      }

      /* Stats Section */
      .stats-section {
        padding: 4rem 0;
        background: linear-gradient(
          135deg,
          var(--primary-dark),
          var(--primary)
        );
        color: white;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
      }

      .stat-item h3 {
        font-size: 3rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
      }

      .stat-item p {
        font-size: 1.1rem;
        opacity: 0.9;
      }

      /* CTA Section */
      .final-cta {
        padding: 5rem 0;
        background: var(--dark);
        color: white;
        text-align: center;
      }

      .final-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
      }

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

      /* Responsive Design */
      @media (max-width: 768px) {
        .header h1 {
          font-size: 1.5rem;
        }

        .header p{
          font-size: 1rem;
        }
        .insights-container {
          grid-template-columns: 1fr;
        }
        .feature-card h3{
          font-size: 1rem;
        }
        .features-grid {
          grid-template-columns: 1fr;
        }
        .section-title {
          font-size: 1.5rem;
        }

        .insights-content h2{
           font-size: 1.1rem;
        }
      }

/* solutions close  */