  :root {
    --sand: #f5f0e8;
    --sand-dark: #ece4d4;
    --ocean: #22201d;
    /* --ocean-mid: #22201d; */
    --ocean-mid: #72552a;
    --ocean-light: #2a8fad;
    --ocean-pale: #d4eef5;
    --gold: #c9a84c;
    --gold-light: #e8d08a;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    --radius: 4px;


    --font-title: 'Courgette', sans-serif;
    --font-subtitle: 'Courgette', sans-serif;
    --font-body: 'poppins', sans-serif;
    --font-body: 'Courgette', sans-serif;
    --font-footer: 'Courgette', sans-serif;
    --font-logo: 'Courgette', sans-serif;
  }


  body,
  html {
    margin: 0;
    padding: 0;
  }




  /* ─── FLOATING WA ─── */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #0a8d3a;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: wa-pulse 2.5s ease-in-out infinite;
  }

  .wa-float:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
  }

  .wa-float svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  @keyframes wa-pulse {

    0%,
    100% {
      box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    }

    50% {
      box-shadow: 0 6px 40px rgba(37, 211, 102, 0.70);
    }
  }




  .hero-content h1 {
    color: beige;
    font-size: 5rem !important;
    font-family: 'Courgette', sans-serif !important;
    font-weight: 600;
    margin-top: -5rem;
  }

  .hero-content .btn-outline-light {
    border-radius: 2rem;
    font-size: 1.2rem;
    padding: 1rem;
    margin-left: -26rem !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  }

  .hero-content .btn-outline-light:hover {
    background: #86a900;
    color: #fff;
  }



  nav {
    margin-top: 5rem !important;
  }


  .Brochure {
    text-align: center !important;
    border-radius: 2rem !important;
    background-color: #86a900 !important;
    font-weight: 600 !important;
    color: white !important;
    text-align: center !important;
  }


  @media (max-width: 768px) {
    .Brochure {
      margin-top: -6rem;
      border-radius: 2rem;
    }

  }



  .hero-content .sec-two {
    margin-top: 10rem;
  }

  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .carousel-inner,
  .carousel-item,
  .carousel-item img {
    height: 100vh;
    width: 85%;
  }

  .hero-center-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }

  .carousel-item img {
    object-fit: cover;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.293);
    box-shadow: rgba(0, 0, 0, 0.089) 0px 60px 40px -7px;
  }

  .hero-content {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    min-height: 60%;
    /* Ensure enough height */
    width: 100%;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* align-items: center; */
    background-color: rgba(255, 0, 0, 0);
    /* Temporary background color */
  }

  .hero-content .card-custom {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
      rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }

  .hero-content .card-custom .img-fluid {
    height: 12rem;
    border-radius: 1rem;
    max-width: 100% !important;
  }

  .hero-content .card-custom a {
    border-radius: 2rem;
  }

  @media (max-width: 768px) {


    .carousel-inner,
    .carousel-item,
    .carousel-item img {
      height: 52vh;
      width: 100%;
    }

    .hero-content h1 {
      margin-top: 7rem;
      font-size: 2rem !important;
      font-family: "poppins", "Courier New", Courier, monospace;
    }

    .section-two {
      margin-top: 0;
      padding: 0;
    }

    .section-two .section-title,
    .section-two .section-subtitle,
    .section-3 .section-title {
      font-size: 2rem !important;
      margin-left: 0 !important;
    }

    .section-two .btn-explore {
      margin-left: 1rem;
    }


    .hero {
      height: 52vh;
    }
  }


  .review-box {
    height: 12rem;
    background-color: #22201d;
    padding: 1rem;
    border-radius: 5px;
    border: 5px solid #ffff;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px !important;

  }

  .review-box h3 {
    font-size: 4rem;
  }

  /* navbar */

  #navbar .navbar-expand-lg .navbar-nav .nav-link {
    color: #22201d;
    font-family: "poppins";
  }

  .custom-navbar {
    background: #ffffff;
    border-radius: 50px;
    padding: 0.8rem 2rem;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
  }

  .logo-box {
    background: rgba(255, 255, 255, 0);
    border-radius: 50px;
    margin-left: 1rem;
    padding: 0.4rem 1rem;
  }

  .logo-box span {
    font-size: 2rem !important;
    color: var(--ocean-mid) !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .logo-img {
    width: 52px;
    height: 52px;
    margin-top: -15px;
  }

  .nav-links li {
    margin: 0 1rem;
    position: relative;
  }

  .nav-links li a {
    text-decoration: none;
    color: #fffafa;
    font-family: "poppins";
    font-size: 1rem;
  }

  .nav-links li.dropdown:hover .dropdown-menu {
    font-weight: 700 !important;
    color: #000 !important;
  }

  .nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    padding: 0.5rem 0;
    display: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-links .dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    color: #1d1d1d;
  }

  .search-cart-wrap {
    display: flex;
    align-items: center;
  }

  .search-box {
    background: #f4ebe4;
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    font-weight: 500;
    color: #1d1d1d;
    cursor: pointer;
  }

  .search-box i {
    font-size: 1rem;
  }

  .cart-icon {
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    box-shadow: inset 0 0 0 1px #ddd;
    cursor: pointer;
  }

  .cart-icon i {
    font-size: 1.1rem;
    color: #1d1d1d;
  }

  #navbarContent .btn-contact {
    background: #86a900;
    color: #ffff !important;
    border: none;
    border-radius: 50px;
    margin-left: -9rem !important;
    border-radius: 3rem !important;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    color: #1d1d1d;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 19px 38px,
      rgba(0, 0, 0, 0.062) 0px 15px 12px;
    transition: background 0.2s ease;
  }

  .btn-contact:hover {
    background-color: #f4ebe4;
  }

  .navbar-toggler-icon {
    color: #047130 !important;
    font-size: 1.7rem !important;
    margin-right: 0rem;
    margin-bottom: -1.2rem;
  }

  .home-nav {
    margin-top: 0rem !important;
    padding-top: 0rem !important;
  }

  .home-mobile-nav .navbar {
    display: none;
  }


  #roomx {
    background-color: #a98600;
  }

  #roomx img {
    border: 5px solid #ffffff;
  }



  @media (max-width: 768px) {
    .whatwedobtn {
      display: none !important;
    }

    .home-nav {
      display: none !important;
    }

    .home-mobile-nav .logo-box,
    .hero-overlay {
      height: 70%;
      margin: 0 !important;
      background-color: #00800000;
    }

    .home-mobile-nav .navbar {
      background-color: #000000 !important;
      z-index: 1050;
      /* Higher than carousel */
      position: relative;
      padding: 22px !important;
      display: block;
    }

    /* Target the toggler button and align it to the right */
    .home-mobile-nav .navbar-toggler {
      color: #ffffff !important;
      margin-top: -5rem !important;
    }

    /* Style the icon inside the toggler */
    .home-mobile-nav .logo-box span {
      color: #ffff !important;
      font-family: 'poppins';
    }

    /* Style the icon inside the toggler */
    .home-mobile-nav .navbar-toggler-icon {
      margin-left: 19rem;
      margin-top: -6rem;
      background-color: #000000 !important;
    }

    .sec-two {
      margin-top: 45rem !important;
    }

    .section-two {
      margin-top: 2rem !important;
    }

    #navbarContent .btn-contact {
      margin-left: 1rem !important;
    }

    .navbar {
      margin-top: 0rem !important;
    }

    .hero-content {
      top: -10%;
      left: 50%;
      text-align: center;
      padding: 2rem 1rem;
    }

    .align-items-center {
      margin-left: -0.6rem;
    }

    .logo-box span {
      font-size: 1.2rem !important;
    }


  }

  /* section two 2 */

  .section-two {
    background-color: #ffffff;
  }

  .section-two .section-title {
    font-size: 3rem;
    font-family: "poppins";
    font-weight: 700;
    color: var(--ocean-mid);
    line-height: 1.4;
  }


  .section-two .section-subtitle {
    font-size: 1.5rem;
  }

  .section-two .section-description {
    font-size: 1rem;
    max-width: 90%;
  }

  .section-two .btn-explore {
    background-color: #86a900;
    color: #fff;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .section-two .btn-explore:hover {
    background-color: #22201d;
    color: #f3f4f6;
  }

  .section-two .icon-circle {
    background: #fff;
    color: #000000;
    padding: 0.3rem 0.6rem;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .section-two .section-subtitle {
    font-size: 3rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400 !important;
  }

  .section-two .btn-explore:hover .icon-circle {
    background-color: #d3ffb0;
  }




















  /* section two 3 */

  .section-3 {
    background-color: #f3f4f6;
    padding: 60px 20px;
    font-family: "Segoe UI", sans-serif;
  }

  .section-3 .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
  }

  .section-3 .section-title {
    text-align: left;
    margin-left: 10rem;
    font-size: 3rem;
    color: var(--ocean-mid);
    font-family: 'Courgette', sans-serif !important;
    font-weight: 700;
    line-height: 1.2;
  }

  .section-3 .highlighted-word,
  .section-two .highlighted-word {
    background-color: #22201d;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    display: inline-block;
    transform: rotate(-2deg);
    font-weight: 600;
  }

  .section-3 .section-subtitle {
    font-size: 1.5rem;
  }

  .section-3 .highlight {
    background-color: #d4f06c;
    padding: 0 8px;
    border-radius: 5px;
    display: inline-block;
  }

  .section-3 .highlight .dev {
    background-color: #1c1c1c;
    color: #fff;
    border-radius: 3px;
    padding: 0 4px;
  }

  .section-3 .stats-benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }

  .section-3 .left-stats {
    flex: 1;
    min-width: 280px;
  }

  .section-3 .stat-box {
    margin-bottom: 40px;
  }

  .section-3 .stat-box h3 {
    text-align: right;
    font-size: 5rem;
    font-family: "poppins";
    font-weight: 700;
    color: var(--ocean-mid);
  }

  .section-3 .stat-box p {
    text-align: right;
    font-size: 1.3rem;
    margin: 10px 0 5px;
    font-weight: 500;
  }

  .section-3 .stat-box small {
    text-align: right !important;
    font-size: 0.9rem;
    color: #666;
  }

  .section-3 .right-benefits {
    flex: 1.5;
    background-color: #22201d;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    min-width: 320px;
  }

  .section-3 .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-3 .benefit-card {
    background-color: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .section-3 .benefit-card a {
    text-decoration: none;
    color: #000;
  }


  .section-3 .benefit-card a:hover {
    color: #9e6900;
  }

  .section-3 .benefit-card img {
    object-fit: cover;
    height: 140px;
    width: 100%;
  }

  .section-3 .benefit-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .section-3 .benefit-card i {
    font-size: 1.7rem;
  }

  .section-3 .benefit-card p {
    font-size: 0.9rem;
    color: #444;
  }

  /* Responsive adjustments */
  @media (max-width: 992px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .section-3 .stat-box h3 {
      font-size: 2.5rem !important;
    }
  }

  @media (max-width: 576px) {
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  }

  .section-3 .more-service-btn {
    margin-top: 30px;
    text-align: right;
  }

  .section-3 .more-service-btn a {
    background-color: #d4f06c;
    text-decoration: none;
    color: #000;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }





















  /* section 4 */

  .section-4 {
    padding: 80px 20px;
    background-color: #fff;
    font-family: "Segoe UI", sans-serif;
  }

  .section-4 .partner-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }

  .section-4 .partner-text {
    flex: 1;
    min-width: 280px;
  }

  .section-4 .partner-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2e2e2e;
  }

  .section-4 .partner-text p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .section-4 .btn-green-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00b36b;
    border: 1.5px solid #00b36b;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .section-4 .btn-green-outline:hover {
    background-color: #00b36b;
    color: #fff;
  }

  .section-4 .partner-logos {
    flex: 1.5;
    min-width: 300px;
  }

  .section-4 .logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .section-4 .logo-card {
    background-color: #f8f9ff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
  }

  .section-4 .logo-card img {
    max-height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  /* section 5 */

  .section-5 {
    background-color: #00356c;
    padding: 80px 20px;
    color: #fff;
    font-family: "Segoe UI", sans-serif;
    border-radius: 20px;
  }

  .section-5 .testimonial-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-5 .testimonial-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .section-5 .testimonial-header p {
    color: #d6d6d6;
    font-size: 1rem;
    line-height: 1.6;
  }

  .section-5 .testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-5 .testimonial-card {
    background-color: #0053a9;
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .section-5 .stars {
    color: #fdbb00;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .section-5 .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #e9e9e9;
    margin-bottom: 30px;
  }

  .section-5 .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .section-5 .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .section-5 .author-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
  }

  .section-5 .author-info p {
    margin: 2px 0 0;
    font-size: 0.85rem;
    color: #c2c2c2;
  }

  /* section 6 */

  .section-6 {
    background-color: #f9fafb;
    padding: 80px 20px;
    font-family: "Segoe UI", sans-serif;
  }

  .section-6 .container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }

  .faq-left {
    flex: 1 1 35%;
  }

  .faq-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--ocean-mid);
  }

  .faq-left p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
  }

  .faq-right {
    flex: 1 1 55%;
  }

  .faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 7px 0;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .faq-question h4 {
    font-family: 'Courgette';
    font-size: 1.4rem;
    color: var(--ocean-mid);
    font-weight: 500;
    margin: 0;
  }

  .toggle-icon {
    font-size: 1.5rem;
    color: #6b7280;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
  }

  .faq-item.active .toggle-icon {
    transform: rotate(180deg);
  }



  /* footer */

  .footer-section {
    font-family: "Segoe UI", sans-serif;
    background-color: #ffffff;
    padding: 0;
  }

  .footer-cta {
    background-color: var(--ocean);
    color: rgba(239, 239, 239, 0.984);
    /* font-family: 'Cormorant Garamond', serif; */
    padding: 60px 20px;
    border-radius: 50px 50px 50px 50px;
    margin: 0 auto 40px;
    max-width: 90%;
    text-align: center;
    position: relative;
  }

  .footer-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: Cormorant Garamond;
    font-style: italic;
    color: beige;
  }


  .get-started-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: #ffffff;
    color: #111111;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
  }

  .get-started-btn span {
    margin-left: 10px;
    font-size: 1.2rem;
  }

  .get-started-btn:hover {
    background-color: #f3f4f6;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
  }

  .footer-left {
    flex: 1 1 300px;
  }

  .footer-content .logo img {
    width: 50px !important;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .footer-content span {
    align-items: center;
    gap: 10px;
    color: var(--ocean-mid);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .footer-description {
    color: #374151;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .social-icons a {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #10b981;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #059669;
  }

  .footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
  }

  .footer-column {
    min-width: 150px;
  }

  .footer-links a,
  .footer-column a {
    color: #000000;
    text-decoration: none !important;
  }

  .footer-links a:hover,
  .footer-column a:hover {
    font-weight: 200;
    font-family: "righteous";
    font-weight: 500 !important;
    color: #000 !important;
  }

  .footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--ocean-mid);
  }

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

  .footer-column ul li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #374151;
  }

  .footer-column ul li i {
    margin-right: 8px;
    color: #10b981;
  }

  /* Mobile-specific adjustments */
  @media (max-width: 767.98px) {
    .footer-section .logo-name span {
      font-size: 2rem;
    }
  }

  /* contact */

  .contact-intro .hero-text {
    height: 3rem;
  }

  .contact-intro {
    background-color: #ffffff !important;
  }

  /* Contact Section */
  .contact {
    padding: 60px 0;
    margin: 0 auto;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .contact-body {
    background-color: #ebdbbc !important;
    background-image: url("/asset/img/home/bk3.png");
    /* Replace with your actual image path */
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
  }

  #contact-container {
    background: #ffffff;
    padding: 4rem;
  }

  .contact-form-wrapper {
    padding: 40px;
    border-radius: 50px !important;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
  }

  .contact-form-wrapper h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
  }

  .contact-form label {
    text-align: left !important;
    margin-bottom: 5px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
  }

  .contact-form button {
    background: #0053a9;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: "Poppins", sans-serif;
  }

  .contact-form button:hover {
    background: #008000;
  }

  /* Map now fits inside */
  .mapping {
    margin-top: 30px;
  }

  .mapping iframe {
    border-radius: 20px;
    width: 100%;
    height: 400px;
    box-sizing: border-box;
  }

  /* Responsive Fixes */
  @media (max-width: 991px) {
    .contact {
      padding: 40px 0;
    }

    .mapping iframe {
      height: 300px;
    }
  }

  /* poultry section */

  .about-poultry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .about-poultry .about-left {
    max-width: 50%;
  }

  .about-poultry .about-left h5 {
    color: rgb(0, 0, 0);
    font-family: "poppins";
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 10px;
  }

  .about-poultry .about-left h2 {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--ocean-mid);
  }

  .about-poultry .about-left p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .about-poultry .about-right {
    max-width: 45%;
    position: relative;
  }

  .about-poultry .about-right img {
    width: 100%;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }

  #ceo {
    width: 100% !important;
  }

  .about-poultry .experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: green;
    color: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .about-poultry .experience-badge:hover {
    transform: scale(1.05);
  }

  .about-poultry .badge-text {
    transform: rotate(-90deg);
    font-size: 13px;
    white-space: nowrap;
  }

  .about-poultry .play-icon {
    font-size: 24px;
    margin-top: 6px;
  }

  /* Default (desktop/tablet) - keep flex layout */
  @media (max-width: 768px) {

    .about-poultry {
      padding: 20px 10%;
    }

    .about-poultry .about-left h2 {
      font-size: 27px;
      margin-bottom: 20px;
    }

    .about-poultry .about-left p {
      font-size: 17px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 15px;
      text-align: justify !important;
    }

    .footer-cta h2 {
      font-size: 1.1rem;
    }

    #ceo {
      width: 100% !important;
    }

    .about-poultry .about-right img {
      border: none !important;
    }
  }

  @media (min-width: 768px) {
    .about-poultry .about-left p {
      font-size: 1rem;
      text-align: left;
      text-wrap: balance;
      width: 100%;
      transform: none;
      text-align: justify;
      word-break: break-word;
    }

    .about-poultry .about-left {
      padding: 0 1rem;
      /* optional: horizontal padding */
    }

    .about-poultry .row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .about-poultry .about-left {
      max-width: 50%;
    }

    .about-poultry .about-right {
      max-width: 45%;
    }
  }

  /* Mobile-specific adjustments */
  @media (max-width: 767.98px) {

    .about-poultry .about-left,
    .about-poultry .about-right {
      max-width: 100%;
      text-align: center;
    }
  }

  .products-section {
    background-color: #ebdbbc;
    padding: 80px 10%;
    text-align: center;
  }

  .section-header h5 {
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    font-family: "poppins";
    margin-bottom: 10px;
  }

  .section-header h2 {
    font-size: 3rem;
    font-family: "poppins";
    font-weight: 700;
    color: var(--ocean-mid);
    margin-bottom: 15px;
  }

  .section-header p {
    color: #555;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
  }

  .product-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .product-cards .vision {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    background-color: #22201d;
  }

  .product-cards .mission {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    background-color: #86a900;
  }

  .product-card {
    background: #ffffff00;
    padding: 30px 20px;
    border-radius: 10px;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05); */
    flex: 1 1 30%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-card:hover {
    transform: translateY(-8px);
  }

  .product-card img {
    max-width: 540px;
    margin-bottom: 20px;
  }

  .product-cards ul li {
    font-size: 1.3rem;
  }

  @media (max-width: 768px) {
    .product-card img {
      max-width: 300px;
      margin-bottom: 20px;
    }

    .faq-question h4 {
      font-size: 1.1rem !important;
    }
  }

  .product-card h1 {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--ocean-mid);
    font-family: "poppins";
  }

  .product-card h3 {
    font-size: 1.5rem;
    font-family: "poppins";
    color: #111;
    margin-bottom: 10px;
  }

  .product-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .product-link {
    color: green;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
    display: inline-block;
    width: 100%;
  }

  .product-link:hover {
    text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .product-cards {
      flex-direction: column;
      align-items: center;
    }

    .product-card {
      width: 100%;
      max-width: 500px;
    }
  }



  .farm-gallery {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #fff;
  }

  .farm-gallery .section-header .subtitle {
    font-size: 1.3rem;
    color: #000000;
    font-weight: bold;
    font-family: "poppins";
    margin-bottom: 0.5rem;
  }

  .farm-gallery .section-header .title {
    color: var(--ocean-mid);
    font-weight: bold;
    margin-bottom: 2rem;
  }

  .farm-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .farm-gallery .gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .farm-gallery .gallery-grid img:hover {
    transform: scale(1.03);
  }

  .farm-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
    place-items: center;
    /* This centers items horizontally and vertically */
  }

  .farm-gallery .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .farm-gallery .gallery-grid img {
    width: 220px;
    /* Set a consistent size */
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .farm-gallery h2 {
    color: var(--ocean-mid) !important;
    font-size: 3rem !important;
    font-family: "poppins";
  }

  /* Override for mobile view (max-width: 767px) */
  @media (max-width: 767px) {
    .farm-gallery .gallery-grid {
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .farm-gallery .gallery-grid img {
      width: 100%;
      height: auto;
      display: block;
    }

    .farm-gallery .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* Modal Overlay */
  .image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }

  .modal-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(42, 41, 41, 0.3);
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
  }

  .modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
  }

  .prev-btn,
  .next-btn {
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
  }

  /* progress-section */

  .progress-section {
    background: #523008;
    background: linear-gradient(90deg, rgb(169, 101, 0) 0%, rgb(205, 122, 5) 50%, rgb(92, 68, 3) 100%);
  }

  .progress-section .highlight {
    color: #ffa726;
    font-weight: bold;
  }

  .progress-section .section {
    padding: 60px 20px;
  }

  .progress-section .icon-box i {
    font-size: 32px;
    margin-right: 15px;
    color: #ffa726;
  }

  .progress-section .progress {
    height: 6px;
    background: #eee;
  }

  .progress-section .progress-bar {
    background-color: #c89c00;
  }


  .stats {
    background: rgb(249, 245, 245);
    color: #1c1c1c;
    padding: 30px;
    margin-top: -7rem !important;
    border-radius: 10px;
    z-index: 2 !important;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .stat-number {
    font-size: 3rem;
    color: var(--ocean-mid);
    font-family: "poppins";
    font-weight: 700 !important;
  }

  .stats p {
    font-size: 0.9rem;
    font-family: "poppins";
    font-weight: 500 !important;
    color: #22201d !important;
  }

  .position-relative strong {
    font-family: "poppins";
    font-weight: 200 !important;
  }

  .badge-progress {
    background-color: #1c1c1c;
    color: white;
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 10px;
    position: absolute;
    right: 0;
    transform: translateY(-50%);
  }

  @media (max-width: 767px) {
    .stat-number {
      font-size: 2rem;
    }

    #hero-imgx {
      width: 90%;
    }
  }

  .map-side iframe {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  }



  .hero-section-x {
    background: linear-gradient(135deg, #251a15, #593a2a) !important;
    color: white;
    padding: 80px 0;
  }

  .section-title-x {
    font-weight: 700;
    margin-bottom: 20px;
  }

  .card-custom-x {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  #hero-imgx {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px !important;
  }