  body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #ddd3c6;
    color: #422828;
  }

  /* NAVBAR */
  .top-bar {
    background: #ddd3c6;
    padding: 6px 0;
    font-size: 13px;
    text-align: center;
    color: #635b44;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    color: #ddd3c6;
    background: #422828;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  nav .logo {
    font-weight: 700;
    font-size: 20px;
  }

  nav .logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
  }

  nav ul li {
    cursor: pointer;
    color: #ddd3c6;
    font-size: 15px;
  }

  nav .contact-btn {
    background: #ddd3c6;
    padding: 8px 16px;
    border: 1px solid #000;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;


  }

  nav .contact-btn:hover {
    background: #422828;
    color: #ddd3c6;
  }

  nav .contact-btn a {
    color: #7f1715;
  }

  /* ABOUT SECTION */
  .section {
    padding: 80px 60px;
    max-width: 1200px;
    margin: auto;
  }

  .section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
  }

  .section p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 850px;
  }

  /* GALLERY */
  /* ---------- Responsive Gallery (drop-in replacement) ---------- */

  .gallery-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
  }

  /* container */
  .gallery-grid {
    max-width: 1200px;
    /* NOTE: fixed typo from 12000px */
    margin: 40px auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    /* responsive */
    gap: 30px;
    align-items: stretch;
  }

  /* card wrapper - no fixed width here */
  .gallery-item {
    position: relative;
    /* used by the aspect-ratio fallback */
    overflow: hidden;
    border-radius: 12px;
    background: #ddd3c6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    min-height: 0;
    /* prevents collapse in some browsers */
  }

  /* pseudo-element keeps consistent card ratio in browsers that don't support aspect-ratio */
  .gallery-item::before {
    content: "";
    display: block;
    padding-top: 75%;
    /* 4:3 ratio -> 75% */
    visibility: hidden;
  }

  /* image fills the card area */
  .gallery-item img {
    position: absolute;
    /* fill the pseudo-element space */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* crop to fill without distortion */
    object-position: center;
    border-radius: 0;
    /* keep card rounded, not image circular */
  }

  /* hover / focus */
  .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  }

  /* responsive tweaks */
  @media (max-width: 900px) {
    .gallery-grid {
      gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .gallery-item::before {
      padding-top: 72%;
    }
  }

  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 14px;
    }

    .gallery-item::before {
      padding-top: 90%;
    }

    /* portrait-friendly on tiny screens */
  }

  @media (max-width: 600px) {

    .gallery-item {
      display: none;
    }

    .gallery-item:nth-child(-n + 4) {
      display: block;
    }
  }






  /* STATS SECTION */
  .stats-section {
    text-align: center;
    padding: 60px 20px;
  }

  .trust-badge {
    font-size: 14px;
    background: #ddd3c6;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
  }

  .stats-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .card {
    padding: 30px 40px;
    background: #ddd3c6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    min-width: 250px;
  }

  .card .value {
    font-size: 30px;
    font-weight: 700;
  }

  .card .subtext {
    margin-top: 8px;
    font-size: 15px;
    color: #444;
  }

  /* FOOTER */
  footer {
    background: #422828;
    color: #ddd3c6;
    padding: 60px 60px;
  }

  footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  footer h3 {
    color: #ddd3c6;
    margin-bottom: 14px;
  }

  footer p,
  footer li {
    font-size: 14px;
    line-height: 1.7;
  }

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

  footer iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    border: 0;
  }

  footer .copyright {
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #422828;
    padding-top: 20px;
    margin-top: 30px;
    color: #ddd3c6;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav {
      padding: 16px 20px;
    }

    nav ul {
      display: none;
    }

    .section {
      padding: 50px 20px;
    }

    .gallery-grid {
      padding: 0 20px;
    }

    footer {
      padding: 40px 20px;
    }

    footer .footer-grid {
      grid-template-columns: 1fr;
    }
  }

  /* CONTACT PAGE */

  .contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
  }

  .contact-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .contact-card {
    background: #422828;
    padding: 50px;
    border-radius: 14px;
    border: 1px solid #e2e2e2;
  }

  .contact-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .contact-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .contact-text {
    font-size: 16px;
    line-height: 1.7;
    color: #ddd3c6;
  }

  .contact-title {
    color: #ddd3c6;
    text-decoration: underline;
  }

  .contact-page-link {
    font-size: 17px;
    margin-top: 10px;
    display: inline-block;
    color: #ddd3c6;
    text-decoration: underline;
  }

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

    .contact-card {
      padding: 35px;
    }
  }

  /* ABOUT PAGE */

  .about-hero {
    padding: 80px 20px 120px;
  }

  .about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
  }

  .about-badge {
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 24px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ddd3c6;
    font-size: 14px;
    color: #422828;
  }

  .about-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .about-text {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.8;
    color: #422828;
    margin-bottom: 14px;
  }

  @media (max-width: 768px) {
    .about-hero {
      padding: 60px 20px 80px;
    }

    .about-heading {
      font-size: 32px;
    }

    .about-badge {
      margin-top: 24px;
    }

    /* Link */
  }

  /* NAVBAR LINK STYLING — ONLY for Home / About / Contact */

  nav ul li a:link {
    color: #7f1715;
    background-color: transparent;
    text-decoration: none;
  }

  nav ul li a:visited {
    color: #ddd3c6;
    background-color: transparent;
    text-decoration: none;
  }

  nav ul li a:hover {
    color: #7f1715;
    background-color: transparent;
    text-decoration: underline;
    transition: 0.2s;
  }

  nav ul li a:active {
    color: #7f1715;
  }

  /* Contact Button Link*/
  .contact-btn {
    padding: 8px 20px;
    border: 2px solid #ddd3c6;
    border-radius: 8px;
    color: #ddd3c6;
    background: transparent;
    font-weight: 500;
    transition: 0.2s ease;
  }

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



  /* FOOTER QUICK LINKS  */

  .footer-grid a:link {
    color: rgb(255, 255, 255);
    text-decoration: none;
  }

  .footer-grid ul li a:visited {
    color: rgb(128, 128, 128);
    background-color: transparent;
    text-decoration: none;
  }

  .footer-grid a:hover {
    color: #ddd3c6;
    text-decoration: underline;
    transition: 0.2s;
  }

  /* LOGO GRID SECTION */
  /* LOGO GRID SECTION – desktop & tablet */
  .logo-grid {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    justify-items: center;
  }

  /* Each logo as a small card (like gallery) */
  .logo-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    /* logos shouldn’t be cropped */
    border-radius: 14px;
    background: #ddd3c6;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    display: block;
    padding: 12px;
  }

  /* Show only first 4 logos on mobile */
  /* MOBILE: Show only first 4 logos, vertical list */
  /* MOBILE: show only first 4 logos */
  @media (max-width: 600px) {

    /* Hide everything first */
    .logo-grid img {
      display: none;
    }

    /* Show only first 4 logos */
    .logo-grid img:nth-child(-n + 4) {
      display: block;
    }

    /* Always show the LAST image */
    .logo-grid img:last-child {
      display: block;
    }
  }


  /*slider*/
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: Arial, sans-serif;
    background: #ddd3c6;
  }

  /* ===== HERO SLIDER ===== */
  .hero-slider {
    position: relative;
    width: 100%;
    max-width: 1500px;
    /* optional, for demo */
    height: 420px;
    /* adjust like Amazon banner height */
    margin: 0 auto;
    overflow: hidden;
    background: #000;
  }

  .hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }

  .hero-slide.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Arrows */
  .hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #ddd3c6;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .hero-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
  }

  .hero-arrow.prev {
    left: 10px;
  }

  .hero-arrow.next {
    right: 10px;
  }

  /* Dots (bottom indicators) */
  .hero-dots {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 11;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
  }

  .hero-dot.active {
    background: #febd69;
    /* Amazon-ish yellow */
    border-color: #febd69;
  }


  /* DESKTOP / DEFAULT IMAGES */
  .hero-slide.slide-1 {
    background-image: url("Resources/Banner imgs/Banner-1.png");
  }

  .hero-slide.slide-2 {
    background-image: url("Resources/Banner imgs/Banner-2.png");
  }



  /* MOBILE IMAGES */
  @media (max-width: 768px) {
    .hero-slide.slide-1 {
      background-image: url("Resources/Banner imgs/Banner-1-Mobile.jpg");
    }

    .hero-slide.slide-2 {
      background-image: url("Resources/Banner imgs/Banner-2-Mobile.jpg");
    }


    @media (max-width: 768px) {

      .hero-slide {
        height: auto;
        align-items: center;
        min-height: 220px;
        aspect-ratio: 3/2;
        /* perfect mobile banner ratio */
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
      }

    }


    @media (max-width: 480px) {
      .hero-slider {
        height: 220px;
      }
    }
  }

  /* PRIVACY POLICY PAGE */

  .privacy-policy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
  }

  .privacy-policy-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
  }

  .privacy-policy-text {
    font-size: 20px;
    line-height: 1.7;
    color: #422828;
    margin-bottom: 20px;
  }

  .privacy-policy-text ul {
    margin-top: 10px;
    padding-left: 20px;
  }

  .privacy-policy-text li {
    margin-bottom: 10px;
  }