:root{
  --mehroon: #800020;
  --mehroon-2: #a21436;
  --bluegray: #5b7c99;
  --bluegray-2: #7ea0bb;
  --ink: #0f172a;
  --muted: #6b7280;
  --bg: #ffffff;
  --soft: #f6f7fb;
  --card: rgba(255,255,255,0.85);
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

/* ===== Topbar ===== */
.topbar{
  background: linear-gradient(90deg, rgba(128,0,32,0.95), rgba(91,124,153,0.95));
  color: #fff;
}
.topbar-link{
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}
.topbar-link i{margin-right:6px}
.topbar-link:hover{color:#fff; text-decoration:underline}

.topbar-badge{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 500;
}

.btn-topbar{
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.btn-topbar:hover{
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* ===== Navbar ===== */
.nav-blur{
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar-brand .brand-mark{
  width: 42px; height: 42px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mehroon), var(--bluegray));
  color: #fff;
  box-shadow: 0 10px 24px rgba(128,0,32,0.18);
}
.brand-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1;
}
.brand-subtitle{
  font-size: 12px;
  color: rgba(15,23,42,0.65);
  margin-top: 2px;
}
.nav-link{
  font-weight: 500;
  color: rgba(15,23,42,0.75);
  position: relative;
}
.nav-link:hover, .nav-link:focus{color: var(--mehroon)}
.nav-link::after{
  content:"";
  position:absolute;
  left: 10px;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mehroon), var(--bluegray));
  transition: width .25s ease;
  border-radius: 99px;
}
.nav-link:hover::after{width: calc(100% - 20px);}

.btn-main{
  background: linear-gradient(135deg, var(--mehroon), var(--bluegray));
  color: #fff;
  border: 0;
  box-shadow: 0 14px 30px rgba(128,0,32,0.18);
}
.btn-main:hover{
  transform: translateY(-1px);
  color: #fff;
}
.btn-outline-main{
  border: 1px solid rgba(128,0,32,0.35);
  color: var(--mehroon);
  background: transparent;
}
.btn-outline-main:hover{
  background: rgba(128,0,32,0.08);
  color: var(--mehroon);
}


/* Navbar Logo */
.navbar-logo{
  height: 70px;              /* desktop size */
  width: auto;
  object-fit: contain;
  transition: transform .25s ease;
}

.navbar-brand:hover .navbar-logo{
  transform: scale(1.05);
}

/* Mobile optimization */
@media (max-width: 576px){
  .navbar-logo{
    height: 65px;
  }
}


/* ===== Hero ===== */
.hero { position: relative; }

/* Video wrapper height */
.hero-video .hero-video-wrap{
  position: relative;
  height: clamp(520px, 78vh, 760px);
  overflow: hidden;

  /* Fallback background for contain mode */
  background: radial-gradient(900px 500px at 20% 10%, rgba(128,0,32,0.35), transparent 55%),
              radial-gradient(900px 500px at 85% 15%, rgba(91,124,153,0.35), transparent 55%),
              #0b1220;
}

/* Desktop: cover (cinematic) */
.hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;              /* keeps desktop style */
  object-position: center center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}

.kw{
  color: var(--mehroon);
  font-weight: 700;
}

/* Overlay */
/* .hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,23,42,0.70) 0%,
    rgba(15,23,42,0.45) 45%,
    rgba(15,23,42,0.25) 100%
  );
  z-index: 1;
} */

/* hero strip stays below */
.hero-strip{
  margin-top: -52px;
  position: relative;
  z-index: 3;
}

/* ✅ Mobile: show FULL video (no cutting) */
@media (max-width: 576px){
  .hero-video .hero-video-wrap{
    height: 225px;        /* keep your same height */
    overflow: hidden;
  }

  .hero-bg-video{
    object-fit: contain;  /* ✅ full video visible */
    transform: none;      /* remove zoom to avoid crop */
    filter: saturate(1.05) contrast(1.02);
    background: transparent;
  }

  /* Optional: slightly softer overlay on mobile (so video visible) */
  .hero-overlay{
    background: linear-gradient(
      180deg,
      rgba(15,23,42,0.35) 0%,
      rgba(15,23,42,0.55) 100%
    );
  }
}


/* hero strip */
.hero-strip{
  margin-top: -52px;
  position: relative;
  z-index: 2;
}
.strip-item{
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
  backdrop-filter: blur(10px);
}
.strip-item i{
  font-size: 20px;
  width: 42px; height: 42px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(128,0,32,0.12), rgba(91,124,153,0.12));
  color: var(--mehroon);
}

/* ===== Sections ===== */
.section-pad{padding: 84px 0}
.section-soft{
  background: radial-gradient(1200px 600px at 20% 0%, rgba(91,124,153,0.10), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(128,0,32,0.10), transparent 55%),
              var(--soft);
}
.section-head .section-kicker{
  color: var(--mehroon);
  font-weight: 600;
  letter-spacing: .35px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 12px;
}
.section-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .2px;
}
.section-subtitle{
  color: rgba(15,23,42,0.72);
  margin-top: 10px;
}

/* ===== About ===== */
.about-points .point{
  display:flex;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-top: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15,23,42,0.06);
}
.about-points i{
  color: var(--mehroon);
  font-size: 20px;
  margin-top: 2px;
}

.about-badge{
  position:absolute;
  right: 18px;
  top: 18px;
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}
.about-badge .num{
  font-size: 28px;
  font-weight: 800;
  color: var(--mehroon);
  line-height: 1;
}
.about-badge .txt{
  font-size: 12px;
  color: rgba(15,23,42,0.72);
  line-height: 1.1;
}
.about-art{
  height: 100%;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  position: relative;
}
.glass-panel{
  margin-top: 80px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.60);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  font-size: 12px;
  color: rgba(15,23,42,0.78);
}
.decor-dot{
  position:absolute;
  left: 20px;
  top: 40px;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--mehroon);
  box-shadow: 0 0 0 10px rgba(128,0,32,0.12);
}
.decor-ring{
  position:absolute;
  right: 22px;
  bottom: 26px;
  width: 110px; height: 110px;
  border-radius: 999px;
  border: 2px dashed rgba(91,124,153,0.45);
}
/* --- About Video Box --- */

.about-video-el{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}

/* subtle overlay to match theme */
.about-video-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(128,0,32,0.22) 0%,
    rgba(91,124,153,0.20) 60%,
    rgba(15,23,42,0.10) 100%
  );
}

/* small chip label */
.about-video-chip{
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(15,23,42,0.50);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

/* make space for badge so it doesn't overlap the video on small screens */
@media (max-width: 576px){
  .about-video{ height: 190px; }
  .about-badge{ right: 12px; top: 12px; }
}

/* Right-side container */
.about-media-card{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(128,0,32,0.10), rgba(91,124,153,0.10));
  box-shadow: var(--shadow);
}

/* BIG video block */
.about-video-lg{
  position: relative;
  width: 100%;
  /* Bigger height + responsive */
  height: clamp(280px, 38vh, 420px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  background: #0b1220;
}

/* Full cover video */
.about-video-lg .about-video-el{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.03);
}



/* Chip label */
.about-video-chip{
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(15,23,42,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.20);
}

/* Experience badge (top-right, stylish) */
.about-exp-badge{
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 18px;
  color: #fff;
  background: rgba(15,23,42,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.22);
}
.about-exp-badge .num{
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.about-exp-badge .txt{
  font-size: 12px;
  line-height: 1.1;
  color: rgba(255,255,255,0.86);
}

/* Bottom info panel */
.about-info-panel{
  position: relative;
  padding: 20px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
}

/* Keep decor elements but adjust to fit new layout */
.about-info-panel .decor-dot{
  left: 18px;
  top: 18px;
}
.about-info-panel .decor-ring{
  right: 18px;
  bottom: 18px;
  width: 100px;
  height: 100px;
}

/* Mobile polish */
@media (max-width: 576px){
  .about-video-lg{
    height: 260px;
  }
  .about-exp-badge{
    right: 12px;
    top: 12px;
    padding: 8px 12px;
  }
}


/* ===== Services ===== */

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(15,23,42,0.12);
}
.service-card.featured{
  border: 1px solid rgba(128,0,32,0.22);
  background: linear-gradient(135deg, rgba(128,0,32,0.08), rgba(91,124,153,0.08)), rgba(255,255,255,0.92);
}

.service-icon{
  width: 52px; height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(128,0,32,0.12), rgba(91,124,153,0.12));
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--mehroon);
  font-size: 22px;
  margin-bottom: 12px;
}
.service-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 8px;
}
.service-list li{
  display:flex;
  gap: 8px;
  align-items:flex-start;
  color: rgba(15,23,42,0.76);
}
.service-list i{color: var(--bluegray)}

/* Services stacked layout */
.services-stack{
  display: grid;
  gap: 22px;
}

.service-row{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 16px 44px rgba(15,23,42,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-row:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(15,23,42,0.12);
}

/* Image side */
.service-media{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  background: #0b1220;
  height: clamp(326px, 34vh, 360px);
}

.service-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .4s ease;
}

.service-row:hover .service-media img{
  transform: scale(1.07);
}

/* Content side */
.service-panel{
  padding: 24px;
}

.service-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 10px;
}

.service-text{
  color: rgba(15,23,42,0.74);
  margin-bottom: 14px;
}

/* Rotating icon box */
.service-icon-rot{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(128,0,32,0.12), rgba(91,124,153,0.12));
  border: 1px solid rgba(15,23,42,0.10);
  color: var(--mehroon);
  transition: transform .6s ease;
  transform-origin: center;
}

.service-icon-rot i{
  font-size: 22px;
}

/* ✅ 360-degree rotation on hover */
.service-row:hover .service-icon-rot{
  transform: rotate(360deg);
}

/* Keep your existing list styles (works with this) */
.service-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.service-list li{
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(15,23,42,0.76);
}

.service-list i{
  color: var(--bluegray);
}

/* Responsive: better padding on small screens */
@media (max-width: 576px){
  .service-panel{ padding: 18px; }
  .service-media{ height: 220px; }
}

/* Sub-services cards under Invisible Grill */
.sub-service-card{
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sub-service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15,23,42,0.12);
}

/* image */
.sub-service-img{
  height: 140px;
  overflow: hidden;
  background: #0b1220;
}

.sub-service-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
}

.sub-service-card:hover .sub-service-img img{
  transform: scale(1.10);
}

/* body */
.sub-service-body{
  padding: 12px 12px 14px;
}

.sub-service-body h6{
  font-weight: 700;
  letter-spacing: .15px;
}

.sub-service-body p{
  color: rgba(15,23,42,0.72);
}

/* Mobile spacing tune */
@media (max-width: 576px){
  .sub-service-img{ height: 150px; }
}


/* ===== Why Us ===== */
.why-card{
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 16px;
  box-shadow: 0 16px 44px rgba(15,23,42,0.07);
}
.why-mini{
  display:flex; gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(91,124,153,0.06);
}
.why-mini + .why-mini{margin-top: 12px}
.why-mini i{
  color: var(--mehroon);
  font-size: 20px;
  margin-top: 2px;
}
.why-box{
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 18px;
  height: 100%;
  box-shadow: 0 16px 44px rgba(15,23,42,0.07);
}
.why-box h5{
  font-size: 16px;
  margin-bottom: 10px;
  color: rgba(15,23,42,0.9);
}

/* ===== Counters ===== */
.counter-card{
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.88);
  padding: 18px;
  text-align:center;
  box-shadow: 0 16px 44px rgba(15,23,42,0.08);
}
.counter-num{
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--mehroon);
  line-height: 1.1;
}
.counter-label{
  color: rgba(15,23,42,0.70);
}

/* ===== Gallery ===== */
.gallery-item{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 16px 44px rgba(15,23,42,0.08);
  position: relative;
}
.gallery-item img{
  width:100%;
  height: 230px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img{transform: scale(1.06)}
.gallery-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent, rgba(15,23,42,0.55));
  opacity: 0;
  transition: opacity .25s ease;
  display:flex;
  align-items:flex-end;
  padding: 14px;
}
.gallery-item:hover .gallery-overlay{opacity: 1}
.gallery-overlay .cap{
  display:flex; align-items:center; gap: 10px;
  color: #fff;
}
.gallery-overlay .cap i{
  width: 38px; height: 38px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.20);
}


/* ===== Video Grid Section ===== */
.video-gallery{
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(128,0,32,0.10), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(91,124,153,0.12), transparent 60%),
    var(--soft);
}

/* Card */
.video-grid-card{
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(15,23,42,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.video-grid-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15,23,42,0.14);
}

/* Video */
.video-grid-card video{
  width: 100%;
  height: 351px;
  object-fit: cover;
  background: #000;
  display: block;
}

/* Card body */
.video-card-body{
  padding: 18px;
}

.video-card-body h5{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Icon */
.video-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: linear-gradient(
    135deg,
    rgba(128,0,32,0.14),
    rgba(91,124,153,0.14)
  );
  color: var(--mehroon);
  font-size: 20px;
}

/* Mobile */
@media (max-width: 576px){
  .video-grid-card video{
    height: 200px;
  }
}


/* ===== Contact ===== */
.contact-card{
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.90);
  box-shadow: 0 20px 60px rgba(15,23,42,0.10);
  padding: 22px;
}
.form-control, .form-select{
  border-radius: 16px !important;
  border: 1px solid rgba(15,23,42,0.14) !important;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(128,0,32,0.35) !important;
  box-shadow: 0 0 0 .25rem rgba(128,0,32,0.10) !important;
}
.contact-info{
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(128,0,32,0.10), rgba(91,124,153,0.10));
  box-shadow: 0 20px 60px rgba(15,23,42,0.10);
  padding: 22px;
}
.info-item{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.60);
  backdrop-filter: blur(10px);
}
.info-item + .info-item{margin-top: 12px}
.info-item i{
  color: var(--mehroon);
  font-size: 20px;
  margin-top: 2px;
}
.cta-box{
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(128,0,32,0.88), rgba(91,124,153,0.88));
  color: #fff;
  box-shadow: 0 18px 60px rgba(128,0,32,0.20);
}
.cta-box p{color: rgba(255,255,255,0.92)}

/* ===== Map ===== */
.map-wrap iframe{
  width:100%;
  height: 420px;
  border: 0;
  display:block;
  filter: saturate(1.05);
}

/* ===== Footer ===== */
.footer{
  background: radial-gradient(900px 420px at 10% 0%, rgba(91,124,153,0.20), transparent 60%),
              radial-gradient(900px 420px at 90% 0%, rgba(128,0,32,0.20), transparent 60%),
              #0b1220;
  color: rgba(255,255,255,0.86);
  padding: 64px 0 22px;
}
.footer .brand-mark{
  width: 44px; height: 44px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mehroon), var(--bluegray));
  color: #fff;
}
.footer-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.footer-sub{
  font-size: 12px;
  color: rgba(255,255,255,0.70);
}
.footer-head{
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.footer-links{
  list-style:none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 10px;
}
.footer-links a{
  color: rgba(255,255,255,0.78);
  text-decoration:none;
}
.footer-links a:hover{color:#fff; text-decoration:underline}
.footer-contact a{color: rgba(255,255,255,0.82); text-decoration:none}
.footer-contact a:hover{color:#fff}
.footer-social{
  display:flex;
  gap: 10px;
}
.social{
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration:none;
  transition: transform .2s ease, background .2s ease;
}
.social:hover{transform: translateY(-2px); background: rgba(255,255,255,0.14)}
.footer-hr{
  border-color: rgba(255,255,255,0.14);
}
.footer-mini{
  color: rgba(255,255,255,0.78);
  text-decoration:none;
}
.footer-mini:hover{color:#fff; text-decoration:underline}

/* ===== Floating Buttons ===== */
/* Safety: stop horizontal scroll caused by shadows/fixed items */
html, body{
  overflow-x: hidden;
}

/* Floating buttons wrapper */
.floating-actions{
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;

  /* Do NOT let it affect layout sizing */
  width: auto;
}

/* Buttons */
.fab{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;

  /* Prevent jitter + keep safe rendering */
  transform: translateZ(0);
  will-change: transform, filter;
}

.fab i{ font-size: 22px; }

/* shine */
.fab::before{
  content:"";
  position:absolute;
  inset:-20%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.45), transparent 45%);
  opacity: .45;
}

/* WhatsApp */
.fab-whatsapp{
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: pulseGreen 2.2s infinite;
}

/* Call */
.fab-call{
  background: linear-gradient(135deg, var(--mehroon), var(--bluegray));
  animation: pulseMehroon 2.2s infinite;
}

/* ✅ Pulse using filter (doesn't expand layout width like big box-shadow sometimes does) */
@keyframes pulseGreen{
  0%   { filter: drop-shadow(0 10px 18px rgba(37,211,102,0.20)); transform: translateY(0); }
  50%  { filter: drop-shadow(0 14px 26px rgba(37,211,102,0.40)); transform: translateY(-1px); }
  100% { filter: drop-shadow(0 10px 18px rgba(37,211,102,0.20)); transform: translateY(0); }
}

@keyframes pulseMehroon{
  0%   { filter: drop-shadow(0 10px 18px rgba(128,0,32,0.18)); transform: translateY(0); }
  50%  { filter: drop-shadow(0 14px 26px rgba(128,0,32,0.34)); transform: translateY(-1px); }
  100% { filter: drop-shadow(0 10px 18px rgba(128,0,32,0.18)); transform: translateY(0); }
}

/* Mobile sizing */
@media (max-width: 576px){
  .floating-actions{
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 10px;
  }
  .fab{
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .fab i{ font-size: 20px; }
}


/* ===== Responsive tweaks ===== */
@media (max-width: 991px){
  .carousel-caption{bottom: 60px;}
  .hero-card{padding: 18px; border-radius: 18px;}
  .section-pad{padding: 72px 0}
}
@media(max-width:768px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center
	}
}
@media (max-width: 576px){
  .hero-img{height: 520px;}
  .hero-card{max-width: 100%;}
  .brand-subtitle{display:none;}
  .gallery-item img{height: 200px;}
  .floating-actions{right: 14px; bottom: 14px;}
  .fab{width: 50px; height: 50px; border-radius: 16px;}
}
