    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    .come-in{
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.5s ease-in-out;
    }

    .zoom-in{
      opacity: 0;
      transform: scale(0.75);
      transition: all 0.5s ease-in-out;
    }

    .zoom-inCss{
      opacity: 1;
      transform: scale(1);
      transition: all 0.5s ease-in-out;
    }

    .roll-in{
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.5s ease-in-out;
    }

    .roll-inCss{
      opacity: 1;
      transform: translateX(0);
      transition: all 0.5s ease-in-out;
    }

    .visible{
      opacity: 1;
      transform: translateY(0);
      transition: all 0.5s ease-in-out;
    }

    body {
      font-family: 'poppins',sans-serif;
      color: #333;
      line-height: 1.6;
    }

    :root {
      --green: #2d5016;
      --yellow: #f4c430;
      --text: #333;
      --text-light: #666;
      --border: #e0e0e0;
      --bg: #fafafa;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      background-color: transparent;
      width: 100%;
      z-index: 1000;
      transition: box-shadow 0.3s;
    }

    nav.scrolled {
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .nav-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 70px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      width: 45px;
      height: 45px;
    }

    .logo h1 {
      font-size: 18px;
      color: var(--green);
      font-weight: 700;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 35px;
      list-style: none;
    }

    .nav-menu a {
      text-decoration: none;
      color: var(--yellow);
      font-size: 15px;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-menu a:hover {
      color: var(--green);
    }

    .nav-cta {
      background: var(--yellow);
      color: var(--green);
      padding: 10px 24px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: 0.2s;
    }

    .nav-cta:hover {
      background: #e0b02a;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }

    .hamburger span {
      width: 25px;
      height: 2px;
      background: var(--green);
      transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero */
    .hero {
      height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                  url('/images/main-image.jpg') center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 0 20px;
    }

    .hero-content {
      max-width: 700px;
    }

    .hero h1 {
      font-size: clamp(36px, 7vw, 56px);
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero p {
      font-size: clamp(16px, 3vw, 20px);
      margin-bottom: 35px;
      opacity: 0.95;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-buttons button,
    .hero-buttons a {
      padding: 14px 32px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background: var(--yellow);
      color: var(--green);
      border: none;
    }

    .btn-primary:hover {
      background: #e0b02a;
    }

    .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .btn-secondary:hover {
      background: white;
      color: var(--green);
    }

    /* Section */
    section {
      padding: 80px 20px;
    }

    .section-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-title {
      font-size: clamp(28px, 5vw, 38px);
      color: var(--green);
      margin-bottom: 15px;
      font-weight: 700;
    }

    .section-text {
      color: var(--text-light);
      font-size: 16px;
      max-width: 800px;
      margin: 0 auto 50px;
      line-height: 1.7;
    }

    .text-center {
      text-align: center;
    }

    /* About */
    .about {
      background: var(--bg);
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }

    .about-card {
      background: white;
      padding: 35px 25px;
      border-radius: 10px;
      border: 1px solid var(--border);
      transition: 0.3s;
    }

    .about-card:hover {
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transform: translateY(-5px);
    }

    .about-card i {
      font-size: 36px;
      color: var(--yellow);
      margin-bottom: 15px;
    }

    .about-card h3 {
      font-size: 18px;
      color: var(--green);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .about-card p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* Vision */
    .vision {
      background: white;
    }

    /* Product */
    .product {
      background: var(--bg);
    }

    .product-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .product-highlight {
      background: var(--green);
      color: white;
      padding: 40px 35px;
      border-radius: 10px;
      margin-bottom: 40px;
      text-align: center;
    }

    .product-highlight h3 {
      font-size: 26px;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .product-highlight p {
      font-size: 15px;
      opacity: 0.95;
    }

    .product-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 35px;
    }

    .info-box {
      background: white;
      padding: 25px;
      border-radius: 10px;
      border: 1px solid var(--border);
    }

    .info-box h4 {
      color: var(--green);
      font-size: 17px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .info-box ul {
      list-style: none;
    }

    .info-box li {
      padding: 8px 0;
      color: var(--text-light);
      font-size: 14px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .info-box li i {
      color: var(--green);
      margin-top: 2px;
    }

    .packs {
      background: white;
      padding: 30px;
      border-radius: 10px;
      border: 1px solid var(--border);
      margin-bottom: 25px;
    }

    .packs h4 {
      color: var(--green);
      font-size: 20px;
      margin-bottom: 20px;
      text-align: center;
      font-weight: 600;
    }

    .packs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }

    .pack-item {
      background: var(--bg);
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      border: 1px solid var(--border);
      transition: 0.3s;
    }

    .pack-item:hover {
      border-color: var(--yellow);
    }

    .pack-item h5 {
      color: var(--green);
      font-size: 15px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .pack-item p {
      color: var(--text-light);
      font-size: 13px;
    }

    .note {
      background: #fff9e6;
      border: 1px solid #ffd54f;
      padding: 15px;
      border-radius: 8px;
      font-size: 13px;
      color: #856404;
      font-style: italic;
    }

    /* Why Us */
    .why {
      background: white;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .why-card {
      background: var(--bg);
      padding: 30px 25px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid var(--border);
      transition: 0.3s;
    }

    .why-card:hover {
      border-color: var(--yellow);
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .why-card i {
      font-size: 40px;
      color: var(--green);
      margin-bottom: 15px;
    }

    .why-card h3 {
      font-size: 17px;
      color: var(--green);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .why-card p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.6;
    }

    .action-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .action-buttons button {
      padding: 12px 28px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.2s;
      border: none;
    }

    .btn-yellow {
      background: var(--yellow);
    }
    
    .btn-yellow a{
      color: var(--green);
      text-decoration: none;
    }

    .btn-yellow:hover {
      background: #e0b02a;
    }

    .btn-green {
      background: var(--green);
    }
    
    .btn-green a{
      color: white;
      text-decoration: none;
    }

    .btn-green:hover {
      background: #234013;
    }

    /* Centres */
    .centres {
      background: var(--bg);
    }

    .centres-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .centre-card {
      background: white;
      padding: 28px;
      border-radius: 10px;
      border: 1px solid var(--border);
      transition: 0.3s;
    }

    .centre-card:hover {
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .centre-card i {
      font-size: 28px;
      color: var(--yellow);
      margin-bottom: 12px;
    }

    .centre-card h3 {
      color: var(--green);
      font-size: 18px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .centre-card p {
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.5;
    }

    .badge {
      display: inline-block;
      background: var(--yellow);
      color: var(--green);
      padding: 5px 12px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 700;
      margin-top: 10px;
      text-transform: uppercase;
    }

    /* Partners */
    .partners {
      background: white;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .partner-card {
      background: var(--bg);
      padding: 30px 25px;
      border-radius: 10px;
      border: 1px solid var(--border);
    }

    .partner-card h3 {
      color: var(--green);
      font-size: 19px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .partner-card ul,
    .partner-card ol {
      padding-left: 20px;
    }

    .partner-card li {
      margin-bottom: 10px;
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.5;
    }

    /* Careers */
    .careers {
      background: var(--bg);
    }

    .careers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .career-card {
      background: white;
      padding: 30px 25px;
      border-radius: 10px;
      border: 1px solid var(--border);
      transition: 0.3s;
    }

    .career-card:hover {
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .career-card h3 {
      color: var(--green);
      font-size: 19px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .career-desc {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .career-card ul {
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .career-card li {
      font-size: 13px;
      color: var(--text-light);
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .gain-note {
      font-size: 13px;
      color: #444;
      background: var(--bg);
      padding: 12px;
      border-radius: 6px;
      margin-top: 12px;
    }

    /* Contact */
    .contact {
      background: white;
    }

    .contact-box {
      background: var(--bg);
      padding: 35px;
      border-radius: 10px;
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      border: 1px solid var(--border);
    }

    .contact-items {
      margin-bottom: 25px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 15px;
      font-size: 15px;
      color: var(--text-light);
    }

    .contact-item i {
      color: var(--green);
      font-size: 20px;
    }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--yellow);
      color: var(--green);
      padding: 14px 30px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: 0.2s;
    }

    .whatsapp-btn:hover {
      background: #e0b02a;
    }

    /* Footer */
    footer {
      background: var(--green);
      color: var(--yellow);
      padding: 40px 20px;
      text-align: center;
    }

    footer p {
      margin-bottom: 12px;
      font-size: 14px;
    }

    footer a {
      color: var(--yellow);
      text-decoration: none;
      margin: 0 10px;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      transition: 0.2s;
    }

    .social-links a:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    /* Mobile */
    @media (max-width: 768px) {
      .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        width: 70%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: 0.3s;
        align-items: flex-start;
      }

      .nav-menu.active {
        right: 0;
      }

      .nav-menu a {
        font-size: 16px;
        color: var(--text);
      }

      .hamburger {
        display: flex;
      }

      section {
        padding: 60px 20px;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .hero-buttons button,
      .hero-buttons a {
        width: 100%;
        max-width: 280px;
      }

      .action-buttons {
        flex-direction: column;
        align-items: center;
      }

      .action-buttons button {
        width: 100%;
        max-width: 280px;
      }

      .about-grid,
      .why-grid,
      .centres-grid,
      .partners-grid,
      .careers-grid {
        grid-template-columns: 1fr;
      }

      .product-info,
      .packs-grid {
        grid-template-columns: 1fr;
      }

      .contact-box {
        padding: 25px 20px;
      }
    }