html, body { -webkit-transform: none; transform: none; }


/* =========================
   THEME VARIABLES
========================= */
:root {
  --bg: #0b0b0b;
  --panel: #0f0f0f;
  --text: #f5f5f5;
  --muted: #cfcfcf;
  --accent: #5BB12F;
}

.light {
  --bg: #ffffff;
  --panel: #f2f2f2;
  --text: #0b0b0b;
  --muted: #555;
}

/* =========================
   BASE
========================= */
 html {
            scroll-behavior: smooth;
        }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
}

img { display: block; }

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; /* same as index.html container spacing */
}


/* =========================
   HEADER
========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  /* z-index: 9999; */
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

header.transparent {
  background: transparent;
  box-shadow: none;
}

#siteHeader {
  position: fixed !important;      /* header must be on top layer */
  top: 0;
  left: 0;
  right: 0;
  z-index: 2147483646 !important;  /* extremely high to avoid stacking conflicts */
  pointer-events: auto !important;
}

/* When scrolling */
header.scrolled {
  background: var(--panel);              /* Dark mode solid panel */
  box-shadow: 0 6px 22px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

/* Light mode scroll background */
.light header.scrolled {
  background: #ffffffee;                 /* Light clean white */
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.brand img {
    width: 50%;
    height: auto;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.theme-toggle {
  border: 1px solid var(--muted);
  background: transparent;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.icon-sun { display: none; }
.light .icon-sun { display: inline; }
.light .icon-moon { display: none; }

/* =========================
   HAMBURGER + MOBILE MENU
========================= */
/* .hamburger {
  display: none;
  background: transparent;
  border: 0;
  flex-direction: column;
  gap: 5px;
} */

/* hamburger visible and tappable */
/* .hamburger {
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 2147483647 !important; 
  background: transparent;
  border: 0;
  cursor: pointer;
} */

.hamburger {
 display: none;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2147483647; /* Always clickable */
  }

.hamburger span {
 height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 4px;
  transition: 0.4s ease;
}

@media (max-width:768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hide hamburger when menu is open */
.hamburger.hidden {
  opacity: 0;
  pointer-events: none;
}


/* Show only on mobile */
@media (max-width: 768px) {
  .hamburger { display: flex; }
}

/* .mobile-menu {
  position: fixed;
  right: -100%;
  top: 0; bottom: 0;
  width: 260px;
  background: var(--panel);
  padding: 20px;
  transition: .3s;
  z-index: 99998 !important; 
} */
  .mobile-menu {
  position: fixed !important;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;                   /* full height */
  background: var(--panel);        /* dark mode bg */
  padding: 24px;
  transition: right .3s ease;
  overflow-y: auto;
  z-index: 2147483645 !important;  /* just below header */
} 

.light .mobile-menu {
  background: #ffffff;             /* clean white */
}




.mobile-menu.open { right: 0; }

/* Hide hamburger when mobile menu is open */
.mobile-menu.open ~ #hamburger,
#hamburger.open {
  opacity: 0;
  pointer-events: none;
}


.mobile-close {
  background: transparent;
  border: 0;
  font-size: 32px;
  color: var(--text);
}

.mobile-nav {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* Mobile theme toggle */
.mobile-nav .theme-toggle {
  margin-top: 25px;
  width: 120px;
  padding: 8px 12px;
  border-radius: 8px;
}

/* ------------------------------------
   BREADCRUMB HERO (Centered Version)
-------------------------------------*/
.breadcrumb-hero {
  position: relative;
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0 0 12px 12px;
  margin-bottom: 40px;

}

/* Dark overlay */
.breadcrumb-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 0 0 12px 12px;
}

/* Content */
.breadcrumb-content {
  position: relative;
  z-index: 2;
}

/* Page Title */
.page-title {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

/* Breadcrumb Row */
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #fff;
  opacity: .9;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.separator {
  opacity: 0.7;
}

.current {
  font-weight: 600;
  color: var(--primary-color);
}

/* ----------------
   DARK MODE
-----------------*/
body.dark .breadcrumb-hero {
  background-blend-mode: multiply;
}

body.dark .breadcrumb,
body.dark .breadcrumb a,
body.dark .page-title {
  color: #fff;
}



/* =========================
   HERO + CAROUSEL
========================= */
.hero {
  padding-top: 70px;
}

.carousel {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform .6s ease;
}

.slide {
  min-width: 100%;
  height: 550px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-content {
  background: rgba(0,0,0,0.45);
  padding: 25px 30px;
  border-radius: 10px;
  text-align: center;
}

.headline {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  margin: 0;
  color: #fff;
}

.hero-desc {
  margin: 10px 0 18px;
  font-size: 16px;
  color: #ddd;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 10px 16px;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

/* =========================
   DOTS
========================= */
.carousel-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #777;
  cursor: pointer;
  transition: .25s;
}

.carousel-dots span.active {
  background: var(--accent);
  transform: scale(1.25);
}

/* =========================
   BUTTON GLOBAL
========================= */
.btn {
  background: transparent;
  border: 2px solid var(--text);
  padding: 10px 20px;
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* Glow for primary buttons */
.btn.primary:hover {
  box-shadow: 0 12px 26px rgba(91, 177, 47, 0.45);
}

/* Light mode glow */
.light .btn.primary:hover {
  box-shadow: 0 12px 22px rgba(91, 177, 47, 0.35);
}


/* Add margin-top to Buy Now button on mobile+tablet */
@media (max-width: 992px) {
  .btn.primary {
    margin-top: 6px;
  }
}

@media (max-width: 768px) {
  .btn.primary {
    margin-top: 10px; /* slightly larger gap for mobile */
  }
}

@media (max-width: 520px) {
  .btn.primary {
    margin-top: 12px; /* best spacing for small screens */
  }
}


/* =========================
   ABOUT SECTION
========================= */



/* Banner */
/* ABOUT SECTION */
.about-section {
  margin: 0;
  padding: 0;
}

.about-banner {
  position: relative;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* BACKGROUND VIDEO */
.about-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* Fills full area */
  z-index: 1;
}

/* OVERLAY */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* CONTENT BOX */
.about-box {
  position: relative;
  z-index: 3;
  background: var(--card-bg);
  padding: 28px 32px;
  max-width: 750px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}

.about-title {
  font-family: 'Anton';
  font-size: 40px;
  margin-bottom: 12px;
}

.about-text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Light mode overlay fade */
.light .about-overlay {
  background: rgba(255,255,255,0.4);
}



/* SHOP SECTION */
.shop {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px 40px;
}

/* PRODUCT CARD – 50/50 layout */
.product {
  display: flex;
  width: 100%;
  gap: 20px;
  padding: 18px;

  border-radius: 14px;
  border: 2px solid var(--panel);
  background: var(--card-bg);

  transition: 
    background .3s,
    border-color .3s,
    transform .3s,
    box-shadow .3s;
}

/* IMAGE — occupies 50% */
.product .img {
  width: 50%;
  height: 180px;
  border-radius: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
}

/* CONTENT — 50% */
.meta {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* .p-title {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
}

.p-title small {
  font-size: 15px;
  color:#b9b9b9;
} */

.p-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.p-title small {
  font-size: 14px;
  opacity: .75;
  font-weight: 500;
}

/* .price {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
}

.p-specs {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: -6px;  
} */

.p-specs {
  font-size: 14px;
  line-height: 1.5;
  opacity: .85;
}

/* PRICE */
.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}



/* Hover: Card becomes WHITE */
.product:hover {
  background: #ffffff;          /* white */
  border-color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
}

/* Text becomes dark on hover */
.product:hover .p-title {
  color: #000;
}

.product:hover .price {
  color: #5BB12F;
}

/* Button normal (gray) */
.btn {
  border-color: var(--muted);
  color: var(--muted);
}

/* On hover → gray button becomes green outline */
.product:hover .btn:not(.primary) {
  border-color: #5BB12F;
  color: #5BB12F;
}

/* “Primary” button adapts nicely */
.product:hover .btn.primary {
  background: #5BB12F;
  border-color: #5BB12F;
  color: #000;
}

/* Center SHOW ALL button */
.shop-btn-center {
  text-align: center;
  margin-top: 25px;
}
/* Magnetic container */
.shop-btn-center {
  text-align: center;
  margin-top: 25px;
  position: relative;
}

/* ACCORDION CONTAINER */
.product-accordion {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* HEADER */
.acc-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.acc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  cursor: pointer;
}

.acc-img img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.acc-info {
  flex: 1;
}

.acc-toggle {
  background: transparent;
  border: none;
  font-size: 22px;
  transform: rotate(180deg);
  transition: .3s;
}

/* BODY (HIDDEN BY DEFAULT) */
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: #fff;
  border-top: 1px solid #eee;
}

.acc-item.active .acc-body {
  max-height: 900px;
}

.acc-item.active .acc-toggle {
  transform: rotate(0deg);
}

/* CONTENT INSIDE BODY */
.acc-columns {
  display: flex;
  gap: 40px;
  padding: 25px;
}

.acc-box {
  flex: 1;
}

/* LISTS */
.list {
  padding-left: 18px;
  margin-bottom: 25px;
}
.list li {
  margin-bottom: 6px;
}

.list.tick li::before {
  content: "✔";
  color: #0c7ae0;
  margin-right: 8px;
}

/* COLOURS */
.color-row {
  display: flex;
  gap: 10px;
  margin: 10px 0 20px;
}

.clr {
  width: 22px;
  height: 22px;
  display: inline-block;
  border-radius: 50%;
}
.c1 { background:#c3a27f; }
.c2 { background:#8d7a62; }
.c3 { background:#dfd4bf; }
.c4 { background:#3d3d3d; }

/* QTY */
.qty-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.qty-btn {
  border: 1px solid #aaa;
  width: 32px;
  height: 32px;
  background: #fff;
  cursor: pointer;
}

/* ICON ROW */
.icons div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

/* Fake icons (replace with svg later) */
.icon-truck::before { content: "🚚"; }
.icon-doc::before { content: "📄"; }
.icon-link::before { content: "🔗"; }

/* RESPONSIVE */
@media(max-width: 850px){
  .acc-columns { flex-direction: column; }
}



/* Ensure the button has smooth movement */
#magneticBtn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

/* Glow on hover */
#magneticBtn:hover {
  box-shadow: 0 12px 26px rgba(91, 177, 47, 0.45);
  transform: translateY(-3px);
}

/* Light mode */
.light #magneticBtn:hover {
  box-shadow: 0 12px 20px rgba(91, 177, 47, 0.35);
}

/* ============================
   RESPONSIVE (Mobile Stack)
   ============================ */
@media (max-width: 768px) {

  .product {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .product .img {
    width: 100%;
    height: 160px;
  }

  .meta {
    width: 100%;
    align-items: center;
  }

  .btns {
   
    justify-content: flex-start;
    
  }

  .btns .btn,
  .btns .btn.primary {
    width: auto;
  }
}



.stats-section {
  /* padding: 60px 100px; */
  padding: 6% 10%;
  text-align: center;
     margin: 0 auto;
    max-width: 1440px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
}

/* =========================
   STATS – Enhanced Border + Hover Glow
========================= */

.stat-box {
  padding: 24px;
  background: var(--card-bg);
  border-radius: 12px;

  /* New border style */
  border: 2px solid rgba(91,177,47,0.25);

  backdrop-filter: blur(6px);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease;
}

/* Hover glow effect */
.stat-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 12px 26px rgba(91,177,47,0.45); /* clean green glow */
  background: rgba(91,177,47,0.10); /* subtle green tint */
}

/* Stat number */
.stat-number {
  font-family: 'Anton';
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 6px;
  transition: color .3s ease;
}

/* Stat label */
.stat-label {
  font-size: 16px;
  color: var(--muted);
  transition: color .3s ease;
}

/* Light mode adjustment */
.light .stat-box {
  border-color: rgba(0,0,0,0.12);
}

.light .stat-box:hover {
  border-color: var(--accent);
  background: rgba(91,177,47,0.15);
}

.light .stat-label {
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* =========================
   CLIENTS MARQUEE
========================= */

.clients-section {
  /* padding: 70px 100px; */
  padding: 3% 10%;
  text-align: center;
     margin: 0 auto;
    max-width: 1440px;
  
}

/* Wrapper */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 15px;
  margin: 25px 0;
}

/* Fade on left/right */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

/* Light mode fix */
.light .marquee-wrapper::before {
  background: linear-gradient(to right, #fff, transparent);
}
.light .marquee-wrapper::after {
  background: linear-gradient(to left, #fff, transparent);
}

/* Track */
.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
}

/* Animations */
.marquee-track.left {
  animation: marqueeLeft 18s linear infinite;
}
.marquee-track.right {
  animation: marqueeRight 18s linear infinite;
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Logo box */
.client-logo {
  width: 160px;
  height: 80px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.35s ease;
}

/* Hover glow */
.client-logo:hover {
  transform: translateY(-8px) scale(1.08);
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(91,177,47,0.5);
}

/* Logo images */
.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.85;
  transition: all 0.35s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}

/* Light Theme */
.light .client-logo {
  border: 1px solid rgba(0,0,0,0.14);
}

/* Responsive */
@media (max-width: 768px) {
  .client-logo {
    width: 120px;
    height: 60px;
  }
}


/* =========================
   TESTIMONIALS SLIDER
========================= */

.ts-section {
  padding: 3% 10%;
  text-align: center;
     margin: 0 auto;
    max-width: 1440px;
}

.ts-slider {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.ts-track-wrapper {
  overflow: hidden;
}

.ts-track {
  display: flex;
  transition: transform 0.6s ease;
}

.ts-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.ts-card {
  width: 100%;
  max-width: 650px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.ts-card:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(91,177,47,0.35);
}

.ts-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}

.ts-author {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.ts-role {
  font-size: 14px;
  color: var(--muted);
}

/* Slider Arrows */
.ts-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--panel);
  border: 1px solid var(--muted);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.25s;
  z-index: 10;
}

.ts-btn:hover {
  background: var(--accent);
  color: #000;
}

.ts-prev { left: -10px; }
.ts-next { right: -10px; }

/* Mobile */
@media (max-width: 600px) {
  .ts-card { padding: 24px; }
  .ts-prev { left: 0; }
  .ts-next { right: 0; }
}





/* About Page  */
/* =========================
   ABOUT PAGE (Option C) - ABT-PG STYLES
   ========================= */

/* -----------------------------
   ABOUT PAGE BREADCRUMB SECTION
-------------------------------- */
/* ============================
   ABOUT BREADCRUMB (GREEN FINISH)
=============================== */
.about-breadcrumb-hero {
  position: relative;
  width: 100%;
  height: 45vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: var(--header-height);
  overflow: hidden;
}

/* Dark mode overlay + green gradient */
.about-breadcrumb-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55),
      rgba(0, 80, 0, 0.45),     /* deep green fade */
      rgba(0, 150, 0, 0.30)     /* smooth soft green */
  );
  z-index: 1;
  pointer-events: none;
}

/* Light mode version — softer green */
.light .about-breadcrumb-hero .overlay {
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.55),
      rgba(200, 255, 200, 0.45),   /* light soft green */
      rgba(180, 240, 180, 0.30)
  );
}

/* CONTENT */
.about-breadcrumb-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.light .page-title {
  color: #1a1a1a;
}

.about-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

.about-breadcrumb a {
  color: #f4c20f;
  text-decoration: none;
}

.about-breadcrumb .current {
  color: #fff;
}

.light .about-breadcrumb .current {
  color: #1a1a1a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-breadcrumb-hero {
    height: 35vh;
  }

  .page-title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .about-breadcrumb-hero {
    height: 30vh;
  }

  .page-title {
    font-size: 28px;
  }
}


/* Banner / Story */
.abt-pg-banner {
  position: relative;
  height: 420px; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
}

/* Video fits full section */
.abt-pg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.abt-pg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7));
}

.light .abt-pg-overlay {
  background: linear-gradient(rgba(255,255,255,0.45), rgba(255,255,255,0.7));
}

/* Content box */
.abt-pg-content {
  position: relative;
  z-index: 5;
  background: var(--card-bg);
  padding: 28px 32px;
  border-radius: 10px;
  backdrop-filter: blur(3px);
  max-width: 720px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
}

.light .abt-pg-content {
  border-color: rgba(0,0,0,0.12);
}

.abt-pg-title {
  font-family: 'Anton';
  font-size: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

.abt-pg-text {
  color: var(--muted);
  line-height: 1.6;
}

/* VISION & MISSION */
.abt-pg-vision-section { padding: 40px 0;    }
.abt-pg-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}
.abt-pg-vm-box {
  background: var(--panel);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}
.light .abt-pg-vm-box { border-color: rgba(0,0,0,0.08); }
.vm-title { margin: 0 0 8px; color: var(--accent); font-size:18px; }
.vm-text { color: var(--muted); }

/* VALUES GRID */
.abt-pg-values { padding: 40px 0; }
.abt-pg-values-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 16px;
}
.abt-pg-value-box {
  padding: 18px; border-radius:10px; background:var(--card-bg);
  border:1px solid rgba(255,255,255,0.06);
  color: var(--muted);
}

/* TIMELINE */
.abt-pg-timeline { padding: 38px 0; }
.abt-pg-timeline-grid { padding-left: 12px; border-left: 3px solid var(--accent); }
.abt-pg-timeline-item { margin-bottom: 18px; }
.abt-pg-timeline-item .year { font-weight:700; color:var(--accent); }
.abt-pg-timeline-item .desc { color: var(--muted); }

/* CTA */
.abt-pg-cta { padding: 36px 0; text-align: center;}
.abt-pg-cta .cta-inner { display:inline-block; background:var(--card-bg); padding:24px; border-radius:12px; border:1px solid rgba(255,255,255,0.06); }
.light .abt-pg-cta .cta-inner { border-color: rgba(0,0,0,0.08); }

/* Responsive */
@media (max-width: 980px) {
  .abt-pg-vm-grid { grid-template-columns: 1fr; }
  .abt-pg-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .abt-pg-banner { height: 420px; }
  .abt-pg-values-grid { grid-template-columns: 1fr; }
  .abt-pg-content { padding: 18px; }
}


/* =========================
   ABOUT PAGE — PHILOSOPHY
========================= */

.abt-pg-philosophy-section {
  padding: 70px 0;
  text-align: center;
}

.abt-pg-philosophy-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.philosophy-card {
  background: var(--panel);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  transition: all .35s ease;
  text-align: center;
  min-height: 360px;
}

.ph-list {
  margin: 10px 0 20px;
  padding-left: 20px;
  line-height: 1.6;
  color: var(--text);
}

.ph-text {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text);
}


.light .philosophy-card {
  border: 1px solid rgba(0,0,0,0.12);
}

/* Hover */
.philosophy-card:hover {
  transform: translateY(-10px);
  background: var(--card-bg);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(91,177,47,0.35);
}

/* SVG ICON CIRCLE WRAPPER */
.ph-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ph-title {
  margin: 10px 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.ph-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .abt-pg-philosophy-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   TIMELINE SECTION
========================= */
.abt-timeline-section {
  padding: 60px 0;
  text-align: center;
}

.tl-subtext {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}

/* TIMELINE BASE */
.timeline {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* CENTER GREEN LINE */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: translateX(-50%);
}

/* ITEM WRAPPER */
.timeline-item {
  width: 100%;
  position: relative;
  margin: 40px 0;
  display: flex;
  align-items: center;
}

/* LEFT AND RIGHT COLUMN */
.timeline-item.left .content-box {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item.right .content-box {
  margin-left: auto;
  margin-right: 0;
}

/* TIMELINE CARD HOVER EFFECT */
.timeline-item .content-box {
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* HOVER */
.timeline-item .content-box:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(91, 177, 47, 0.35);
}

.timeline-item:hover .dot {
  box-shadow: 0 0 12px rgba(91,177,47,0.8);
  transition: box-shadow 0.3s ease;
}


/* CONTENT BOX */
.content-box {
  width: 40%;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.light .content-box {
  border-color: rgba(0,0,0,0.12);
}

/* YEAR TEXT */
.content-box .year {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--accent);
}

/* DOT */
.dot {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* FIX DOT POSITION */
.timeline-item.left .dot,
.timeline-item.right .dot {
  top: 50%;
}




/* MOBILE RESPONSIVE */
@media (max-width: 800px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    justify-content: flex-start;
  }

  .content-box {
    width: 82%;
    margin-left: 45px !important;
    text-align: left;
  }

  .dot {
    left: 20px;
    transform: none;
  }
}

/* =========================
   LEADERSHIP SECTION
========================= */

.leadership-section {
  padding: 70px 0;
  text-align: center;
}

.leadership-subtext {
  color: var(--muted);
  margin-top: 8px;
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid layout */
.leadership-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.leader-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.3s ease;
  text-align: center;
}

.light .leader-card {
  border-color: rgba(0,0,0,0.12);
}

/* Hover effect */
.leader-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 26px rgba(91,177,47,0.35);
  transform: translateY(-6px);
}

/* Image */
.leader-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

/* Texts */
.leader-name {
  margin: 14px 0 4px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.leader-role {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 10px;
}

.leader-bio {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Responsive */
@media(max-width: 1100px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   LEADERSHIP UPGRADE — Premium Hover
========================= */

/* 3D Lift + Glow */
.leader-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

/* Neon border glow */
.leader-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(91,177,47,0.4);
}

/* Glow ring inside */
.leader-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle at top left,
    rgba(91,177,47,0.25),
    transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.leader-card:hover::after {
  opacity: 1;
}

/* Smooth image zoom */
.leader-img {
  overflow: hidden;
  border-radius: 10px;
}

.leader-img img {
  transition: transform .45s ease;
}

.leader-card:hover .leader-img img {
  transform: scale(1.06);
}


/* =============================
        FOOTER
============================= */
.site-footer {
  background: var(--panel);
  padding: 60px 0 25px;
  /* margin-top: 60px; */
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
     margin: 0 auto;
    max-width: 1440px;
}

/* Each column */
.footer-col {
  flex: 1;
  min-width: 200px;
}

/* Logo */
.footer-logo {
  width: 150px;
  margin-bottom: 14px;
  opacity: 0.9;
}

/* Description */
.footer-desc {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Column Titles */
.footer-col h4 {
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--text);
  font-size: 18px;
}

/* UL Reset */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 6px 0;
  font-size: 15px;
}

/* Footer links */
.footer-col ul li a {
  color: var(--muted);
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* Bottom Row */
.footer-bottom {
  margin-top: 35px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  opacity: 0.85;
}

.footer-inner {
    padding: 0 32px;
}

/* Responsive */
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 14px;
  }

  .footer-col {
    min-width: 100%;
  }
}


/* ============================
   SHOP PAGE STYLING
=============================== */

/* .shop-page-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.shop-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 5px 25px rgba(0,0,0,0.08);
  transition: all .3s ease;
}

.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 32px rgba(0,0,0,0.12);
}

.shop-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.shop-info {
  padding: 20px;
}

.shop-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.shop-price {
  font-size: 18px;
  font-weight: 500;
  color: #0c7ae0;
  margin-bottom: 15px;
}

.shop-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: .3s;
}

.shop-btn:hover {
  background: #0c7ae0;
} */

/* TAB BUTTONS */

.shop-tabs {
  margin-top:2%;
}

.tab-buttons {
  text-align: center;
  margin-bottom: 35px;
}

.tab-btn {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 10px 28px;
  margin: 0 10px;
  border-radius: 30px;
  cursor: pointer;
  transition: .3s;
  font-size: 16px;
  color: var(--text);
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* TAB CONTENT */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* REUSE YOUR PRODUCT CARD CSS */



/* Services Accordian */

/* =======================================
   SERVICE SECTION STYLING (WITH MARGINS)
   ======================================= */
.services {
    /* padding: 0px 160px; */
    padding: 0% 10%;
    margin: 0 auto;
    max-width: 1440px;
   
}


   #services {
  margin-top: 70px;
  margin-bottom: 70px;
}

/* section title */
#services .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* SERVICE CARD (full width) */
.service-card {
  width: 100%;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  overflow: hidden;
  margin-bottom: 35px;
  transition: box-shadow .35s ease, transform .3s ease, border .35s ease;
  border: 2px solid #fff;
  border-color: var(--hover-border);
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 26px var(--shadow-color);
  border-color: var(--accent);
}

/* SERVICE TOP — 50% IMAGE + 50% CONTENT */
.service-top {
  display: flex;
  align-items: stretch;
  position: relative;
  min-height: 230px;
}

/* LEFT 50% IMAGE */
.service-img {
  width: 50%;
  height: 350px;
  background-size: contain;          /* important: fit image properly */
  background-position: center;     /* center the image */
  background-repeat: no-repeat;
  border-right: 1px solid var(--card-border);
  background-color: #f0f0f0;
  padding: 16px;
}

/* RIGHT 50% CONTENT */
/* .service-info {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
   gap: 14px; 
  justify-content: center;
  border-left: 1px solid var(--card-border);  
} */

.service-info {
  width: 50%;
  padding: 2%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  border-left: 1px solid var(--card-border);
  box-sizing: border-box;
}

/* Mobile & Tablet Image Fix */
@media (max-width: 1024px) {
  .service-top {
    flex-direction: column;           /* stack image + content */
  }

  .service-img {
    width: 100%;
    height: 280px;                    /* adjust height for tablet */
    background-size: fit-content;           /* fill container smoothly */
    border-right: 0;
    border-bottom: 1px solid var(--card-border);
  }

  .service-info {
    width: 100%;
    padding: 20px;
    gap: 10px;
    border-left: none;
  }

  .services {
    padding: 3% 5%;
  }
}

@media (max-width: 600px) {
  .service-img {
    height: 240px;                     /* better mobile fit */
    background-size: fit-content;          /* keeps image clean */
    background-color: #fff;            /* optional cleaner mobile bg */
  }

  .service-info {
    padding: 22px 18px;
    text-align: left;
  }

  .services {
    padding: 3% 5%;
  }
}


/* TITLES + TEXT */
.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-short {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.45;
}

/* ACCORDION TOGGLE (arrow) */
.service-acc-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--btn-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: transform .3s ease, background .3s ease;
  color: var(--text-primary);
}

.service-card:hover .service-acc-arrow {
  background: var(--hover-bg);
}

.service-card.active .service-acc-arrow {
  transform: rotate(180deg);
}

/* ACCORDION CONTENT */
.service-acc-content {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid var(--card-border);
  background: var(--card-bg);
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 26px;
}

.service-card.active .service-acc-content {
  max-height: 3800px;
  padding: 26px;
}


/* TWO COLUMN GRID */
.service-acc-grid {
  display: flex;
  gap: 40px;
}

.service-acc-left,
.service-acc-right {
  width: 50%;
}

/* SECTION TITLE */
.sub-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

/* LIST */
.service-points {
  padding-left: 18px;
  margin-bottom: 22px;
}

.service-points li {
  margin-bottom: 6px;
  color: var(--text-primary);
}

.service-points.tick li::before {
  content: "✔ ";
  color: #00c6c0;
}

/* ICON GRID */
.spec-icon-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.spec-icon {
  text-align: center;
  padding: 18px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--card-bg);
  transition: .25s;
}

.spec-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px var(--shadow-color);
}

.spec-icon img {
  width: 50px;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .service-acc-grid {
    flex-direction: column;
  }
  .service-acc-left,
  .service-acc-right {
    width: 100%;
  }
  .spec-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .spec-icon-grid {
    grid-template-columns: 1fr;
  }
}


/* ICON GRID CONTAINER */


/* INDIVIDUAL ICON BOX */




/* TITLE */
.spec-icon h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

/* DESCRIPTION */
.spec-icon p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.3;
}

.spec-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin: 0 auto;         /* centers horizontally */
}


/* RESPONSIVE */
@media(max-width: 1000px) {
  .spec-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 700px) {
  .spec-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px) {
  .spec-icon-grid {
    grid-template-columns: 1fr;
  }
}


/* LIST INSIDE ACCORDION */
.service-points {
  padding-left: 20px;
  margin-top: 15px;
}

.service-points li {
  margin-bottom: 6px;
  color: var(--text-primary);
}

/* ======================
   LIGHT / DARK THEMES
   ====================== */
:root[data-theme="light"] {
  --card-bg: #ffffff;
  --card-border: #dcdcdc;
  --hover-border: #bbbbbb;
  --text-primary: #202020;
  --text-secondary: #666666;
  --shadow-color: rgba(0,0,0,0.12);
  --btn-bg: #f8f8f8;
  --hover-bg: #f1f1f1;
}

:root[data-theme="dark"] {
  --card-bg: #121212;
  --card-border: #333333;
  --hover-border: #555555;
  --text-primary: #e9e9e9;
  --text-secondary: #bcbcbc;
  --shadow-color: rgba(255,255,255,0.06);
  --btn-bg: #1d1d1d;
  --hover-bg: #222;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .service-top { flex-direction: column; }
  .service-img, .service-info { width: 100%; border-right: none; }
  .service-info { border-left: none; padding: 22px; }
}



/* =========================
   GET IN TOUCH SECTION
   ========================= */
.contact-section {
  padding: 3% 10%;
  text-align: center;
     margin: 0 auto;
    max-width: 1440px;
}


.contact-wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  background: var(--card-bg);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Left side text */
.contact-info {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info h3 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.info-item {
  margin: 10px 0;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-item .icon {
  font-size: 20px;
}

.info-item .text {
  display: block;
}

.info-item.address {
  align-items: flex-start;
}

.address-wrapper {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;   /* Responsive: stacks on small screens */
}

.address-block {
  width: 220px;
  line-height: 1.55;
  font-size: 14px;
}

.address-block strong {
  font-size: 15px;
  margin-bottom: 4px;
  display: inline-block;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-right: 15%;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 2px solid var(--muted);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  outline: none;

  transition: border-color .3s, box-shadow .3s;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

/* Floating Label */
.form-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--muted);
  background: var(--bg);
  padding: 0 6px;
  pointer-events: none;

  transition: .3s;
}

/* Active input */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(91,177,47,0.4);
}

.form-group input:valid + label,
.form-group textarea:valid + label,
.form-group input:focus + label,
.form-group textarea:focus + label {
  top: -10px;
  font-size: 12px;
  color: var(--accent);
}

/* Light mode fix */
.light .contact-wrapper {
  border-color: rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

/* Social Profiles Section */
.social-updates {
  /* background: #265ED7; */
  background: #5BB12F;
  padding: 3% 10%;
  color: #fff;
  text-align: center;   
}

.social-updates-container {
     margin: 3% auto;
    max-width: 1440px;
}

.social-updates h2 {
  font-size: 36px;
  font-weight: 700;
 
}

.social-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.social-box {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  min-width: 200px;
}

.social-box .icon svg {
  width: 40px;
  height: 40px;
}

.social-box .text h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.social-box .text p {
  margin: 2px 0 0;
  font-size: 13px;
  opacity: 0.9;
}

/* Hover effect */
.social-box:hover {
  opacity: 0.85;
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .social-grid {
    justify-content: center;
    gap: 30px;
  }
}

/* ============================
   CAREERS SECTION
============================ */
.careers-section {
  padding: 3% 10%;
     margin: 0 auto;
    max-width: 1440px;
}

.careers-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.careers-desc {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

/* GRID */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

/* CARD */
/* CARD */
.career-card {
  background: var(--panel);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: 0.35s ease;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  border: 1px solid #f0f0f0f3;
}

.career-card:hover {
  background: #ffffff;            /* white background */
  color: #000000;                 /* black text */
  border-color: var(--primary);   /* green border */
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Ensure child text also turns black */
.career-card:hover h3,
.career-card:hover .location,
.career-card:hover p {
  color: #000 !important;
}



.career-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.career-card .location {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 18px;
}

/* BUTTON ROW */
.card-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* BUTTONS */
/* .btn-secondary {
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
} */

.btn-secondary {
  background: transparent;
  color: var(--accent);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary, #35c759);  /* green fill */
  color: #fff;                          /* white text */
  transform: translateY(-2px);
}


/* .btn-primary {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
} */

.btn-primary {
  background: var(--accent); /* your green */
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #2dad4c; /* darker green hover */
  border-color: #2dad4c;
  transform: translateY(-2px);
}



/* =============================
   LIGHT MODE OVERRIDES
============================= */
.light .career-card {
  background: #fff;
  border-color: #ddd;
}

.light .career-card:hover {
  border-color: var(--primary);
}

.light .careers-desc {
  color: #444;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 480px) {
  .careers-title {
    font-size: 30px;
  }

  .careers-desc {
    font-size: 16px;
  }

  .card-actions {
    flex-direction: column;
  }

  .btn-secondary, .btn-primary {
    width: 100%;
  }
}

/* ============================
   JOB DETAILS PAGE
============================ */
.job-details {
  padding: 3% 10%;
  margin: 0 auto;
  max-width: 1440px;
  
}

.job-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
}

.job-location {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 25px;
}

/* BUTTON ROW */
.job-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* Outline button */
.btn.outline {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
}

.btn.outline:hover {
  background: var(--accent);
  color: #fff;
}

/* Filled green button */
.btn.teal {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}

.btn.teal:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* Divider line */
.divider {
  margin: 35px 0;
  border: 0;
  border-bottom: 1px solid var(--border, #444);
}

.light .divider {
  border-bottom-color: #ddd;
}

/* META INFO */
.job-meta p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 5px;
}

.job-section {
  margin-top: 35px;
}

.job-section h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.job-section p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* Requirements List */
.job-list {
  margin-top: 15px;
  padding-left: 20px;
}

.job-list li {
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.5;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {
  .job-title {
    font-size: 32px;
  }

  .job-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .job-title {
    font-size: 28px;
  }

  .job-section h3 {
    font-size: 20px;
  }
}

/* ============================
   APPLICATION MODAL
============================ */

.apply-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.apply-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.apply-modal-content {
  width: 90%;
  max-width: 700px;
  background: var(--panel, #fff);
  padding: 30px;
  border-radius: 12px;
  position: relative;
  animation: popup 0.35s ease;
}

@keyframes popup {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.apply-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text, #000);
}

.apply-form {
  margin-right: 2%;
}

.apply-form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}

.apply-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  background: transparent;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 6px;
  background: transparent;
  color: var(--text, #000);
}

.file-upload {
  margin: 20px 0;
}

.submit-btn {
  width: 100%;
  margin-top: 20px;
}
.submit-btn:hover {
  box-shadow: 0 12px 26px rgba(91, 177, 47, 0.45);
}
