body {
  background: #000;
  font-family: system-ui, sans-serif;
}

.hero-section {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Overlay for better readability */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 75vh;           /* shorter on mobile */
    padding: 80px 20px 60px;
  }

  .hero-section h1,
  .hero-section h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-section p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 12px;
  }
}

/* ================= GLASS NAVBAR (PURE GLASS + OUTER HIGHLIGHT) ================= */

.glass-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
  
    /* PURE GLASS */
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  
    border-radius: 15px;
    padding: 10px 20px;
  
    /* VERY subtle outer highlight only */
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
      0 0 0 1px rgba(13,110,253,0.18), /* outer ring */
      0 12px 30px rgba(0,0,0,0.45);   /* depth */
  
    z-index: 999;
  }

  /* ================= NAVBAR LOGO (CONTROLLED SIZE) ================= */

.navbar-logo {
  height: 50px;        /* ideal premium navbar size */
  max-height: 50px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .navbar-logo {
    height: 24px;
    max-height: 24px;
  }
}

  
 /* ================= NAVBAR LINK SIZE UPGRADE ================= */

.glass-navbar .nav-link {
  font-size: 10rem;          /* increase text size */
  font-weight: 500;
  padding: 5px 7px;       /* larger click area */
  letter-spacing: 0.3px;
}

/* Slight emphasis on active */
.glass-navbar .nav-link.active {
  font-weight: 600;
}

/* Desktop refinement */
@media (min-width: 992px) {
  .glass-navbar .nav-link {
    font-size: 1.05rem;
    padding: 12px 16px;
  }
}
@media (max-width: 768px) {
  .glass-navbar .nav-link {
    font-size: 0.95rem;
    padding: 10px 12px;
  }
}

  
  /* ================= RESPONSIVE ================= */
  
  @media (max-width: 991px) {
    .glass-navbar {
      width: calc(100% - 20px);
      padding: 10px 15px;
    }
  }
  
  @media (max-width: 768px) {
    .glass-navbar {
      box-shadow:
        0 0 0 1px rgba(13,110,253,0.12),
        0 8px 20px rgba(0,0,0,0.4);
    }
  }

  /* ================= HERO IMAGE ROTATOR ================= */

.hero-section {
  min-height: 100vh;
  position: relative;
}

/* background image layer */
.hero-images {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* individual images */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* active image */
.hero-img.active {
  opacity: 1;
}

/* keep content above images */
.hero-content,
.blob-container,
.circular-brand {
  position: relative;
  z-index: 2;
}

/* subtle dark overlay for readability */
.hero-images::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

  
  /* ================= TIMELINE LAYOUT ================= */
  
  .timeline-section {
    position: relative;
    padding: 80px 0;
    background: #000;
  }
  
  .timeline-item {
    max-width: 600px;
    margin: 80px auto;
    text-align: center;
  }
  
  .timeline-date {
    color: #0d6efd;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  
  .timeline-item h5 {
    margin-bottom: 10px;
  }
  
  .timeline-item p {
    color: rgb(236, 225, 225);
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  /* ================= FOOTER ================= */
  
  .footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
/* ================= CIRCULAR BRAND TEXT ================= */

/* ================= CIRCULAR BRAND (FIXED, LEFT-BOTTOM) ================= */

.circular-brand {
  position: fixed;          /* stays in place on scroll */
  bottom: 40px;
  left: 40px;               /* LEFT side */
  width: 150px;             /* reduced size */
  height: 150px;            /* reduced size */
  pointer-events: none;
  z-index: 50;              /* stays above background, below navbar */
}

.circular-brand svg {
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
  animation-direction: reverse;
}

.circular-brand text {
  fill: rgba(255,255,255,0.85);
  font-size: 14px;          /* slightly smaller text */
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(13,110,253,0.35);
}

/* Rotation */
@keyframes spin {
  from {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
  }
  to {
    transform: rotate(360deg);
    transform-origin: 50% 50%;
  }
}

/* Mobile safety */
@media (max-width: 768px) {
  .circular-brand {
    display: none;
  }
}


.circular-brand {
  opacity: 0.9;
}
@media (min-width: 1400px) {
  .circular-brand {
    transform: scale(1.05);
  }
}

      
      
/* ================= BRAND MARQUEE HOME ================= */

.brand-marquee {
  overflow: hidden;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

/* Track */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

/* Item */
.marquee-track span {
  display: inline-flex;              /* ⭐ key change */
  align-items: center;               /* vertical centering */
  gap: 14px;                         /* spacing between elements */
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  padding-right: 60px;
}

/* Inline logo */
.marquee-logo {
  height: 20px;                      /* premium size */
  width: auto;
  opacity: 0.9;
  filter: grayscale(100%);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Logo hover polish */
.brand-marquee:hover .marquee-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* Pause animation on hover */
.brand-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Star styling */
.star {
  color: #0d6efd;
  font-size: 1.1em;
}

/* CTA spacing */
.cta-section {
  padding-bottom: 120px;   /* premium spacing */
}

/* Marquee animation */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
  position: fixed;
  bottom: 210px;          /* desktop position */
  left: 40px;
  width: 48px;
  height: 48px;

  background: #25D366;
  color: #fff;
  border-radius: 50%;

  display: grid;
  place-items: center;

  z-index: 1000;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.15);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse 3.5s infinite;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

/* Hover (desktop only) */
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.2);
}

/* Tooltip (desktop only) */
.whatsapp-float::after {
  content: "Chat on WhatsApp";
  position: absolute;
  left: 60px;
  white-space: nowrap;

  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;

  opacity: 0;
  transform: translateX(-5px);
  transition: 0.25s ease;

  pointer-events: none;
}

.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 18px;       /* thumb-friendly */
    right: 18px;
    left: auto;

    width: 52px;
    height: 52px;

    animation: none;    /* stop pulse on mobile */
  }

  .whatsapp-float::after {
    display: none;      /* no tooltip on mobile */
  }
}

/* ================= PULSE ================= */

@keyframes pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(37,211,102,0.4),
      0 8px 24px rgba(0,0,0,0.35);
  }
  70% {
    box-shadow:
      0 0 0 10px rgba(37,211,102,0),
      0 8px 24px rgba(0,0,0,0.35);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(37,211,102,0),
      0 8px 24px rgba(0,0,0,0.35);
  }
}


/* ================= FEATURED RICE ================= */

.featured-rice-section {
  padding: 120px 0 120px;
  background: #000000;
}

.featured-rice-text {
  max-width: 480px;
  color: rgb(255, 251, 251);
  line-height: 1.7;
}

.featured-rice-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.featured-rice-image img {
  width: 100%;
  display: block;
}
/* ================= PRODUCT CARDS HOME ================= */

.product-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 16px;
}

.product-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}


  
/* ================= ABOUT HERO (SMALL) ================= */

.about-hero-small {
    padding: 120px 0 80px;
    background: #000;
  }
  
  .about-hero-small h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
  }
  
  .about-hero-subtitle {
    color: rgba(255,255,255,0.65);
    margin-top: 10px;
    font-size: 0.95rem;
  }
  /* ================= FAMILY PHOTO SECTION ================= */

.family-photo-section {
    background: #000;
    padding-bottom: 100px;
  }
  
  .family-photo-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
  }
  
  .family-photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ================= IMAGE TILT EFFECT ================= */

.tilt-card {
  perspective: 1000px;
}

.tilt-card img {
  width: 100%;
  height: auto;
  display: block;

  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
  border-radius: 24px;
}

  
  
  /* ================= TEAM SECTION ================= */
  
  .team-section {
    background: rgb(50, 51, 52);
    color: #111;
  }
  
  .team-subtitle {
    color: #666;
    font-size: 0.95rem;
  }
  
  .team-card {
    text-align: center;
  }
  
  .team-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
  }
  
  .team-card h5 {
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .team-card span {
    font-size: 0.85rem;
    color: #777;
  }
  
  /* subtle hover (NO glow) */
  .team-card:hover img {
    transform: scale(1.05);
  }

  /* ================= TIMELINE ================= */

.timeline-section {
    background: #000;
  }
  
  .timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
  }
  
  /* Central vertical line */
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255,255,255,0.12);
    transform: translateX(-50%);
  }
  
  /* Row */
  .timeline-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
  }
  
  /* Dot */
  .timeline-dot {
    width: 14px;
    height: 14px;
    background: #0d6efd;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }
  
  /* Content */
  .timeline-content {
    width: 45%;
    padding: 28px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
  }
  
  .timeline-content h5 {
    color: #fff;
    margin-bottom: 8px;
  }
  
  .timeline-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .timeline-date {
    color: #0d6efd;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  
  /* Alignment */
  .timeline-content.left {
    margin-right: auto;
  }
  
  .timeline-content.right {
    margin-left: auto;
  }
  
  /* ================= MOBILE ================= */
  
  @media (max-width: 768px) {
    .timeline::before {
      left: 8px;
    }
  
    .timeline-row {
      flex-direction: column;
      align-items: flex-start;
      padding-left: 30px;
    }
  
    .timeline-dot {
      position: absolute;
      left: 0;
      top: 20px;
    }
  
    .timeline-content {
      width: 100%;
    }
  }

  .timeline-content {
    transition: transform 0.4s ease;
  }
  
  .timeline-content:hover {
    transform: translateY(-4px);
  }
  
  
  



/* ================= SERVICES SECTION ================= */

.services-section {
  background: #000;
  padding: 120px 0;
}

/* Subtitle */
.services-subtitle {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 10px auto 0;
  font-size: 0.95rem;
}

/* ================= LEFT IMAGE ================= */

.services-image-wrapper {
  border-radius: 22px;
  overflow: hidden;
}

.services-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= RIGHT STACK ================= */

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 28px; /* premium vertical spacing */
}

/* ================= SERVICE CARDS ================= */

.service-card {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 32px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s ease;
}

.service-card h5 {
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Subtle movement */
.service-card:hover {
  transform: translateY(-4px);
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .services-section {
    padding: 80px 0;
  }

  .services-image-wrapper {
    margin-bottom: 40px;
  }

  .services-stack {
    gap: 22px;
  }

  .service-card:hover {
    transform: none;
  }
}



  /* ================= PRODUCTS HERO ================= */

.product-hero-small {
  background: #000;
  padding: 120px 0 80px;
  margin-bottom: 0;
}

.product-hero-small .container {
  text-align: center;
}

.product-hero-small h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.product-hero-subtitle {
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  font-size: 0.95rem;
  max-width: 520px;
  margin-inline: auto;
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
  background: #000; /* black theme */
  padding: 32px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;

  animation: marquee 35s linear infinite;
  transition: animation-play-state 0.4s ease,
              animation-duration 0.4s ease;
}

/* Logo styling */
.marquee-track img {
  height: 60px;          /* uniform visual height */
  width: auto;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.marquee-track img:hover {
  opacity: 1;
}

/* Hover behavior */
.brand-marquee:hover .marquee-track {
  animation-duration: 90s;      /* slows down */
  animation-play-state: paused; /* comes to full stop */
}

/* Animation */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ================= PRODUCTS GRID ================= */

.products-section {
  background: #000;
  margin-bottom: 20px;
}

.product-card {
  background: #0b0b0b;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h6 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0;
}

/* ================= CTA ================= */

/* ================= CTA SECTION ================= */

.cta-section {
  background: #000;
  padding: 100px 20px;
}

/* Text container control */
.cta-section .container {
  max-width: 720px;
}

/* Headline */
.cta-section h2 {
  font-size: 2.4rem;
  line-height: 1.2;
}

/* Subtitle */
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
}

/* Button */
.cta-section .btn {
  padding: 14px 34px;
  font-size: 1rem;
  border-radius: 10px;
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {
  .cta-section {
    padding: 70px 16px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 0.95rem;
    margin-top: 12px;
  }

  .cta-section .btn {
    margin-top: 24px;
    padding: 12px 26px;
    font-size: 0.95rem;
  }
}



/* ================= FEATURED BRAND SECTION ================= */

.featured-brand-section {
  background: radial-gradient(
    circle at center,
    rgba(212,175,55,0.08),
    #000 70%
  );
  padding: 50px 0 150px;
  overflow: hidden;
}

/* ================= FEATURED WRAPPER ================= */

.featured-brand-wrapper {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 28px;
  perspective: 1200px;

  isolation: isolate;
  overflow: visible;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.featured-brand-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= GOLD RAYS (ENHANCED & PREMIUM) ================= */

.gold-rays {
  position: absolute;
  inset: -30%;
  z-index: 0;
  pointer-events: none;

  /* Primary glow */
  background:
    radial-gradient(
      circle at center,
      rgba(255,215,100,0.75) 0%,
      rgba(212,175,55,0.55) 22%,
      rgba(212,175,55,0.32) 42%,
      rgba(212,175,55,0.14) 58%,
      rgba(212,175,55,0.05) 68%,
      rgba(0,0,0,0) 75%
    );

  filter: blur(65px);
  opacity: 0.9;
  mix-blend-mode: screen;

  animation: goldPulse 6s ease-in-out infinite alternate;
}

/* Secondary depth layer */
.gold-rays::after {
  content: "";
  position: absolute;
  inset: 10%;
  background:
    radial-gradient(
      circle at center,
      rgba(255,200,80,0.55),
      rgba(212,175,55,0.15),
      transparent 65%
    );
  filter: blur(45px);
  opacity: 0.85;
}

/* Subtle breathing motion */
@keyframes goldPulse {
  from {
    transform: scale(0.96);
    opacity: 0.75;
  }
  to {
    transform: scale(1.06);
    opacity: 1;
  }
}

/* Hover intensification */
.featured-brand-wrapper:hover .gold-rays {
  opacity: 1;
  filter: blur(25px);
}

/* ================= FEATURED IMAGE ================= */

.featured-brand-image {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  border-radius: 22px;

  box-shadow:
    0 35px 90px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(255,255,255,0.06);

  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
/* ================= BRAND HEADING ================= */

.brand-heading {
  text-align: center;
  margin-bottom: 48px;
}

.brand-title {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;

  background: linear-gradient(
    135deg,
    #f7e7b3,
    #d4af37,
    #b8962e,
    #f7e7b3
  );

  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;

  text-shadow:
    0 1px 0 rgba(255,255,255,0.25),
    0 -1px 0 rgba(0,0,0,0.8),
    0 8px 20px rgba(0,0,0,0.6);
}

.brand-subtitle {
  margin-top: 8px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.brand-kannada {
  margin-top: 6px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}



/* ================= CONTACT ================= */

/* ================= CONTACT HERO (SMALL, PREMIUM) ================= */

.contact-hero-small {
  padding: 120px 0 80px;
  background: #000;
  align-items: center;
}
.contact-hero-small .container {
  text-align: center;
  width: 100%;
}
.contact-hero-small h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-hero-subtitle {
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  font-size: 0.95rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}


.contact-hero {
  background: #000;
}


/* ---------- LEFT INFO BLOCK ---------- */

/* ---------- LEFT BUSINESS INFO CARD (PREMIUM) ---------- */

.contact-info-card {
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 44px 40px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* spacing for title */
.contact-info-card h3 {
  margin-bottom: 24px;
}

/* refine spacing inside info */
.contact-block p {
  line-height: 1.75;
  margin-bottom: 4px;
}

/* clearer grouping */
.contact-block .section-gap {
  margin-top: 20px;
}

/* stronger name presence */
.contact-block .business-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2px;
}


/* ---------- FORM CARD ---------- */

.contact-form-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 44px 40px;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-form-card h4 {
  margin-bottom: 28px;
}

.contact-form-card .form-control {
  padding: 14px 16px;
  border-radius: 10px;
}

.contact-form-card textarea {
  resize: none;
}

/* ---------- MAP ---------- */

.map-wrapper {
  overflow: hidden;
  border-radius: 18px;
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ---------- SECTION SPACING ---------- */

.contact-spacing {
  padding: 10px 0;
}

@media (max-width: 768px) {
  .contact-spacing {
    padding: 80px 0;
  }

  .contact-form-card {
    padding: 32px 26px;
  }
}



  /* ================= DARK THEME TEXT FIX ================= */

/* Improve muted text visibility on dark backgrounds */
body {
    color: #f1f1f1;
  }
  
  .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
  }
  .page-header p,
  .lead,
  .small,
  .contact-block p {
    color: rgba(255, 255, 255, 0.7);
  }
    
  /* ================= THEME VARIABLES ================= */

:root {
    --bg-color: #000;
    --text-color: #fff;
    --muted-text: rgba(255,255,255,0.65);
    --card-bg: rgba(255,255,255,0.04);
  }
  
  body {
    background: var(--bg-color);
    color: var(--text-color);
  }
  
  /* Light mode overrides */
  body.light-mode {
    --bg-color: #f8f9fa;
    --text-color: #111;
    --muted-text: #555;
    --card-bg: #fff;
  }
  
  /* Apply variables */
  .text-muted {
    color: var(--muted-text) !important;
  }
  
  .service-card,
  .contact-form-card,
  .timeline-content {
    background: var(--card-bg);
  }
  
  /* ================= TOGGLE BUTTON ================= */
  
  .theme-toggle-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  body.light-mode .theme-toggle-btn {
    color: #111;
    border-color: rgba(0,0,0,0.3);
  }
  
  .theme-toggle-btn:hover {
    background: rgba(255,255,255,0.1);
  }
  
 /* ================= BRAND FOOTER ================= */
.brand-footer {
  position: relative;
  background: #0b0b0b;
  color: #ffffff;
  padding: 100px 8%;
  overflow: hidden;
}

.brand-footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT */
.brand-footer-left {
  max-width: 480px;
}

.brand-main {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1;
}

.brand-sub {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 6px;
  opacity: 0.9;
}

.brand-tagline {
  margin-top: 10px;
  font-size: 14px;
  color: #b5b5b5;
}

.brand-footer-meta {
  margin-top: 30px;
  font-size: 13px;
  color: #9a9a9a;
  line-height: 1.6;
}

/* RIGHT LINKS */
.brand-footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-links-column h6 {
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-links-column a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-column a:hover {
  color: #ffffff;
}

/* BACKGROUND WATERMARK */
.brand-watermark {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-size: 200px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 10px;
  z-index: 1;
  pointer-events: none;
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
  background: #000000;
  text-align: center;
  padding: 16px 0;
  font-size: 13px;
  color: #9a9a9a;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .brand-main {
    font-size: 48px;
  }

  .brand-watermark {
    font-size: 120px;
  }

  .brand-footer-content {
    flex-direction: column;
  }
}
.footer-bottom a.whatsapp-link {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom a.whatsapp-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}


