:root {
  --black: #242424;
  --text: #5f5b56;
  --white: #ffffff;
  --purple: #b65419;
  --purple-dark: #8f3f11;
  --gold: #f4b012;
  --soft-bg: #fbf6ef;
  --soft-bg-2: #fff8e8;
  --border: rgba(182, 84, 25, 0.14);
  --shadow: 0 18px 60px rgba(116, 60, 22, 0.08);
  --shadow-hover: 0 22px 70px rgba(116, 60, 22, 0.15);
  --radius: 24px;
  --transition: all 0.35s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: #444;
  background: #fff;
  overflow-x: hidden;
  overscroll-behavior: none;
}
h1,h2,h3,h4,h5,h6,.about-title,.hero-content h1,.section-heading h2 {
  font-family: "Poppins", sans-serif;
  color: var(--black);
}
p { line-height: 1.7; margin-bottom: 0; }
body img { max-width: 100%; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 50px; }

#topbar { background: var(--purple); color: #fff; min-height: 48px; font-size: 14px; }
.topbar-link { color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.topbar-link:hover { color: #ffe5d2; }
.social-links a { color: #fff; margin-left: 18px; font-size: 15px; }
.social-links a:hover { transform: translateY(-2px); color: #ffe5d2; }

#header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  z-index: 997;
  height: 96px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(182, 84, 25, 0.08);
  position: sticky;
  top: 0;
}
#header.header-scrolled { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); }
#header .container { min-height: 96px; }
#header .logo img { max-height: 62px; }

.navbar { padding: 0; }
.navbar ul { margin: 0; padding: 0; display: flex; align-items: center; list-style: none; gap: 4px; }
.navbar > ul > li { position: relative; }
.navbar a, .navbar a:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  position: relative;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.navbar a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), #f4b012);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.35s ease;
  border-radius: 30px;
}
.navbar a:hover::after, .navbar .active::after { transform: scaleX(1); }
.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: var(--purple);
  background: rgba(182, 84, 25, 0.05);
}
.nav-cta-item { margin-left: 8px; }
.nav-cta-btn {
  background: linear-gradient(135deg, var(--purple), #d36b29);
  color: #fff !important;
  border-radius: 999px !important;
  padding: 12px 20px !important;
  box-shadow: 0 10px 24px rgba(182, 84, 25, 0.24);
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #9c4815, #c9652b) !important;
  color: #fff !important;
}

.mobile-nav-toggle {
  color: #222;
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.3s;
  z-index: 1001;
}
.mobile-nav-toggle.bi-x { color: #222; }

.btn {
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}
.btn-brand {
  background: linear-gradient(135deg, var(--purple), #d06b2b);
  color: #fff;
  box-shadow: 0 14px 34px rgba(182, 84, 25, 0.24);
}
.btn-brand:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 20px 38px rgba(182, 84, 25, 0.28); }
.btn-outline-brand {
  border: 1.5px solid rgba(182, 84, 25, 0.2);
  color: var(--purple);
  background: rgba(255, 255, 255, 0.7);
}
.btn-outline-brand:hover { color: var(--purple); background: rgba(182, 84, 25, 0.06); transform: translateY(-3px); }
.btn-light-brand {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.btn-light-brand:hover { color: white; border:2px solid white; transform: translateY(-3px); }

.section-space { padding: 96px 0; }
.section-heading { max-width: 820px; margin: 0 auto; }
.section-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-heading p { font-size: 16px; color: var(--text); }

.heading-with-leaves {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.leaf-img {
  width: 84px;
  animation: leafFloat 3.2s ease-in-out infinite;
  transform-origin: center;
}
.heading-with-leaves .leaf-img:first-child { animation-delay: 0s; }
.heading-with-leaves .leaf-img:last-child { animation-delay: 0.5s; }

@keyframes leafFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.95; }
  50% { transform: translateY(-4px) rotate(2deg) scale(1.03); opacity: 1; }
}

.section-badge,.mini-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(244, 176, 18, 0.10);
  color: var(--purple);
  border: 1px solid rgba(182, 84, 25, 0.10);
  padding: 8px 15px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero-section {
  position: relative;
  padding: 95px 0 60px;
  background:
    radial-gradient(circle at 10% 20%, rgba(244, 176, 18, 0.10), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(182, 84, 25, 0.09), transparent 24%),
    linear-gradient(180deg, #fff, #fff9f1);
  overflow: hidden;
}
.hero-bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-blur-1 { width: 220px; height: 220px; background: rgba(244, 176, 18, 0.35); top: 70px; left: -40px; }
.hero-blur-2 { width: 240px; height: 240px; background: rgba(182, 84, 25, 0.22); bottom: 60px; right: -40px; }

.hero-content h1 {
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 16px;
  color: #1f1f1f;
  max-width: 640px;
}
.hero-content h1 span { display: inline; color: var(--purple); }
.hero-subtext {
  font-size: 16px;
  line-height: 1.8;
  color: #5a5752;
  max-width: 620px;
}
.hero-features { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; }
.hero-feature-pill {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(182, 84, 25, 0.10);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #2b2b2b;
}
.hero-feature-pill i { color: var(--purple); margin-right: 8px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }
.hero-b2b-line { margin-top: 14px; font-size: 14px; color: #6a655f; font-weight: 500; }

.hero-image-wrap {
  position: relative;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 240, 0.85));
  border: 1px solid rgba(182, 84, 25, 0.08);
  box-shadow: 0 25px 80px rgba(116, 60, 22, 0.14);
}
.hero-main-image {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  min-height: 500px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
.floating-card {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(182, 84, 25, 0.12);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  min-width: 220px;
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(182, 84, 25, 0.1);
  color: var(--purple);
  font-size: 18px;
}
.floating-card strong { display: block; font-size: 14px; color: var(--black); }
.floating-card span { font-size: 12px; color: var(--text); }
.floating-card-one { top: 28px; left: -28px; }
.floating-card-two { bottom: 28px; right: -28px; animation-delay: 1.4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll-indicator { margin-top: 26px; text-align: center; }
.hero-scroll-indicator a {
  color: var(--purple);
  font-weight: 600;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.hero-scroll-indicator i { font-size: 18px; animation: bounceArrow 1.4s infinite; }

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.about-section { background: linear-gradient(180deg, #fff, #fffaf3); }
.about-intro-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 243, 0.95));
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
}
.about-intro-card h3 { font-size: 31px; line-height: 1.3; margin-bottom: 16px; }
.about-intro-card p + p { margin-top: 16px; }

.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.about-highlight-item {
  background: #fff;
  border-radius: 22px;
  padding: 24px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.about-highlight-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.about-highlight-item i {
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 14px;
  display: inline-block;
}
.about-highlight-item h4 { font-size: 18px; margin-bottom: 8px; }

.group-company-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(182, 84, 25, 0.10), rgba(244, 176, 18, 0.14));
  color: var(--purple);
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 14px;
  border: 1px solid rgba(182, 84, 25, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.group-showcase .company-showcase-card {
  background: linear-gradient(180deg, #fff, #fffaf0);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.group-showcase .company-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--purple), var(--gold));
}
.group-showcase .company-showcase-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.company-showcase-top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }

.company-logo-wrap {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(182, 84, 25, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.company-logo-wrap img { max-width: 100%; max-height: 100%; }
.company-showcase-top h4 { margin-bottom: 4px; font-size: 20px; color: var(--purple); }
.company-showcase-top span { font-size: 14px; color: var(--text); font-weight: 500; }

.products-section {
  background:
    linear-gradient(180deg, rgba(182, 84, 25, 0.92), rgba(156, 70, 21, 0.96)),
    url("./img/footer-bgg.png") center/cover no-repeat;
}
.products-section .section-heading p { color: rgba(255, 255, 255, 0.84); }

.product-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
  cursor: pointer;
}
.product-card * { cursor: pointer; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18); }
.product-image-wrap {
  padding: 18px;
  background: linear-gradient(180deg, #fff9ef, #fff);
  overflow: hidden;
}
.product-image-wrap img {
  width: 100%;
  border-radius: 18px;
  transition: transform 0.45s ease;
  border: 2px solid transparent;
}
.product-card:hover .product-image-wrap img { transform: scale(1.02); border: 2px solid var(--gold); }
.product-card-body { padding: 22px 22px 26px; }
.product-card-body h4 { font-size: 24px; color: var(--purple); margin-bottom: 10px; }
.product-card-body p { min-height: 108px; }
.product-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-weight: 700;
}
.product-link:hover { color: var(--purple-dark); gap: 14px; }

.lead-strip {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 26px 28px;
  backdrop-filter: blur(8px);
}
.lead-strip h3, .lead-strip p { color: #fff; }

.why-section { background: linear-gradient(180deg, #fff, #fbf7ef); }
.why-image-wrap {
  /* border-radius: 28px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #fff8ef);
  border: 1px solid var(--border);
  box-shadow: var(--shadow); */
}
.why-arc-layout { display: flex; flex-direction: column; gap: 18px; }
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover { transform: translateX(10px) !important; box-shadow: var(--shadow-hover); cursor: pointer; }
.why-card-2 { margin-left: 24px; }
.why-card-3 { margin-left: 48px; }
.why-card-4 { margin-left: 60px; }
.why-card-5 { margin-left: 40px; }
.why-card-6 { margin-left: 18px; }

.why-icon {
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(182, 84, 25, 0.08);
  color: var(--purple);
  font-size: 20px;
}
.why-card h4 { font-size: 19px; color: var(--purple); margin-bottom: 8px; }

.gallery-section { background: #fff; }
.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.gallery-card span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(182, 84, 25, 0.45));
  opacity: 0;
  transition: var(--transition);
}
.gallery-card:hover img { transform: scale(1.08); filter: brightness(0.84); }
.gallery-card:hover span { opacity: 1; }

.contact-main {
  background-color: #fff8d9;
  margin: 0 !important;
  padding-bottom: 70px;
}
.about-card {
  background-color: #fff;
  border: 1px solid var(--purple);
  padding: 70px 24px 34px;
  border-radius: 20px;
  position: relative;
  box-shadow: 2px 10px 1px #b65419;
  transition: all 0.3s ease;
  height: 100%;
}
.about-card:hover { transform: translateY(-6px); }
.round-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 10px;
  border: 2px solid var(--purple);
  border-radius: 50%;
  width: 104px;
  height: 104px;
}
.contact-card a {
  color: #333;
  cursor: pointer;
  font-size: 1rem;
  word-break: break-word;
  line-height: 1.8;
}
.contact-card h4 {
  color: var(--purple);
  margin-bottom: 12px;
  font-size: 1.2rem;
  margin-top: 10px;
}
.contact-cards {
  background: #fff;
  border-radius: 20px;
  padding: 42px;
  border: 1px solid var(--purple);
  width: 100%;
  box-shadow: 2px 10px 1px #b65419;
}
.form-label { color: var(--purple); font-weight: 600; font-size: 14px; }
.form-control,.form-select {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(182, 84, 25, 0.16);
  padding: 12px 16px;
  background: #fff;
  box-shadow: none;
}
textarea.form-control { min-height: 130px; resize: none; }
.form-control:focus,.form-select:focus {
  border-color: rgba(182, 84, 25, 0.45);
  box-shadow: 0 0 0 0.16rem rgba(182, 84, 25, 0.08);
}
.thanks-box {
  margin-bottom: 18px;
  background: rgba(182, 84, 25, 0.08);
  color: var(--purple);
  border: 1px solid rgba(182, 84, 25, 0.14);
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

footer {
  background-image: url("/img/footer-bgg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 55px 0 0;
}
.contact-container {
  background-color: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.contact-container h4 {
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 22px;
}
.contact-box { margin-top: 24px; }
.contact-container a {
  color: #0b171a;
  word-break: break-word;
  line-height: 1.8;
}
.contact-container a:hover { color: var(--purple); }
.contact-links ul li { line-height: 38px; }
.contact-links ul li a { transition: 0.3s all ease-in-out; }
.contact-links ul li a:hover {
  color: var(--purple);
  display: inline-block;
  transform: translateX(5px);
}
.follow-link { color: var(--black); }
.contact-container img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: 0.5s all ease-in-out;
}
.contact-container img:hover { transform: translateY(7px); cursor: pointer; }
.contact-container .contact-info { margin-left: 25px; }
#menu-img { width: 35px; height: 35px; }

.copyright-wrap {
  margin-top: 28px;
  background-color: var(--purple-dark);
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
      border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.copyright-wrap p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
}
.whatsapp-float:hover { color: #fff; transform: scale(1.06); }

@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
  .navbar.navbar-mobile ul { display: flex !important; }

  .navbar-mobile {
    position: fixed;
    inset: 0;
    background: rgba(19, 12, 7, 0.52);
    backdrop-filter: blur(8px);
    z-index: 999;
  }
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 30px;
    right: 22px;
  }
  .navbar-mobile ul {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100vw);
    height: 100vh;
    padding: 95px 20px 24px;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    animation: mobileMenuSlide 0.35s ease;
  }
  .navbar-mobile ul li { width: 100%; }
  .navbar-mobile a,.navbar-mobile a:focus {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    font-size: 15px;
    color: #222;
    border: 1px solid rgba(182, 84, 25, 0.08);
    /* background: rgba(255, 255, 255, 0.82); */
  }
  .navbar-mobile .nav-cta-btn { justify-content: center; margin-top: 10px; }

  .hero-section { padding: 80px 0 50px; }
  .hero-content h1 { max-width: 100%; }
  .hero-main-image { min-height: auto; }

  .floating-card-one,.floating-card-two {
    position: static;
    margin-top: 14px;
  }

  .about-highlight-grid { grid-template-columns: 1fr 1fr; }

  .why-card-2,.why-card-3,.why-card-4,.why-card-5,.why-card-6 { margin-left: 0; }
}

@keyframes mobileMenuSlide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@media (max-width: 767px) {
  #topbar { display: none !important; }
  #header { height: 82px; }
  #header .container { min-height: 82px; }
  #header .logo img { max-height: 52px; }

  .section-space { padding: 70px 0; }
  .leaf-img { width: 52px; }

  .hero-content h1 { font-size: 31px; }
  .hero-subtext { font-size: 15px; }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-feature-pill {
    width: 100%;
    justify-content: center;
  }

  .about-intro-card,.contact-cards { padding: 24px; }
  .about-highlight-grid { grid-template-columns: 1fr; }

  .contact-cards {
    padding: 24px;
    width: 92%;
  }

  .about-card { padding: 65px 18px 28px; }
  .c-box { margin-top: 5.5rem; }

  footer { padding: 30px 15px 0; }
  .contact-container { padding: 1.5rem; }

  .contact-box {
    flex-direction: column;
    align-items: start !important;
    margin-bottom: 1rem;
  }
  .contact-box .contact-info {
    color: var(--black) !important;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .contact-links,.follow-link { margin-top: 1.7rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .section-heading h2 { font-size: 26px; }
  .about-intro-card h3 { font-size: 24px; }
  .gallery-card img { min-height: 220px; }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}
