html{
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  height: 200vh;
  background: linear-gradient(90deg, #C97D2A, #F7EBA1);
  transition: background 0.4s ease, color 0.4s ease;
}
/* Theme button */
.theme-btn {
  border: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  transform: scale(1.08);
}

/* Light mode default */
body.light-mode {
  background: linear-gradient(90deg, #C97D2A, #F7EBA1);
  color: #111;
}

/* Dark mode */
body.dark-mode {
  background: linear-gradient(90deg, #1f1f1f, #2e2e2e);
  color: #f5f5f5;
}

/* Navbar */
body.dark-mode .glass-navbar {
  background: rgba(20, 20, 20, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .glass-navbar .nav-link {
  color: #f5f5f5;
}

body.dark-mode .glass-navbar .nav-link:hover {
  background: rgba(201, 125, 42, 0.9);
  color: #fff;
}

body.dark-mode .glass-navbar .nav-link.active {
  background: #C97D2A;
  color: #fff;
}

/* Glass boxes */
body.dark-mode .glass-box,
body.dark-mode .why-card,
body.dark-mode .product-card,
body.dark-mode .overlay-content {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.12);
}

/* Text */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode p,
body.dark-mode li,
body.dark-mode a {
  color: #f5f5f5;
}

/* Footer */
body.dark-mode footer {
  background: rgba(15, 15, 15, 0.5);
  color: #f5f5f5;
}

body.dark-mode footer a {
  color: #f5f5f5;
}

body.dark-mode footer a:hover {
  color: #ffffff;
}

/* Chat button */
body.dark-mode .chat-btn {
  background: #C97D2A;
  color: #fff;
}

/* Toggle button in dark */
body.dark-mode .theme-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
/* ABOUT SECTION */
.about-section {
  background: transparent;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* DARK MODE FIX */
body.dark-mode .about-section {
  background: transparent;
}

body.dark-mode .about-section h2,
body.dark-mode .about-section p {
  color: #f5f5f5 !important;
}

body.dark-mode .mission-box,
body.dark-mode .vision-box,
body.dark-mode .management-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-mode .mv-text-box h2,
body.dark-mode .mv-text-box p,
body.dark-mode .management-card h5,
body.dark-mode .management-card p,
body.dark-mode .management-section h2 {
  color: #f5f5f5 !important;
}
/* DARK MODE FIX FOR MANAGEMENT */
body.dark-mode .management-section {
  background: transparent !important;
}

body.dark-mode .management-card {
  width: 100%;
  max-width: 280px;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 20px;
  color: #f5f5f5 !important;
}

body.dark-mode .management-card h5,
body.dark-mode .management-card p,
body.dark-mode .management-section h2 {
  color: #f5f5f5 !important;
}

body.dark-mode .management-img {
  border: 4px solid rgba(255, 255, 255, 0.2);
}
/* DARK MODE FIX FOR MODALS */
body.dark-mode .modal-content {
  background: #2a2a2a !important;
  color: #f5f5f5 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .modal-content h5,
body.dark-mode .modal-content p {
  color: #f5f5f5 !important;
}

body.dark-mode .modal-dialog .btn-primary {
  background: #C97D2A !important;
  border-color: #C97D2A !important;
  color: #fff !important;
}

body.dark-mode .modal-backdrop.show {
  opacity: 0.7;
}







h1, h2, h3, h4, h5 {
  font-weight: 600;
}

p {
  font-weight: 400;
}
/* Glass Navbar */
.glass-navbar {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
/* Glass box */
.glass-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);

  max-width: 700px;
  margin: auto;
}
/* Brand + links */
.glass-navbar .navbar-brand {
  color: #1f1f1f;
  font-weight: 600;
}

.glass-navbar .nav-link {
  color: #000000;
  font-weight: 500;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

/* Hover */
.glass-navbar .nav-link:hover {
  color: #fff;
  background: rgba(201, 125, 42, 0.8);
  border-radius: 8px;
}

/* Active link */
.glass-navbar .nav-link.active {
  color: #fff;
  background: #C97D2A;
  border-radius: 8px;
}
/* Hamburger styling */




/* Remove default Bootstrap icon */
.custom-toggler {
  border: none;
  box-shadow: none;
}
.navbar-toggler {
  border: none;
  box-shadow: none;
}

/* FORCE hamburger visibility */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
/* Bars */
.custom-toggler .bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background-color: #000; /* change if navbar is dark */
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Animate to X when collapsed is open */
.navbar-toggler[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* Brand hover */
.glass-navbar .navbar-brand:hover {
  color: #C97D2A;
}
.navbar-logo {
  height: 65px;   /* adjust size */
  width: auto;
  object-fit: contain;
}
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1); /* makes icon visible on light/glass */
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* optional: better alignment */
.glass-navbar .navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}
.navbar-logo:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}
/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: url('images/bg.jpg') center/cover no-repeat;

  position: relative;
  overflow: hidden;
}

/* Optional overlay (makes text clearer) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}
#aboutCarousel .carousel-item {
  transition: opacity 0.6s ease-in-out;
}

.about-img {
  height: 380px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
#aboutCarousel .carousel-item img {
  transform: scale(1.02);
  transition: transform 0.8s ease;
}
/* Hero content (glass card style) */
.hero-content {
  position: relative;
  z-index: 1;

  text-align: center;
  color: #fff;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;

  padding: 50px;
  max-width: 700px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Title */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

/* Subtitle */
.hero-content p {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0.9;
}

/* Button (if using your gradient button) */
.hero-content .btn {
  margin-top: 20px;
}


/* Section background */
.management-section {
  background: linear-gradient(135deg, #C97D2A, #F7EBA1);
}

/* Glass card */
.management-card {
  width: 100%;
  max-width: 280px;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;

  color: #2b2b2b;

  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Hover effect */
.management-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Profile image */
.management-img {
  width: 120px;
  height: 120px;
  object-fit: cover;

  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.6);

  transition: transform 0.3s ease;
}

/* Image zoom on hover */
.management-card:hover .management-img {
  transform: scale(1.1);
}

/* Text styling */
.management-card h5 {
  font-weight: 600;
}

.management-card p {
  opacity: 0.8;
}

/* Remove default link styling */
.management-link {
  text-decoration: none;
  color: inherit;
}

/* Remove blue color + underline on hover/visited states */
.management-link:link,
.management-link:visited,
.management-link:hover,
.management-link:active {
  text-decoration: none;
  color: inherit;
  display: block;
}
.management-section {
  background: linear-gradient(135deg, #C97D2A, #F7EBA1);
}

/* Glass card */
.management-card {
  width: 100%;
  max-width: 280px;
  min-height: 320px;

  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;

  cursor: pointer;

  transition: 0.3s ease;
}

.management-card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* Profile image */
.management-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.6);
}

/* Modal image */
.modal-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: auto;
}


/* Section background */
.about-section {
  background: #f8f9fa;
}

/* Text styling */
.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* Carousel images */
.about-img {
  height: 350px;
  object-fit: cover;

  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* ABOUT / MISSION / VISION SECTION */
.about-section,
.mission-vision-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Mission and Vision boxes */
.mission-box,
.vision-box {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.mv-text-box h2 {
  color: #2b2b2b;
}

.mv-text-box p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

.mv-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mv-logo:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .mission-box,
  .vision-box {
    padding: 25px;
    text-align: center;
  }

  .about-img {
    height: 300px;
  }

  .mv-logo {
    max-width: 200px;
    margin-bottom: 15px;
  }

  .mv-text-box p {
    font-size: 15px;
  }
}

/* LOADER SCREEN */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(90deg, #C97D2A, #F7EBA1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* LOGO ANIMATION */
.loader-logo {
  width: 120px;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* FADE OUT */
.loader-hidden {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}

.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #C97D2A;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  z-index: 999;
}

/* Footer base */
footer {
  background: linear-gradient(90deg, #C97D2A, #F7EBA1);
  color: #2b2b2b;
  padding-top: 50px;
  padding-bottom: 20px;
}

/* Footer headings */
footer h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* Footer links */
footer a {
  color: #2b2b2b;
  text-decoration: none;
  transition: 0.3s ease;
}

footer a:hover {
  color: #000;
  text-decoration: underline;
}

/* Social icons */
footer img {
  transition: transform 0.3s ease;
}

footer img:hover {
  transform: scale(1.2);
}

/* Divider */
footer hr {
  border-color: rgba(0, 0, 0, 0.2);
}