 body {
      font-family: 'Inter', sans-serif;
      background-color: white;
      color: #1f1b16;
    }

      /* NAVBAR */
    .navbar {
      background-color: #ffffff;
      border-bottom: 1px solid #f0e7de;
      padding: 0.75rem 1.5rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .desktop-layout-visible {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
    }

    .mobile-only-layout {
      display: none;
      flex-direction: column;
      gap: 0.9rem;
      width: 100%;
    }

    .mobile-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .mobile-bottom {
      display: flex;
      justify-content: center;
    }

    @media (max-width: 850px) {
      .desktop-layout-visible { display: none !important; }
      .mobile-only-layout { display: flex !important; }
      .logo img { max-height: 45px; }
      .search-wrapper { flex: 1; }
    }

    .logo a { display: flex; align-items: center; text-decoration: none; }
    .logo img { height: 60px; width: auto; object-fit: contain; }

    

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
    }
    .nav-links li a {
      text-decoration: none;
      font-weight: 600;
      color: #4f3f30;
      padding: 0.4rem 0;
      border-bottom: 2px solid transparent;
    }
    .nav-links li a:hover, .nav-links li a.active {
      color: #c27e3a;
      border-bottom-color: #c27e3a;
    }

   

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    /* SEARCH WRAPPER (right side in desktop, but will be placed next to logo on mobile) */
    .search-wrapper {
      display: flex;
      align-items: center;
      background: #ffffff;
      border-radius: 60px;
      padding: 0.45rem 1rem;
      gap: 0.6rem;
      transition: all 0.2s;
      border: 1px solid #ffffff;
      min-width: 200px;
    }
    .search-wrapper i {
      color: #b59574;
      font-size: 0.9rem;
    }
    .search-wrapper input {
      background: transparent;
      border: none;
      outline: none;
      font-size: 0.85rem;
      font-weight: 500;
      color: #2c241a;
      width: 100%;
      font-family: 'Inter', sans-serif;
    }
    .search-wrapper input::placeholder {
      color: #ffffff;
      font-weight: 400;
    }

    
    /* Right side elements wrapper (desktop only behavior) */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    
    @media (max-width: 850px) {
      .navbar {
        padding: 0.75rem 1rem;
      }
      .nav-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
      }
      
     
      /* Create a flex row wrapper for logo + search (first row) */
      .nav-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
      }
      .logo {
        flex: 0 0 auto;
      }
      .search-wrapper {
        flex: 1;
        min-width: 0; /* prevent overflow */
        max-width: 70%;
      }
    
    }


    @media (max-width: 850px) {
      .nav-container {
        display: flex;
        flex-direction: column;
      }
          }


    .desktop-nav-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .mobile-nav-row {
      display: none;
    }

    @media (max-width: 850px) {
      .desktop-nav-row {
        display: none;
      }
      .mobile-layout {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
        width: 100%;
      }
      .mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
      }
      .mobile-bottom {
        display: flex;
        justify-content: center;
        width: 100%;
      }
      .mobile-bottom .nav-links {
        justify-content: center;
        gap: 2rem;
      }
      .search-wrapper {
        flex: 1;
        max-width: 70%;
      }
      /* ensure logo size fits */
      .logo img {
        max-height: 45px;
      }
    }

    /* For screens above 851px, original row visible */
    @media (min-width: 851px) {
      .mobile-only-layout {
        display: none !important;
      }
      .desktop-layout-visible {
        display: flex !important;
      }
    }

    /* MAIN CONTAINER */
    .container {
    max-width: 1400px;
    margin: 10px auto;
    padding: 2rem 9rem 3rem;
}

    /* SEARCH WRAPPER (right side in desktop, but will be placed next to logo on mobile) */
    .search-wrapper {
      display: flex;
      align-items: center;
      background: #f5f0eb;
      border-radius: 60px;
      padding: 0.45rem 1rem;
      gap: 0.6rem;
      transition: all 0.2s;
      border: 1px solid #ede3d9;
      min-width: 200px;
    }
    .search-wrapper i {
      color: #b59574;
      font-size: 0.9rem;
    }
    .search-wrapper input {
      background: transparent;
      border: none;
      outline: none;
      font-size: 0.85rem;
      font-weight: 500;
      color: #2c241a;
      width: 100%;
      font-family: 'Inter', sans-serif;
    }
    .search-wrapper input::placeholder {
      color: #bbaa99;
      font-weight: 400;
    }


    /* Right side elements wrapper (desktop only behavior) */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    /* --- MOBILE LAYOUT OVERRIDES --- 
       On screens <= 850px: 
       - Logo + search bar side by side in first row
       - Navigation links centered in second row
    */
    @media (max-width: 850px) {
      .navbar {
        padding: 0.75rem 1rem;
      }
      .nav-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
      }
      
      /* First row: logo and search bar side-by-side */
      .nav-container {
        display: flex;
        flex-direction: column;
      }
      /* Create a flex row wrapper for logo + search (first row) */
      .nav-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
      }
      .logo {
        flex: 0 0 auto;
      }
      .search-wrapper {
        flex: 1;
        min-width: 0; /* prevent overflow */
        max-width: 70%;
      }

  /* Smooth scrolling for the entire page */
  html {
      scroll-behavior: smooth;
  }

  /* Optional: For anchor links with offset (if you have fixed header) */
  html {
      scroll-padding-top: 80px; /* Adjust based on your navbar height */
  }

  /* For WebKit browsers - smooth touch scrolling */
  body {
      -webkit-overflow-scrolling: touch;
  }

  /* For all scrollable containers */
  * {
      scroll-behavior: smooth;
  }
  .logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}
img {
    height: 106px;
    width: 101px;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}


      .footer {
        background: white;
        border-top: 1px solid #e9e0d7;
        padding: 3rem 2rem 1.5rem;
        margin-top: 2rem;
      }
      .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
      }
      .footer-col h4 {
        color: #2c241a;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }
      .footer-col p, .footer-col ul li {
        font-size: 0.8rem;
        color: #6b5a48;
        line-height: 1.5;
      }
      .footer-col ul {
        list-style: none;
      }
      .footer-col ul li {
        margin-bottom: 0.6rem;
      }
      .footer-col ul li a {
        color: #6b5a48;
        text-decoration: none;
      }
      .footer-col ul li a:hover {
        color: #c27e3a;
      }
      .social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 0.8rem;
      }
      .social-icons a {
        color: #9b8874;
        font-size: 1.1rem;
      }
      .copyright {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #e3d8ce;
        font-size: 0.7rem;
        color: #9a8672;
      }
      .footer-col p, .footer-col ul { font-size: 0.8rem; line-height: 1.5; }
    .footer-col ul { list-style: none; }
    .footer-col ul li a { color: #cbbcaa; text-decoration: none; }
    .social-icons a { margin-right: 12px; color: #cbbcaa; font-size: 1.1rem; }
    .copyright { text-align: center; padding-top: 2rem; font-size: 0.7rem; color: #9e8e7c; }

    @media (max-width: 768px) {
      .container { padding: 1rem; }
      .card-image { padding: 1.5rem 0.8rem; min-height: 170px; }
      .card-image img { max-height: 120px; }
      .card-name h3 { font-size: 0.8rem; }
      .whatsapp-float { width: 54px; height: 54px; font-size: 28px; bottom: 20px; right: 20px; }
      .tape-card { border-radius: 20px; }
      .page-header h1 { font-size: 1.5rem; }
    }
    @media (max-width: 550px) {
      .card-image { padding: 1rem 0.5rem; min-height: 120px; }
      .card-image img { max-height: 85px; }
      .card-name h3 { font-size: 0.7rem; }
    }
      .social-icons a:hover{
              color:#c27e3a;
          }
          .img {
    height: 73px;
}
    }
   
    .footer-container {
      max-width: 1400px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
    }
    .footer-col img {
      max-height: 50px;
      margin-bottom: 1rem;
      filter: brightness(0.9);
    }
    .footer-col p, .footer-col ul { font-size: 0.8rem; line-height: 1.5; }
    .footer-col ul { list-style: none; }
    .footer-col ul li a { color: #cbbcaa; text-decoration: none; }
    .social-icons a { margin-right: 12px; color: #cbbcaa; font-size: 1.1rem; }
    .copyright { text-align: center; padding-top: 2rem; font-size: 0.7rem; color: #9e8e7c; }

    @media (max-width: 768px) {
      .container { padding: 1rem; }
      .card-image { padding: 1.5rem 0.8rem; min-height: 170px; }
      .card-image img { max-height: 120px; }
      .card-name h3 { font-size: 0.8rem; }
      .whatsapp-float { width: 54px; height: 54px; font-size: 28px; bottom: 20px; right: 20px; }
      .tape-card { border-radius: 20px; }
      .page-header h1 { font-size: 1.5rem; }
    }
    @media (max-width: 550px) {
      .card-image { padding: 1rem 0.5rem; min-height: 120px; }
      .card-image img { max-height: 85px; }
      .card-name h3 { font-size: 0.7rem; }
    }
       .footer {
        background: white;
        border-top: 1px solid #e9e0d7;
        padding: 3rem 2rem 1.5rem;
        margin-top: 2rem;
      }
      .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
      }
      .footer-col h4 {
        color: #2c241a;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }
      .footer-col p, .footer-col ul li {
        font-size: 0.8rem;
        color: #6b5a48;
        line-height: 1.5;
      }
      .footer-col ul {
        list-style: none;
      }
      .footer-col ul li {
        margin-bottom: 0.6rem;
      }
      .footer-col ul li a {
        color: #6b5a48;
        text-decoration: none;
      }
      .footer-col ul li a:hover {
        color: #c27e3a;
      }
      .social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 0.8rem;
      }
      .social-icons a {
        color: #9b8874;
        font-size: 1.1rem;
      }
      .copyright {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #e3d8ce;
        font-size: 0.7rem;
        color: #9a8672;
      }
      @media (max-width: 768px) {
        .footer { padding: 2rem 1.2rem 1rem; }
        .footer-container { gap: 1.5rem; }
      }
      .social-icons a:hover{
              color:#c27e3a;
          }
/* Floating WhatsApp */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: all 0.2s ease;
      text-decoration: none;
      border: none;
    }
    
    .whatsapp-float:hover {
      background-color: #20b859;
      transform: scale(1.05);
    }