  /* Base */
    body { font-family: Arial, sans-serif; }
	
    /* ===== Header ===== */
    .site-header {
      background: #fff;
      position: sticky;
      top: 0;
	  z-index: 1000;
      box-shadow: 0 5px 16px rgba(0,0,0,0.15);
    }
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 2rem;
      gap: 1rem;
      background: #fff;
    }

   /* --- LOGO: responsive, crisp, no stretch --- */
/* Default: Keep logo full size for desktop */
.logo img {
  max-width: none;
  height: auto;
}

/* Shrink only on mobile */
@media (max-width: 768px) {
  .logo img {
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 200px;
  }
}


/* Bigger and clearer hamburger close icon */
.navbar-toggler {
  border: none;
  font-size: 1.8rem; /* bigger icon */
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Force alignment of nav links with buttons in collapsed menu */
.navbar-collapse {
  text-align: center;
}

.navbar-nav {
  margin: 0 auto;
}

.navbar-nav .nav-link {
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
}


    /* Main nav layout */
    .main-nav {
      display: flex;
      align-items: center;
      flex: 1;
      justify-content: space-between;
      gap: 2rem;
    }
    .menu {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      margin: 0;
      padding: 0;
    }
    .menu a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      position: relative;
    }
    .menu a.active::after,
    .menu a:hover::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 2px;
      background: dodgerblue;
    }

    /* Dropdown */
    .dropdown { position: relative; }
    .dropdown-toggle {
      all: unset;                 /* strip default button styles */
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 1rem;
      color: inherit;
    }
    .dropdown-toggle::after { content: none !important; } /* prevent extra caret */
    .chevron { transition: transform 0.3s ease; }
    .dropdown.open .chevron { transform: rotate(180deg); }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 2.5rem;
      left: 0;
      background: #fff;
      border: 1px solid #ddd;
      list-style: none;
      padding: 0.5rem 0;
      min-width: 150px;
      z-index: 999;
    }
    .dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu li { padding: 0; }
    .dropdown-menu a {
      display: block;
      padding: 0.5rem 1rem;
      color: #333;
      text-decoration: none;
    }
    .dropdown-menu a:hover { background: #f0f0f0; }

    /* Header buttons */
    .header-buttons { display: flex; gap: 0.5rem; }
    .btn-blue {
      background: dodgerblue;
      color: #fff;
      padding: 0.3rem 0.5rem .8rem 0.3rem;
	  margin-left:.5rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
	  height:60px;
	 
    }
    .btn-blue:hover { background: #0070e0; }

    /* Hamburger button */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 22px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1001;
      position: relative;
    }
    .hamburger span {
      display: block;
      height: 3px;
      width: 100%;
      background: #333;
      border-radius: 2px;
	   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(5px, -5px);
    }
	
	@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    align-items: flex-start;       /* force text/buttons left */
    justify-content: flex-start;   /* no extra space */
  }
  .main-nav.open { right: 0; }

  .menu {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;       /* left-align menu links */
    width: 100%;
  }

  .header-buttons {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;       /* left-align buttons */
    margin-left: 0;                /* remove desktop nudge */
    gap: 0.75rem;
  }

  .header-buttons a {
    display: block;
    width: auto;
    text-align: left;              /* left-align button text */
    margin: 0;
  }
}

/* Active = X */
.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(5px, -5px);
}


    /* Collapse earlier to avoid squish */
    @media (max-width: 1100px) {
      .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
      }
      .main-nav.open { right: 0; }
      .menu { flex-direction: column; gap: 1rem; }
      .header-buttons { flex-direction: column; width: 100%; }
      .hamburger { display: flex; }
    }
	    /* ===== Hero (custom slider, no autoplay) ===== */
    .about-hero {
  padding: 4rem 0;
  background: #f8f9fa; /* subtle light gray */
  box-shadow: 0 5px 16px rgba(0,0,0,0.08);
}

.hero-image img,
.about-hero {
  min-height: 294px; /* Matches your hero image height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
}

.about-hero h1 {
  font-size: 1.7rem;
  font-weight: 700;
  color:dodgerblue;
  
}
.about-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}

    /* ===== Products (placeholder) ===== */
    .product-card img { height: 200px; object-fit: cover; }
    .cta-banner { background: #007bff; color: #fff; padding: 40px 20px; text-align: center; }
    .cta-banner h2 { margin-bottom: 10px; }
    footer { background: #f8f9fa; padding: 30px 20px; margin-top: 00px; }
	
	/* --- NAVBAR alignment --- */
.navbar {
  padding: 0.5rem 1rem;
}

.navbar-brand,
.navbar-toggler {
  display: flex;
  align-items: center;
}

.navbar-toggler {
  border: none; /* cleaner */
  font-size: 1.8rem; /* make the icon bigger */
}

/* Nav links styling */
.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
}

/* Buttons alignment */
.navbar-nav .btn {
  margin-left: 0.5rem;
}

.cta-btn {
  background-color: dodgerblue;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #0070e0; /* darker blue */
}

.header-buttons a {
  display: block;
  width: 100%;
  text-align: center;
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 3rem 2rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 2fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-social a {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 1.2rem;
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;   /* adjust as needed, keep it slim */
  border-top: 1px solid #444; /* subtle divider */
}

.footer-bottom p {
  margin: 0;  /* removes default bottom margin on <p> */
  font-size: 0.9rem;
}

.footer-left {
  flex: 0 0 60%;  /* lock width to 40% */
}

.footer-right {
  flex: 0 0 40%;  /* lock width to 60% */
  text-align: right;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
  margin-left: 1rem;
}
.footer-right a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-col {
    margin-bottom: 2rem;
  }
  
}

  /* Start hidden by default */
/* Cookie Banner */
#cookie-banner {
    all: unset; /* reset all styles */
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #222 !important;
    color: #fff !important;
    padding: 1rem !important;
    text-align: center !important;
    z-index: 999999 !important;
    display: none !important;
  }
  #cookie-banner button {
    margin: 0 5px;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background: #007bff;
    color: white;
    cursor: pointer;
    font-size: 1rem;
  }
  #cookie-banner button:hover { background: #0056b3; }
  #cookie-banner.show { display: block !important; }

/* Force cookie buttons side-by-side on small screens with a 10px gap */
/* Mobile adjustments */
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;   /* stack text and buttons */
    align-items: flex-start;  /* keep text aligned left */
    gap: 15px;                /* space between text and buttons */
  }

  .cookie-buttons {
    width: 100%;              /* full width row for buttons */
    display: flex;
    flex-direction: row;      /* force side by side */
    gap: 10px;                /* space between buttons */
  }

  .cookie-buttons button {
    flex: 1;                  /* equal width buttons */
    min-width: 0;             /* prevent overflow */
  }
}


  .privacy-section .container {
    max-width: 1200px;
  }

  .privacy-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .privacy-box h2 {
    font-size: 1.75rem;
    font-weight: bold;
  }

  .privacy-box p {
    font-size: 1rem;
    line-height: 1.6;
  }
