:root {
  --bg-body: #f4f5f7;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --gold: #d4a825;
  --gold-soft: #fff5d2;
  --gold-deep: #c2971f;
  --navy: #111827;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --footer-bg: #0b1220;

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.09);
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter",
    "Segoe UI", sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
}

/* LAYOUT */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  min-height: 60vh;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding-left: 0 
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
   margin-left: 0
}

.site-header .header-inner {
  height: 140px;   /* Earlier was 100px */
}

.brand-mark {
  border-radius: 10px;
  background: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin-left: -1rem;
}

.brand-mark img {
  height: 140px;
  width: 140px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #ffffff;
}

/* NAV */

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #ffffff;
}

.main-nav a {
  text-decoration: none;
  font-size: 17px;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  color: #ffffff;
}

.main-nav a:hover {
  color: var(--navy);
}

.main-nav a.active {
  color: var(--navy);
  font-weight: 500;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: width 0.18s ease-out;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta).active::after {
  width: 100%;
}

.main-nav2 {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #000000;
}

.main-nav2 a {
  text-decoration: none;
  font-size: 17px;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  color: #000000;
}

.main-nav2 a:hover {
  color: var(--navy);
}

.main-nav2 a.active {
  color: var(--navy);
  font-weight: 500;
}

.main-nav2 a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: width 0.18s ease-out;
}

.main-nav2 a:not(.nav-cta):hover::after,
.main-nav2 a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 10px 32px rgba(212, 168, 37, 0.5);
}

/* MOBILE NAV BUTTON */

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

/* HERO */

.hero {
  padding: 3.8rem 0 3.6rem;
  background: radial-gradient(circle at top right, #fff7dc, #f7f8fb 50%);
}

.hero-inner {
  text-align: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #fff8e4;
  border: 1px solid #f5e0a9;
  font-size: 0.82rem;
  color: #9a7b24;
  margin-bottom: 1.4rem;
}

.hero-badge-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #e3bf5b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.hero-title {
  margin: 0 0 0.7rem;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 700;
  color: #111827;
}

.hero-highlight {
  display: block;
  color: var(--gold-deep);
}

.hero-subtitle {
  margin: 0 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(212, 168, 37, 0.5);
}

.btn.primary:hover {
  background: var(--gold-deep);
}

.btn.outline {
  background: transparent;
  border-color: #e5e7eb;
  color: var(--navy);
}

.btn.outline:hover {
  border-color: var(--gold);
}

/* GENERIC SECTIONS */

.section {
  padding: 3rem 0;
}

.section-light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.9rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

/* EQUIPMENT CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.equip-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.equip-card:hover {
  transform: translateY(-4px);
  border-color: #f4d26e;
  box-shadow: var(--shadow-soft);
}

.equip-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #fff4d1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.equip-icon {
  font-size: 1.1rem;
  color: var(--gold-deep);
}

.equip-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.equip-card p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.equip-link {
  font-size: 0.86rem;
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 500;
}

/* USP STRIP */

.usp-strip {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 2rem 2.4rem;
}

.usp-item h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.usp-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.usp-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f6e2a4;
  margin-bottom: 0.4rem;
}

/* CTA BAND */

.cta-band {
  padding: 3.4rem 0 3rem;
}

.cta-inner {
  max-width: 720px;
  text-align: center;
  background: var(--gold);
  color: #ffffff;
  border-radius: 30px;
  padding: 2.1rem 2rem 2.4rem;
  margin: 0 auto;
  box-shadow: 0 28px 60px rgba(212, 168, 37, 0.6);
}

.cta-inner h2 {
  margin: 0 0 0.4rem;
  font-size: 1.8rem;
}

.cta-inner p {
  margin: 0 0 1.5rem;
}

.cta-btn {
  background: #ffffff;
  color: var(--gold-deep);
  padding-inline: 1.6rem;
}

/* PAGE HERO (inner pages) */
.about-img{
  margin-right: 100px;
}

.page-hero {
  padding: 2.8rem 0 2rem;
  padding-left: 60px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.page-hero-subtitle {
  margin: 0;
  max-width: 640px;
  color: var(--text-muted);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.bullet-list {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FOOTER */

.site-footer {
  background: var(--footer-bg);
  color: #e5e7eb;
  padding: 2.7rem 0 1.2rem;
  margin-top: 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-col h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
}

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

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

.footer-col a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-brand p {
  margin-top: 0.6rem;
  color: #9ca3af;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.footer-logo-text {
  font-weight: 600;
}

.footer-contact-list li {
  color: #d1d5db;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 1.8rem;
  padding-top: 0.9rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usp-strip {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    gap: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 64px 1.2rem auto;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
    padding: 0.9rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-inner {
    padding-top: 0.8rem;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
}

/* LEFT SIDE CARDS */
.info-card {
  background: #fff;
  padding: 1.6rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}

.info-card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: #111827;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-icon {
  font-size: 1.4rem;
  color: #d4a825;
}

.info-item label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 600;
}

.info-item p {
  margin: 0.1rem 0 0;
  font-size: 0.95rem;
}

/* BUSINESS HOURS */
.hour-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.hour-label {
  color: #1f2937;
}

.hour-time {
  color: #6b7280;
}

/* CONTACT PAGE GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

/* LEFT SIDE CARDS */

.contact-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}

.contact-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  color: #111827;
}

.contact-field {
  margin-bottom: 1.3rem;
  font-size: 18px;
}

.contact-field h3 {
  margin: 0 0 0.2rem;
  font-size: 18pxrem;
  font-weight: 600;
  color: #6b7280;
}

.contact-field p {
  margin: 0;
  color: #1f2937;
  font-size: 0.95rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.7rem;
  color: #374151;
  font-size: 0.9rem;
}

/* RIGHT SIDE FORM */
.enquiry-form {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}

.enquiry-form h2 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
  color: #111827;
}

.contact-form-subtitle {
  margin: 0 0 1.6rem;
  color: #6b7280;
  font-size: 0.88rem;
}

/* FORM FIELDS */
.enquiry-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: #374151;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.1rem;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: #d4a825;
}

/* TWO COLUMN INPUTS */
.form-row.two {
  display: flex;
  gap: 1rem;
}

.form-field {
  flex: 1;
}

/* ERROR STYLES */
.input-error {
  border-color: #dc2626 !important;
  background: #fff5f5 !important;
}

.error-message {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: -0.7rem;
  margin-bottom: 0.8rem;
  animation: fadeIn 0.15s ease-out;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;
  background: #111827;
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row.two {
    flex-direction: column;
  }
}


/* FORM SIDE */
.enquiry-form {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.enquiry-form h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #111827;
}

.form-subtext {
  margin-top: 0.3rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.enquiry-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: #d4a825;
}

.two-input {
  display: flex;
  gap: 1rem;
}

/* SUBMIT BUTTON */
.submit-btn {
  width: 100%;
  background: #111827;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

/* Error Red Border */
.input-error {
  border-color: #dc2626 !important;
  background: #fff5f5 !important;
}

/* Error Text */
.error-message {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
  animation: fadeIn 0.2s ease-in-out;
}

/* Smooth fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-3px); }
  to   { opacity: 1; transform: translateY(0); }
}


.submit-btn:hover {
  background: #000;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .two-input {
    flex-direction: column;
  }
}

.equip-filter-bar {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 0.88rem;
  transition: 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #d4a825;
  color: #fff;
  border-color: #d4a825;
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}

.equip-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.2s;
}

.equip-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.equip-category {
  display: inline-block;
  margin: 0.7rem 1rem 0;
  font-size: 0.75rem;
  background: #fff3cd;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  color: #b18600;
  font-weight: 600;
}

.equip-card h3 {
  margin: 0.6rem 1rem 0.2rem;
}

.equip-card p {
  margin: 0 1rem 1rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.equip-link {
  display: block;
  margin: 0 1rem 1rem;
  font-weight: 600;
  color: #d4a825;
  text-decoration: none;
}

.detail-block {
  margin-bottom: 3rem;
}

.detail-block img {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* =========================================================
   BASE RESPONSIVE FOUNDATION
========================================================= */

/* ----- LARGE DESKTOPS (≥1440px) ----- */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .equip-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
  }

  .equip-card img {
    height: 220px;
  }

  .equip-section-title {
    font-size: 2.3rem;
  }
}

/* ----- LAPTOPS & LARGE TABLETS (900–1439px) ----- */
@media (max-width: 1439px) and (min-width: 900px) {
  .equip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .equip-card img {
    height: 200px;
  }
}

/* ----- TABLETS & MEDIUM DEVICES (600–899px) ----- */
@media (max-width: 899px) and (min-width: 600px) {
  .equip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .equip-card img {
    height: 180px;
  }

  .equip-filter-bar {
    top: 60px; /* Lower sticky offset */
    gap: 0.6rem;
  }

  .equip-section-title {
    font-size: 1.8rem;
  }

  .detail-block img {
    height: 260px;
  }
}

/* ----- SMALL DEVICES (phones 480–599px) ----- */
@media (max-width: 599px) and (min-width: 480px) {
  .equip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .equip-card img {
    height: 150px;
  }

  .equip-section-title {
    font-size: 1.6rem;
  }

  .equip-filter-bar {
    position: static; /* Remove sticky on very small heights */
    flex-wrap: wrap;
    justify-content: center;
  }

  .filter-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
  }

  .detail-block img {
    height: 220px;
  }
}

/* ----- EXTRA SMALL DEVICES (phones < 480px) ----- */
@media (max-width: 479px) {

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero-subtitle {
    font-size: 0.9rem;
  }

  .equip-grid {
    grid-template-columns: 1fr; /* 1 card per row */
    gap: 1.1rem;
  }

  .equip-card img {
    height: 150px;
  }

  .equip-category {
    margin: 0.5rem 0.8rem 0;
    font-size: 0.7rem;
  }

  .equip-card h3 {
    font-size: 1.05rem;
  }

  .equip-card p {
    font-size: 0.85rem;
  }

  .equip-section-title {
    font-size: 1.4rem;
    margin-top: 2rem;
  }

  /* Filter bar: full-width buttons for small screens */
  .equip-filter-bar {
    position: static;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .filter-btn {
    width: auto;
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
  }

  .detail-block img {
    height: 200px;
  }

  .detail-block h2 {
    font-size: 1.4rem;
    margin-top: 0.7rem;
  }

  .detail-block p {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}

/* ======================================================
   HERO CAROUSEL
====================================================== */

.hero {
  position: relative;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 50;
  transition: 0.25s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* TEXT ABOVE CAROUSEL */
.hero-inner {
  position: relative;
  z-index: 60;
  text-align: center;
  max-width: 750px;
  padding: 2rem;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,0.4);
}

.hero-title { color: #fff; }
.hero-highlight { color: var(--gold); }
.hero-subtitle { color: #e5e7eb; }

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero { height: 360px; }

  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}


.equip-card img {
  height: 250px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.equip-card:hover {
  transform: translateY(-5px);
  transition: .3s;
}

/* MODAL IMAGE RESPONSIVENESS */
.carousel-image,
.modal-body img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Large screens (default) */
@media (min-width: 1200px) {
  .modal-body img {
    height: 450px;
    object-fit: cover;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .modal-body img {
    height: 350px;
    object-fit: cover;
  }
}

/* Small tablets & big phones */
@media (max-width: 768px) {
  .modal-body img {
    height: 280px;
    object-fit: contain;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .modal-body {
    padding: 1rem;
  }

  .modal-dialog {
    margin: 0.5rem;
  }

  .modal-body img {
    height: 220px;
    object-fit: contain;
  }

  .carousel-control-prev,
  .carousel-control-next {
    transform: translateY(-50%) scale(0.8);
  }
}

/* Transparent Navbar */
.transparent-nav {
  position: absolute;
  top: 0;
  width: 100%;
  background: transparent !important;
  color: white;
  z-index: 50;
}

.hero-img {
  height: 85vh;
  object-fit: cover;
  filter: brightness(75%);
}

.hero-carousel-container {
  position: relative;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 20;
  width: 100%;
  max-width: 900px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero-highlight {
  color: #d4a825;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
}

/* Hero Buttons */
.btn.primary { background: #d4a825; color: white; }
.btn.outline { border: 2px solid white; color: white; }

/* Carousel Arrows */
.hero-arrow {
  background-color: rgba(255,255,255,0.7);
  padding: 18px;
  border-radius: 50%;
}

/* Navbar Scroll Effect */
.scrolled {
  background: #ffffff !important;
  color: black !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.brand-name2{
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #000;  
}

/* .main-nav2{
  text-decoration: none;
  font-size: 17px;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  color: #000;
} */



/* MOBILE NAVIGATION */
@media (max-width: 768px) {

  .nav-toggle {
    display: flex !important;
    cursor: pointer;
    z-index: 9999;
  }

  .main-nav,
  .main-nav2 {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 200px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 14px;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 9998;
  }

  .main-nav.open,
  .main-nav2.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a,
  .main-nav2 a {
    color: #000 !important;
    font-size: 1rem;
  }
}

/* ===========================
   MOBILE NAV TOGGLE FIX
=========================== */

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.5); /* Visible on hero */
  border-radius: 8px;
  border: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 9999;
}

.nav-toggle span {
  width: 22px;
  height: 3px;
  background: #fff;  /* White lines */
  border-radius: 4px;
}

/* Show toggle at mobile size */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 10px;
    background: #fff;
    width: 70%;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    gap: 1rem;
    z-index: 999;
  }

  .main-nav a {
    color: #111 !important;
  }
}

/* When navbar is scrolled */
.scrolled .nav-toggle {
  background: rgba(255,255,255,0.85);
}

.scrolled .nav-toggle span {
  background: #111;
}
/* NAVBAR */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  background: transparent;
  transition: 0.35s ease;
}

.nav-container.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BRAND */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo {
  width: 130px;
  height: 130px;
}

.brand-text span {
  display: block;
  font-size: 25px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-container.scrolled .brand-text span {
  color: #111;
}

/* DESKTOP NAV */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: white;
  transition: 0.3s;
}

.nav-link:hover {
  color: #d4a825;
}

.nav-container.scrolled .nav-link {
  color: #111;
}

.nav-cta {
  background: #d4a825;
  color: white !important;
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 600;
  border: none;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  width: 36px;
  height: 30px;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 4px;
  background: white;
  border-radius: 10px;
  transition: 0.3s;
}

.nav-container.scrolled .nav-toggle span {
  background: #111;
}

/* Mobile Menu */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding-top: 100px;
    gap: 24px;
    transition: 0.4s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link,
  .nav-cta,
  .nav-link1 {
    color: #111 !important;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}


.nav-link1{
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  transition: 0.3s;
}

.nav-link1:hover {
  color: #d4a825;
}

.nav-container.scrolled .nav-link1 {
  color: #111;
}

.brand-text2 span{
  display: block;
  font-size: 25px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rest-body{
  padding-top: 120px;
}


/* WhatsApp Floating Button */
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 22px;
  right: 22px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  z-index: 999;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease;
}
.whatsapp_float:hover {
  transform: scale(1.08);
}
.whatsapp-icon {
  margin-top: 13px;
}


/* ========================= */
/* Stats Section */
/* ========================= */
.stats-section {
  padding: 60px 0;
  background: #fff;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
}

.stat-item {
  flex: 1;
  min-width: 180px;
}

.stat-value {
  font-size: 54px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  font-weight: 500;
  color: #ffee00; /* same orange as your website */
  line-height: 1.4;
}

/* Vertical dividers */
.divider {
  width: 1px;
  height: 80px;
  background: #cfcfcf;
}

@media (max-width: 768px) {
  .stats-grid {
    gap: 2rem;
  }
  .divider {
    display: none;
  }
}


/* FLEX GALLERY */
.gallery-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  justify-content: center;
  padding-top: 1rem;
}

.gallery-card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  width: calc(33.33% - 1.8rem);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 1rem;
  transition: 0.3s;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-card p {
  font-size: 0.95rem;
  margin-top: 0.7rem;
  color: #555;
}

@media (max-width: 991px) {
  .gallery-card {
    width: calc(50% - 1.2rem);
  }
}

@media (max-width: 576px) {
  .gallery-card {
    width: 100%;
  }

  .gallery-card img {
    height: 200px;
  }
}

.gallery-card video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* PLANTS PAGE */
.plant-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 1rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.plant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,.12);
}

.plant-image {
  width: 100%;
  height: 220px;
  background: #f2f2f2;
}

.plant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plant-card h3 {
  margin: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}
.tops-plant{
  padding-top: 120px;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-highlights {
  list-style: none;
  padding: 0;
}

.about-highlights li {
  margin-bottom: 8px;
  font-weight: 500;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.aboutsec2{
  padding-left: 40px;
}

/* MOBILE HERO FIX */

@media (max-width: 768px) {

.hero-title{
    font-size: 32px;
    line-height: 1.2;
    padding: 0 15px;
}

.hero-highlight{
    font-size: 34px;
}

.hero-subtitle{
    font-size: 16px;
}

}

@media (max-width: 768px){

.hero-buttons{
    flex-direction: column;
    gap: 12px;
}

.hero-buttons a{
    width: 80%;
    margin: auto;
}

}

@media (max-width: 768px){

.hero-section{
    min-height: 85vh;
    padding-top: 120px;
}

}

@media (max-width:768px){

.nav-container{
    padding: 10px 15px;
}

}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: white;
  transition: 0.3s ease;
  text-decoration: none;
}

.floating-social {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column; /* stack vertically */
  gap: 15px;
  z-index: 999; /* stays above everything */
}

.icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Instagram */
.instagram {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.instagram:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #d62976;
}

/* YouTube */
.youtube {
  background: #ff0000;
}

.youtube:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px red;
}