/* Black & Gold theme variables */
:root{
    --bg: #0b0b0b;
    --panel: #0f0f10;
    --gold: #d4af37;    /* primary gold */
    --gold-2: #b88f2f;  /* darker gold */
    --muted: #bfbfbf;
    --accent: #f6e7b1;
    --max-width: 1100px;
    --radius: 12px;
  }
  
  *{box-sizing:border-box}
  html,body{height:100%;}
  body{
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: white;
    margin:0;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.5;
  }
  
  .container{
    width:90%;
    max-width:var(--max-width);
    margin:0 auto;
  }
  
  /* Header */
  .site-header{
    position:sticky;
    top:0;
    z-index:40;
    background: linear-gradient(180deg, rgba(11,11,11,0.9), rgba(11,11,11,0.7));
    border-bottom: 1px solid rgba(255,215,0,0.06);
  }
  .header-inner{
    display:flex;
    align-items:center;
    gap:20px;
    padding:14px 0;
  }
  .logo{
    color:var(--gold);
    font-weight:700;
    font-size:1.25rem;
  }
  .nav{margin-left:auto; display:flex; align-items:center;}
  .nav ul{display:flex; gap:18px; list-style:none; margin:0; padding:0; align-items:center;}
  .nav a{color:var(--muted); font-weight:500; font-size:0.95rem;}
  .nav a:hover{color:var(--gold);}
  
  /* CTA */
  .cta{
    margin-left:16px;
    background:linear-gradient(90deg,var(--gold),var(--gold-2));
    color:#0b0b0b;
    padding:8px 14px;
    border-radius:8px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 6px 18px rgba(212,175,55,0.12);
  }
  
  /* Mobile toggle */
  .menu-toggle{display:none; background:none; border:none; color:var(--muted); font-size:1.35rem;}
  
  /* HERO */
  .hero{
    padding:64px 0;
    background:
      radial-gradient(800px 400px at 10% 10%, rgba(212,175,55,0.06), transparent 8%),
      radial-gradient(700px 300px at 90% 80%, rgba(255,215,0,0.03), transparent 6%),
      linear-gradient(180deg, #060606 0%, #0b0b0b 100%);
  }
  .hero-inner{
    display:grid;
    grid-template-columns: 1fr 420px;
    gap:28px;
    align-items:center;
  }
  .hero h1{
    font-size:2.25rem;
    line-height:1.05;
    margin:0 0 12px 0;
    color:var(--gold);
    text-shadow:0 6px 18px rgba(0,0,0,0.6);
  }
  .hero p{color:var(--muted); margin-bottom:18px; max-width:640px;}
  .hero-actions{display:flex; gap:12px; align-items:center; margin-bottom:14px;}
  .btn{display:inline-block; padding:10px 16px; border-radius:10px; text-decoration:none; font-weight:700;}
  .btn-gold{background:linear-gradient(90deg,var(--gold),var(--gold-2)); color:#0b0b0b;}
  .btn-outline{border:1px solid rgba(255,215,0,0.12); color:var(--muted); background:transparent; padding:9px 14px;}
  .trust{list-style:none; display:flex; gap:14px; margin-top:14px; color:var(--muted); padding:0;}
  
  /* Hero image */
  .hero-image{display:flex; justify-content:center;}
  .hero-image img{width:100%; max-width:360px; border-radius:16px; border:1px solid rgba(255,215,0,0.06);}
  
  /* Sections */
  .section{padding:56px 0;}
  .section.alt{background:linear-gradient(180deg, rgba(255,215,0,0.02), transparent);}
  
  /* Headings */
  h2{color:var(--gold); font-size:1.75rem; margin-bottom:18px;}
  
  /* Services */
  .services-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px;}
  .card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); padding:18px; border-radius:var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,0.6); border:1px solid rgba(255,215,0,0.04);}
  .card h3{margin:0 0 8px 0; color:var(--gold);}
  .card p{color:var(--muted); margin-bottom:12px;}
  .card-foot{display:flex; justify-content:space-between; align-items:center;}
  .price{font-weight:800; color:var(--gold);}
  
  /* About */
  .about-inner{display:grid; grid-template-columns: 1fr 380px; gap:28px; align-items:center;}
  .about-img img{width:100%; border-radius:12px; border:1px solid rgba(255,215,0,0.04);}
  
  /* Testimonials */
  .testimonials{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
  .testimonial{background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent); padding:18px; border-radius:12px; color:var(--muted); border:1px solid rgba(255,215,0,0.03);}
  
  /* Contact */
  .contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
  .contact-card{background:linear-gradient(180deg, rgba(255,255,255,0.01), transparent); padding:18px; border-radius:12px; border:1px solid rgba(255,215,0,0.03);}
  input, textarea{
    background: rgba(255,255,255,0.02);
    color: white;
    border:1px solid rgba(255,255,255,0.04);
    padding:10px;
    border-radius:8px;
    width:100%;
  }
  input::placeholder, textarea::placeholder{color:rgba(255,255,255,0.4);}
  .form-status{margin-top:10px; color:var(--accent); font-weight:600;}
  
  /* Footer */
  .site-footer{padding:18px 0; border-top:1px solid rgba(255,215,0,0.03); margin-top:24px;}
  .footer-inner{display:flex; justify-content:space-between; align-items:center; gap:16px; color:var(--muted); font-size:0.95rem;}
  .footer-inner a{color:var(--muted); text-decoration:none; margin-left:12px;}
  .footer-inner a:hover{color:var(--gold);}
  
  /* Accessibility helper */
  .sr-only{position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap;}
  
  /* Responsiveness */
  @media (max-width: 900px){
    .hero-inner{grid-template-columns: 1fr; text-align:center;}
    .about-inner{grid-template-columns: 1fr; text-align:center;}
    .hero-image{order: -1;}
    .testimonials{grid-template-columns: 1fr;}
    .contact-grid{grid-template-columns:1fr;}
    .hero h1{font-size:1.75rem;}
    .nav{display:none;}
    .menu-toggle{display:block; margin-left: auto; background:none; border:none; color:var(--muted); font-size:1.4rem;}
    .cta{display:none;}
  }
  
  /* Mobile menu visible when active (class added by JS) */
  .nav.open{display:block; position:absolute; left:0; right:0; top:64px; background:rgba(5,5,5,0.98); padding:14px 0; border-top:1px solid rgba(255,215,0,0.03);}
  .nav.open ul{flex-direction:column; gap:8px; align-items:flex-start; padding:8px 16px;}

  
  /* ---------- Full-width double-image hero ---------- */
.hero.hero-fullwidth {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000; /* fallback background */
}

.hero-fullwidth .hero-images {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100vh; /* full viewport height */
}

.hero-fullwidth .hero-img {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-fullwidth .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 6s ease, opacity 1s ease;
}

/* optional subtle zoom animation */
.hero-fullwidth .hero-img img:hover {
  transform: scale(1.03);
}

/* mobile: stack vertically */
@media (max-width: 900px) {
  .hero-fullwidth .hero-images {
    flex-direction: column;
    height: auto;
  }
  .hero-fullwidth .hero-img {
    height: 60vh; /* each image tall on mobile */
  }
}
/* ---------- Full-bleed two-column hero (edge-to-edge) ---------- */

/* Reset any wrapper spacing for a true full-bleed */
.hero-fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw); /* centers full-bleed even inside a constrained page wrapper */
  margin-right: calc(50% - 50vw);
  background: #000; /* fallback */
  overflow: hidden;
}

/* row that contains the two images */
.hero-fullbleed .hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 0; /* no gap for seamless join */
  width: 100%;
  min-height: 68vh; /* adjust - full-screen feeling */
  height: 100%;
}

/* each column is a picture wrapper for responsive srcset */
.hero-fullbleed .hero-col {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 68vh;
}

/* the actual image fills the column */
.hero-fullbleed .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* default */
  display: block;
  transition: transform 6s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

/* subtle slow zoom (remove if you prefer static) */
.hero-fullbleed .hero-col:hover .hero-img { transform: scale(1.02); }

/* cropping focus helpers - tweak which part of image is visible */
.hero-fullbleed .hero-img.focus-center { object-position: center center; }
.hero-fullbleed .hero-img.focus-top    { object-position: center top; }
.hero-fullbleed .hero-img.focus-bottom { object-position: center bottom; }
.hero-fullbleed .hero-img.focus-left   { object-position: left center; }
.hero-fullbleed .hero-img.focus-right  { object-position: right center; }

/* Stack vertically on phones, keep images tall and visible */
@media (max-width: 900px) {
  .hero-fullbleed {
    margin-left: 0;  /* inside small screens keep normal flow (optional) */
    margin-right: 0;
  }
  .hero-fullbleed .hero-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-fullbleed .hero-col { min-height: 56vh; } /* first image ~56vh, second ~56vh */
}

/* Option: add thin gold divider between columns for aesthetics */
.hero-fullbleed .hero-row::before {
  content: "";
  position: absolute;
  top: 8vh;
  bottom: 8vh;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(212,175,55,0.0), rgba(212,175,55,0.15), rgba(212,175,55,0.0));
  pointer-events: none;
  transform: translateX(-0.5px);
  z-index: 2;
}
/* hide divider on small screens */
@media (max-width: 900px) {
  .hero-fullbleed .hero-row::before { display: none; }
}
/* ===== Mobile-friendly hero fixes ===== */
@media (max-width: 900px) {
  /* Remove the full-bleed centering trick on small screens so hero stays visible */
  .hero-fullbleed {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    overflow: visible;
  }

  /* Stack images vertically and give each a definite visible height */
  .hero-fullbleed .hero-row {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;      /* allow columns to size naturally */
  }

  /* Ensure each column has a visible height (adjust 48vh to taste) */
  .hero-fullbleed .hero-col {
    min-height: 48vh;   /* each image ~48% of viewport height on mobile */
    height: auto;
    display: block;
  }

  /* Make images fallback to auto height if their container collapses */
  .hero-fullbleed .hero-img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;   /* keep cover behavior */
    object-position: center center;
    display: block;
  }

  /* If an image fails to load, show a visible dark placeholder block */
  .hero-fullbleed .hero-col::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    pointer-events: none;
    opacity: 0;          /* keep invisible normally */
  }

  /* remove decorative divider on mobile */
  .hero-fullbleed .hero-row::before { display: none; }
}


/* --- Services Section --- */
.services-section {
  background-color: #0b0b0b; /* black background */
  color: #fff;
  padding: 60px 20px;
}

.section-title {
  color: #d4af37; /* gold */
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* each card */
.service-card {
  background: #fff;
  color: #222;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid #d4af37;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.whatsapp-btn i {
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .service-card {
    padding: 20px;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Services Section (Dark Blue background, white cards) --- */
.services-section {
  background-color: #15213b; /* dark navy-blue background */
  color: #fff;
  padding: 70px 20px;
}

.section-title {
  color: #f7b500; /* gold-yellow heading */
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* Grid layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Service card */
.service-card {
  background-color: #fff;
  color: #111;
  padding: 25px;
  border-radius: 8px;
  border-bottom: 4px solid #e91e63; /* pink underline */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25);
}

/* Headings inside cards */
.service-card h3 {
  color: #f7b500; /* gold/yellow heading */
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: capitalize;
}

/* Paragraph text */
.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #222;
  margin-bottom: 20px;
}

/* WhatsApp button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

.whatsapp-btn i {
  font-size: 1.2rem;
}

/* Responsive layout */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .service-card {
    padding: 20px;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ---------- About Section ---------- */
.about-section {
  background-color: #0b0b0b; /* black background */
  color: #fff;
  padding: 70px 20px;
}

.about-section .section-title {
  text-align: center;
  color: #d4af37; /* gold */
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Images row */
.about-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.about-img {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Zoom effect */
.about-img:hover img {
  transform: scale(1.05);
}

/* Text area below images */
.about-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.about-text h3 {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.about-text p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button */
.btn-gold {
  display: inline-block;
  background: linear-gradient(90deg, #d4af37, #b88f2f);
  color: #0b0b0b;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-gold:hover {
  background: linear-gradient(90deg, #e8c44d, #d4af37);
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section {
    padding: 50px 15px;
  }
  .about-text h3 {
    font-size: 1.3rem;
  }
  .about-text p {
    font-size: 0.95rem;
  }
}


/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  line-height: 1;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999; /* stays on top */
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  background-color: #1ebe5d;
}

.whatsapp-float i {
  color: white;
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 15px;
    right: 15px;
  }
}

/* ---------- Top 3-Image Banner Section ---------- */
.top-banner {
  width: 100%;
  background-color: #0b0b0b; /* fallback black background */
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.banner-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0; /* seamless look */
}

.banner-img {
  position: relative;
  overflow: hidden;
  height: 260px; /* adjust height as you like */
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.banner-img:hover img {
  transform: scale(1.05); /* subtle zoom effect */
}

/* Responsive tweak for smaller screens */
@media (max-width: 768px) {
  .banner-img {
    height: 180px;
  }
}
/* ----------- Two-Image Banner Section ----------- */
.top-banner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #0b0b0b; /* fallback black background */
  overflow: hidden;
  z-index: 1;
}

.banner-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 0;
  width: 100%;
  overflow: hidden;
}

.banner-img {
  position: relative;
  overflow: hidden;
  height: 360px; /* adjust height to your liking */
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

/* Subtle hover zoom for elegance */
.banner-img:hover img {
  transform: scale(1.05);
}

/* ensure main content appears correctly below */
main {
  position: relative;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .banner-container {
    grid-template-columns: 1fr; /* stack vertically on tablet/mobile */
  }
  .banner-img {
    height: 250px;
  }
}
@media (max-width: 600px) {
  .banner-img {
    height: 200px;
  }
}

/* ---------- Two Image Banner Section ---------- */
.two-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #000; /* fallback background */
  overflow: hidden;
}

.banner-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* each image box */
.banner-box {
  flex: 1 1 50%;
  overflow: hidden;
  position: relative;
  max-height: 350px; /* control banner height */
}

/* images fill container nicely without cropping text */
.banner-box img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* <<< important: shows full banner without cutting */
  background-color: #000; /* behind transparent parts */
  display: block;
  transition: transform 0.4s ease;
}

.banner-box:hover img {
  transform: scale(1.03);
}

/* stack on mobile */
@media (max-width: 900px) {
  .banner-box {
    flex: 1 1 100%;
    max-height: 280px;
  }
}

/* smaller devices */
@media (max-width: 600px) {
  .banner-box {
    max-height: 220px;
  }
}


/* ---------- Header Styling ---------- */
.site-header {
  background-color: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37; /* gold */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: #d4af37; /* gold hover */
}

/* WhatsApp Button in Header */
.whatsapp-header {
  background-color: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-header i {
  font-size: 1.2rem;
}

.whatsapp-header:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* hidden on desktop */
}

/* Responsive */
@media (max-width: 900px) {
  .menu-toggle {
    display: block; /* show hamburger on mobile */
  }

  .nav {
    display: none; /* hidden by default on mobile */
    position: absolute;
    top: 65px;
    right: 0;
    background-color: #111;
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
  }

  /* keep WhatsApp button visible on mobile */
  .whatsapp-header {
    position: fixed;
    bottom: 15px;
    right: 15px;
    border-radius: 50%;
    padding: 14px;
    font-size: 0;
    z-index: 1000;
  }

  .whatsapp-header i {
    font-size: 24px;
  }

  .whatsapp-header span {
    display: none; /* hide text on mobile */
  }
}

/* ---------- Floating WhatsApp Button (Large & Modern) ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  width: 75px;          /* 🔹 Bigger size */
  height: 75px;         /* 🔹 Bigger size */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;      /* 🔹 Bigger icon */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Slight pulsing animation for visibility */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: pulse 2.5s infinite;
}

/* Responsive adjustments (smaller on mobile) */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 32px;
    bottom: 18px;
    right: 18px;
  }
}


/* ---------- Hero Section (Base styling stays same) ---------- */
.hero {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: white;
  padding: 80px 20px;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* ---------- Big WhatsApp Button in Hero ---------- */
.hero-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 35px; /* big size */
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  margin-top: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-whatsapp-btn i {
  font-size: 1.6rem;
}

.hero-whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* ---------- Trust List ---------- */
.trust {
  list-style: none;
  margin-top: 25px;
  padding: 0;
  color: #d4af37; /* gold text */
  font-weight: 500;
}

.trust li {
  margin-bottom: 6px;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-whatsapp-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    max-width: 300px;
  }
}

/* ---------- circular icon above each card title ---------- */
.service-card {
  background-color: #fff;
  color: #111;
  padding: 22px 22px 18px;
  border-radius: 8px;
  border-bottom: 4px solid #e91e63; /* existing pink underline */
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* circular image */
.card-icon {
  width: 96px;             /* desktop size */
  height: 96px;
  border-radius: 50%;
  object-fit: cover;       /* crop the image nicely */
  display: block;
  margin: 0 auto 14px;     /* centered above title */
  border: 4px solid #ffd89b; /* subtle gold border */
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* adjust spacing so title is slightly closer to icon */
.service-card h3 { 
  color: #f7b500; 
  font-size: 1.15rem;
  margin: 6px 0 12px;
  text-transform: capitalize;
}

/* keep paragraph same as before */
.service-card p {
  color: #222;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* whatsapp button kept same style - ensure it aligns left on desktop */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn:hover { background-color: #1ebe5d; transform: translateY(-2px); }

/* responsive: smaller icons and full-width btn on mobile */
@media (max-width: 768px) {
  .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  .service-card {
    padding: 18px;
  }
  .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ---------- Big WhatsApp Button Section ---------- */
.top-whatsapp-section {
  background: linear-gradient(90deg, #000000, #1a1a1a);
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);   /* gold accent line */
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* The main button */
.top-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 40px;      /* big and bold */
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

/* WhatsApp icon size */
.top-whatsapp-btn i {
  font-size: 1.6rem;
}

/* Hover effect */
.top-whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* Slight pulsing glow for visibility */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.top-whatsapp-btn {
  animation: pulse-glow 2.5s infinite;
}

/* Responsive */
@media (max-width: 600px) {
  .top-whatsapp-btn {
    font-size: 1.05rem;
    padding: 14px 28px;
  }
  .top-whatsapp-btn i {
    font-size: 1.4rem;
  }
}


/* ---------- Big WhatsApp Button in About Section ---------- */
.about-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 40px;      /* 🔹 Large size */
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  margin-top: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* WhatsApp icon */
.about-whatsapp-btn i {
  font-size: 1.6rem;
}

/* Hover animation */
.about-whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* Optional pulsing glow */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.about-whatsapp-btn {
  animation: pulse-glow 2.5s infinite;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .about-whatsapp-btn {
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
  }
  .about-whatsapp-btn i {
    font-size: 1.4rem;
  }
}


/* ---------- About Section ---------- */
.about-section {
  background-color: #0b0b0b;
  color: #fff;
  padding: 70px 20px;
}

.section-title {
  text-align: center;
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Images Row (two images) */
.about-images.two-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.about-img {
  flex: 1 1 500px;  /* responsive width */
  max-width: 600px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* images should show fully, not cropped */
.about-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* ensures full image visible */
  background: #000;    /* filler background */
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.03);
}

/* Text Area */
.about-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.about-text h3 {
  color: #d4af37;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.about-text p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Big WhatsApp Button */
.about-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  margin-top: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-whatsapp-btn i {
  font-size: 1.6rem;
}

.about-whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* Small Pulse Animation */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.about-whatsapp-btn {
  animation: pulse-glow 2.5s infinite;
}

/* Responsive Fixes */
@media (max-width: 900px) {
  .about-images.two-images {
    flex-direction: column;
    align-items: center;
  }
  .about-img {
    max-width: 90%;
  }
}


/* ---------- About Section ---------- */
.about-section {
  background-color: #0b0b0b;
  color: #fff;
  padding: 70px 20px;
}

.section-title {
  text-align: center;
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Images Row (2 images side-by-side on desktop) --- */
.about-images.two-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.about-img {
  flex: 1 1 500px;
  max-width: 600px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.about-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
  display: block;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.03);
}

/* --- Text Section --- */
.about-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  margin-top: 10px;
}

.about-text h3 {
  color: #d4af37;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.about-text p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* --- WhatsApp Button --- */
.about-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25d366;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  margin-top: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.about-whatsapp-btn i {
  font-size: 1.6rem;
}

.about-whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.about-whatsapp-btn {
  animation: pulse-glow 2.5s infinite;
}

/* ---------- Responsive Fixes ---------- */
@media (max-width: 900px) {
  .about-section {
    padding: 50px 15px;
  }

  .about-images.two-images {
    flex-direction: column;
    align-items: center;
    gap: 10px;               /* 🔹 smaller gap between stacked images */
    margin-bottom: 20px;     /* 🔹 tighter spacing below images */
  }

  .about-img {
    max-width: 100%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  }

  .about-text {
    margin-top: 10px;        /* 🔹 reduces extra white space */
  }

  .about-text h3 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-whatsapp-btn {
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
  }
}

/* ---------- Tighten vertical spacing on small screens ---------- */
@media (max-width: 900px) {

  /* Reduce large section paddings that create big gaps */
  .hero,
  .about-section,
  .services-section,
  .top-banner,
  .two-banner,
  .top-whatsapp-section {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  /* Prevent hero/banner forced full-viewport min-height on mobile */
  .hero-fullbleed,
  .hero,
  .hero-fullwidth,
  .two-banner,
  .top-banner {
    min-height: 0 !important;
    height: auto !important;
  }

  /* Clamp banner & about images so they don't create huge vertical blocks */
  .banner-img,
  .banner-box,
  .about-img {
    max-height: 220px !important;   /* choose 180-260 to taste */
    height: auto !important;
  }

  .banner-img img,
  .banner-box img,
  .about-img img,
  .hero-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important; /* ensure whole image visible without stretching */
  }

  /* Reduce spacing between stacked images and following text */
  .about-images.two-images,
  .about-images,
  .services-grid {
    gap: 10px !important;
    margin-bottom: 14px !important;
  }

  /* Reduce title spacing */
  .section-title {
    margin-bottom: 18px !important;
    font-size: 1.3rem !important;
  }

  /* Make WhatsApp button full width and keep it floating (so it doesn't push content) */
  .about-whatsapp-btn,
  .top-whatsapp-btn {
    width: 100% !important;
    padding: 12px 0 !important;
    box-sizing: border-box;
  }

  /* If body has padding-top to accommodate fixed header, reduce it on mobile */
  body {
    padding-top: 56px !important; /* adjust to header height on mobile (reduce from desktop value) */
  }

  /* Remove extra top/bottom margins on any direct .container children */
  .container > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* If something is accidentally creating an empty tall block, make it collapsible */
  .spacer, .empty-block {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Optional: tiny visual debug borders (uncomment while debugging)
@media (max-width:900px){
  .about-images.two-images, .banner-container, .hero-inner { outline: 1px dashed rgba(255,255,255,0.05); }
}
*/
