    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      overflow-x: hidden;
    }
    /* Navbar */
    nav {
      width: 100%;
      padding: 20px 60px;
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
    }

    nav .logo {
      font-size: 30px;
      font-weight: 700;
      color: #4caf50;
      margin-right: 320px;
    }
  
    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav ul li a {
      text-decoration: none;
      font-size: 16px;
      color: #fff;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #ffd700;
    }
    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 50px;
      min-height: 100vh;
      background: url('img/groth.jpg') no-repeat center/cover;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
    }

    .hero-content {
      position: relative;
      color: white;
      max-width: 50%;
      animation: slideInLeft 1.5s ease;
    }

    .hero-content h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #a5ffae;
      text-shadow: 0 3px 6px rgba(0,0,0,0.6);
    }

    .hero-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 15px;
      opacity: 0.9;
    }

    /* Product Section */
    .products {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
      position: relative;
      animation: slideInRight 1.5s ease;
    }

    .card {
      width: 180px;
      height: 260px;
      perspective: 1000px;
    }

    .card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.8s;
    }

    .card:hover .card-inner {
      transform: rotateY(180deg);
    }

    .card-front, .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    .card-front {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
    }

    .card-front img {
      width: 80%;
      transition: transform 0.5s ease;
    }

    .card-front img:hover {
      transform: scale(1.1);
    }

    .card-back {
      background: linear-gradient(135deg, #66bb6a, #388e3c);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      transform: rotateY(180deg);
      text-align: center;
    }

    /* Footer */
    .footer {
      background: #2e7d32;
      color: white;
      padding: 15px;
      font-size: 0.95rem;
      margin-top: -20px;
      border-radius: 25px 25px 0 0;
    }

    /* Animations */
    @keyframes slideInLeft {
      from { transform: translateX(-100%); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    @keyframes slideInRight {
      from { transform: translateX(100%); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

/* =================vision mission css======================== */

 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

    section {
      padding: 70px 8%;
    }

    h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 70px;
      color: #2e7d32;
      position: relative;
    }

    .timeline {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
      gap: 40px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 50px;
      left: 0;
      right: 0;
      margin: auto;
      height: 6px;
      background: linear-gradient(90deg, #66bb6a, #43a047);
      border-radius: 5px;
      animation: growLine 2s ease forwards;
    }

    .step {
      position: relative;
      width: 30%;
      min-width: 280px;
      text-align: center;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(8px);
      padding: 30px 25px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      animation: fadeUp 1.4s ease;
    }

    .step:hover {
      transform: translateY(-15px) scale(1.05);
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

    .icon {
      width: 70px;
      height: 70px;
      background: #2e7d32;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: -65px auto 20px;
      color: #fff;
      font-size: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
      animation: pulse 2s infinite;
    }

    .step h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: #222;
    }

    .step p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #444;
    }

    /* Animations */
    @keyframes fadeUp {
      from {transform: translateY(40px); opacity: 0;}
      to {transform: translateY(0); opacity: 1;}
    }

    @keyframes growLine {
      from { width: 0; }
      to { width: 100%; }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.15); }
    }

    /* Responsive */
    @media (max-width: 1000px) {
      .timeline {
        flex-direction: column;
        align-items: center;
      }
      .timeline::before {
        display: none;
      }
      .step {
        width: 90%;
      }
    }


/* ============cards==================== */



    h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #222;
    }

    .team-container {
      display: flex;
      flex-wrap: wrap;
      gap: 52px;
      justify-content: center;
    }

    .team-card {
      position: relative;
      width: 256px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      transition: transform 0.4s ease;
      background: white;
    }

    .team-card img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .team-card:hover img {
      transform: scale(1.1);
    }

    .info-box {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 20px;
      background: rgba(0,0,0,0.7);
      color: #fff;
      text-align: center;
      transform: translateY(100%);
      transition: transform 0.5s ease;
    }

    .team-card:hover .info-box {
      transform: translateY(0);
    }

    .info-box h3 {
      margin: 0;
      font-size: 1.2rem;
      color: #ffd32a;
    }

    .info-box p {
      margin: 5px 0 0;
      font-size: 0.9rem;
      color: #dcdcdc;
    }

    .team-card:hover {
      transform: translateY(-10px) scale(1.05);
    }

/* ================process=========== */



    .timelinep {
      position: relative;
      max-width: 900px;
      margin: auto;
      padding: 20px 0;
    }

    /* Vertical line */
    .timelinep::after {
      content: '';
      position: absolute;
      width: 6px;
      background: linear-gradient(#43e97b,#38f9d7);
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
      border-radius: 6px;
    }

    .cardp{
      padding: 20px 30px;
      background: #fff;
      border-radius: 15px;
      width: 45%;
      position: relative;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      transform: translateY(40px);
      animation: fadeInUp 1s forwards;
    }

    .cardp:hover {
      transform: scale(1.05);
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }

    /* Left & Right positioning */
    .left { left: 0; }
    .right { left: 55%; }

    /* Connector circle */
    .cardp::before {
      content: '';
      position: absolute;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      background: linear-gradient(135deg,#43e97b,#38f9d7);
      top: 20px;
      box-shadow: 0 0 15px rgba(56,249,215,0.6);
    }
    .left::before { right: -47px; }
    .right::before { left: -47px; }

    .cardp h3 {
      color: #2e7d32;
      margin-bottom: 10px;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .cardp p {
      color: #333;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* Animation */
    @keyframes fadeInUp {
      from {opacity:0; transform:translateY(40px);}
      to {opacity:1; transform:translateY(0);}
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .timeline::after { left: 20px; }
      .cardp { width: 100%; left: 40px !important; margin-bottom: 30px; }
      .cardp::before { left: -35px !important; }
    }



      /* Slider Section */
  .slider {
    position: relative;
    height: 65vh;
    width: 100%;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }

  /* Dark overlay */
  .slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 0, 0.5);
  }

  /* Content in center */
  .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    max-width: 700px;
    z-index: 2;
  }

  .slide-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700; /* Golden title */
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
  }

  .slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .btn {
    padding: 12px 30px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
  }

  .btn-yellow {
    background: #ffd700;
    color: #000;
  }

  .btn-yellow:hover {
    background: #ffb700;
  }

     .footer {
    position: relative;
    background: url('img/img1.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: "Poppins", sans-serif;
  }
  .footer-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
  }
  .footer-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    z-index: 1;
  }
  /* .footer-col {
    flex: 1;
    margin: 15px;
    min-width: 220px;
  } */
  .footer-logo {
    max-width: 112px;
    margin-bottom: -23px;
  }
  .footer h3 {
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 2px solid #4caf50;
    display: inline-block;
    padding-bottom: 5px;
  }
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  .footer-links ul li {
    margin: 8px 0;
  }
  .footer-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
  }
  .footer-links ul li a:hover {
    color: #4caf50;
  }
  .footer-social .social-icons a {
    display: inline-block;
    margin-right: 10px;
  }
  .footer-social .social-icons img {
    width: 46px;
    transition: transform 0.3s;
  }
  .footer-social .social-icons img:hover {
    transform: scale(1.2);
  }
  .footer-bottom {
    position: relative;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    z-index: 1;
  }