:root{
  --mehroon:#7b001c;
  --mehroon-2:#5c0015;
  --sky:#2bb3ff;
  --orange:#ff7a00;

  --bg:#0b0f17;
  --text:#1d2433;
  --muted:#6b768a;

  --card:#ffffff;
  --soft:#f6f9ff;
  --shadow: 0 18px 45px rgba(11,15,23,0.12);
  --shadow2: 0 10px 30px rgba(11,15,23,0.12);
  --radius:18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:"Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

/* Topbar */
.topbar{
  background: linear-gradient(90deg, var(--mehroon), var(--mehroon-2));
  color:#fff;
}
.topbar-link{
  color:#fff;
  text-decoration:none;
  opacity:.92;
}
.topbar-link:hover{ opacity:1; text-decoration:underline; }

.deal-badge{
  background: linear-gradient(90deg, var(--orange), #ff9a2e);
  color:#1a1a1a;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding:.45rem .7rem;
}

/* Header / Navbar */

.main-logo{
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform .25s ease;
}

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

/* Responsive logo size */
@media (max-width: 575px){
  .main-logo{
    height: 42px;
  }
}

.header{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 26, 41, .08);
}
.navbar{
  padding: .85rem 0;
}
.navbar-brand .brand-title{
  font-family:"Playfair Display", serif;
  font-weight:700;
  letter-spacing:.2px;
  color:var(--mehroon);
  line-height:1.1;
}
.navbar-brand .brand-subtitle{
  font-size:.8rem;
  color:var(--muted);
  margin-top:2px;
}
.brand-mark{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, var(--sky), var(--orange));
  color:#0b0f17;
  box-shadow: 0 12px 25px rgba(43,179,255,.25);
}

.nav-link{
  font-weight: 500;
  color: #2b3447;
  position: relative;
  padding: .55rem .85rem !important;
  border-radius: 999px;
}
.nav-link:hover{ color: var(--mehroon); background: rgba(123,0,28,.06); }
.nav-link.active{
  color: #fff !important;
  background: linear-gradient(90deg, var(--mehroon), var(--orange));
  box-shadow: 0 14px 35px rgba(123,0,28,.2);
}

.navbar-toggler{
  border:none;
  outline:none;
  padding: .25rem .4rem;
}
.navbar-toggler-icon-custom{
  display:block;
  width:28px;height:18px;
  position:relative;
}
.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after,
.navbar-toggler-icon-custom span{
  content:"";
  position:absolute;
  left:0;right:0;
  height:2px;
  background: var(--mehroon);
  border-radius:999px;
}
.navbar-toggler-icon-custom::before{ top:0; }
.navbar-toggler-icon-custom::after{ bottom:0; }
.navbar-toggler-icon-custom span{ top:50%; transform: translateY(-50%); }

/* Buttons */
.btn-theme{
  background: linear-gradient(90deg, var(--mehroon), var(--orange));
  border: none;
  color:#fff;
  border-radius: 999px;
  padding: .75rem 1.1rem;
  box-shadow: 0 18px 40px rgba(123,0,28,.22);
}
.btn-theme:hover{ filter: brightness(1.03); transform: translateY(-1px); }

.btn-outline-theme{
  border: 2px solid rgba(123,0,28,.35);
  color: var(--mehroon);
  border-radius: 999px;
  padding: .75rem 1.1rem;
  background: #fff;
}
.btn-outline-theme:hover{
  border-color: var(--mehroon);
  background: rgba(123,0,28,.05);
  color: var(--mehroon);
}

/* Sections */
.section-pad{ padding: 80px 0; }
.section-soft{ background: linear-gradient(180deg, var(--soft), #fff); }

.kicker{
  display:inline-block;
  font-size:.85rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--mehroon);
  background: rgba(43,179,255,.12);
  border: 1px solid rgba(43,179,255,.25);
  padding: .35rem .75rem;
  border-radius: 999px;
}
.kicker-light{
  color:#fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}
.section-head h2{
  font-family:"Playfair Display", serif;
  font-weight: 700;
}
.section-title h2{
  font-family:"Playfair Display", serif;
  font-weight: 700;
  margin-top: .55rem;
}
.muted{ color: var(--muted); }

/* Hero */
.hero{ position:relative; }
.hero-img{
  height: 78vh;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 30%, rgba(43,179,255,.20), transparent 45%),
              linear-gradient(90deg, rgba(11,15,23,.78), rgba(11,15,23,.25));
  z-index: 1;
}
.carousel-caption{
  z-index: 2;
  left:0; right:0;
  bottom: 10%;
  padding:0;
  text-align:left;
}
.hero-title{
  font-family:"Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  line-height: 1.1;
  color:#fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.hero-sub{
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 56ch;
}
.text-accent{ color: var(--sky); }

.chip{
  display:inline-flex; align-items:center;
  gap:.5rem;
  color:#fff;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  border-radius:999px;
  padding:.4rem .75rem;
  backdrop-filter: blur(8px);
}

.hero-mini{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mini-card{
  display:flex;
  align-items:center;
  gap:10px;
  padding: .65rem .8rem;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.mini-card i{
  color: var(--orange);
  font-size: 1.05rem;
}
.mini-title{ color:#fff; font-weight: 600; font-size:.95rem; line-height:1.05; }
.mini-sub{ color: rgba(255,255,255,.75); font-size:.8rem; }

/* About */
.about-points .point{
  display:flex;
  gap:12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(18,26,41,.06);
  margin-bottom: 12px;
}
.about-points .point i{ color: var(--sky); font-size: 1.15rem; margin-top: 2px; }
.point-title{ font-weight: 700; }
.point-sub{ color: var(--muted); font-size: .92rem; }

.about-card{
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(43,179,255,.22), transparent 45%),
    radial-gradient(circle at 90% 40%, rgba(255,122,0,.18), transparent 45%),
    linear-gradient(180deg, rgba(123,0,28,.12), rgba(123,0,28,.03));
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(123,0,28,.10);
}
.about-card-inner{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: calc(var(--radius) - 6px);
  padding: 20px;
  backdrop-filter: blur(12px);
}
.tagline{
  font-weight: 700;
  color: var(--mehroon);
  display:flex; align-items:center;
  background: rgba(255,122,0,.14);
  border: 1px dashed rgba(255,122,0,.45);
  padding: .7rem .9rem;
  border-radius: 16px;
}
.glass-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.glass-item{
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(18,26,41,.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 12px 25px rgba(11,15,23,.08);
}
.gi-icon{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--orange));
  color:#0b0f17;
  margin-bottom: 10px;
}
.gi-title{ font-weight: 700; }
.gi-sub{ color: var(--muted); font-size: .9rem; }

.note{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(43,179,255,.25);
  background: rgba(43,179,255,.10);
}
.note-icon{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius: 16px;
  background: rgba(123,0,28,.10);
  color: var(--mehroon);
}
.note-title{ font-weight: 700; }
.note-sub{ color: var(--muted); font-size: .92rem; }

.link-strong{ color: var(--mehroon); font-weight: 700; text-decoration:none; }
.link-strong:hover{ text-decoration: underline; }

.about-image-wrap{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(18,26,41,.10);
  background:
    radial-gradient(circle at 20% 0%, rgba(43,179,255,.18), transparent 45%),
    radial-gradient(circle at 90% 40%, rgba(255,122,0,.16), transparent 45%),
    #fff;
}

.about-image{
  width: 100%;
  height: 520px;
  object-fit: cover;
  transform: scale(1.01);
}

.about-image-badge{
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: .6rem .85rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  background: linear-gradient(90deg, var(--mehroon), var(--orange));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

/* Mobile friendly */
@media (max-width: 991px){
  .about-image{ height: 380px; }
}
@media (max-width: 575px){
  .about-image{ height: 300px; }
  .about-image-badge{ left: 12px; bottom: 12px; font-size: .85rem; }
}



/* Services */
/* Service Card */
.service-card{
  height:100%;
  background:#fff;
  border: 1px solid rgba(18,26,41,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  position: relative;
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* background effects */
.service-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(circle at 20% 0%, rgba(43,179,255,.16), transparent 45%),
              radial-gradient(circle at 90% 40%, rgba(255,122,0,.14), transparent 45%);
  opacity: .9;
  pointer-events:none;
}

/* Image on top */
.service-img{
  position: relative;
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid rgba(18,26,41,.08);
}
.service-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transition: transform .45s ease;
}

/* Body spacing */
.service-body{
  padding: 22px;
  position: relative;
  z-index: 1;
}

/* Hover lift */
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(11,15,23,.15);
}
.service-card:hover .service-img img{
  transform: scale(1.06);
}

/* Icon */
.service-icon{
  width:54px;height:54px;
  display:grid;place-items:center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(123,0,28,.12), rgba(43,179,255,.14));
  border: 1px solid rgba(123,0,28,.16);
  color: var(--mehroon);
  font-size: 1.25rem;
  margin-bottom: 14px;

  /* rotation smooth */
  transition: transform .6s ease;
  transform-origin: center;
}

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

/* Text */
.service-card h5{ font-weight: 800; }
.service-card p{ color: var(--muted); margin-bottom: 14px; }

.service-meta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #364159;
  font-size: .9rem;
}
.service-meta i{ color: var(--sky); margin-right: 6px; }

/* Responsive */
@media (max-width: 575px){
  .service-img{ height: 160px; }
  .service-body{ padding: 18px; }
}

/* Why + Testimonials */
.why-list .why-item{
  display:flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(18,26,41,.08);
  background: #fff;
  box-shadow: var(--shadow2);
  margin-bottom: 12px;
}
.why-badge{
  width:44px;height:44px;
  border-radius: 16px;
  display:grid;place-items:center;
  background: rgba(255,122,0,.14);
  color: var(--orange);
  border: 1px solid rgba(255,122,0,.25);
}
.why-title{ font-weight: 800; }
.why-sub{ color: var(--muted); font-size: .92rem; }

.testimonial-wrap{
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(43,179,255,.20), transparent 45%),
    radial-gradient(circle at 90% 40%, rgba(255,122,0,.18), transparent 45%),
    #fff;
  border: 1px solid rgba(18,26,41,.08);
  box-shadow: var(--shadow);
  padding: 22px;
}
.t-card{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(18,26,41,.08);
  border-radius: 18px;
  padding: 16px;
  height:100%;
}
.t-stars{ color: #ffb000; margin-bottom: 8px; }
.t-card p{ color: #2b3447; margin-bottom: 10px; font-size: .95rem; }
.t-name{ font-weight: 800; color: var(--mehroon); }

/* Achievements */
.section-accent{
  background:
    radial-gradient(circle at 15% 10%, rgba(43,179,255,.35), transparent 42%),
    radial-gradient(circle at 85% 50%, rgba(255,122,0,.28), transparent 42%),
    linear-gradient(120deg, var(--mehroon), #110816);
}
.stat-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 20px;
  text-align:center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 55px rgba(0,0,0,.18);
}
.stat-icon{
  width:54px;height:54px;
  margin: 0 auto 10px;
  display:grid;place-items:center;
  border-radius: 18px;
  background: rgba(255,255,255,.14);
  color:#fff;
  border: 1px solid rgba(255,255,255,.22);
}
.stat-number{
  font-family:"Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color:#fff;
}
.stat-label{
  color: rgba(255,255,255,.75);
  font-weight: 600;
}

/* Gallery */
.g-item{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  cursor:pointer;
  border: 1px solid rgba(18,26,41,.10);
  box-shadow: var(--shadow2);
  background:#fff;
}
.g-item img{
  width:100%;
  height: auto;
  object-fit: cover;
  transition: transform .35s ease;
}
.g-item:hover img{ transform: scale(1.06); }
.g-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,15,23,.75));
  opacity:0;
  transition: opacity .35s ease;
}
.g-item:hover .g-overlay{ opacity:1; }
.g-label{
  position:absolute; left:14px; bottom:12px;
  color:#fff;
  font-weight: 700;
  display:flex; align-items:center; gap:8px;
  opacity:0;
  transform: translateY(8px);
  transition: all .35s ease;
}
.g-item:hover .g-label{ opacity:1; transform: translateY(0); }


/* Local Videos Section */
.local-video-card{
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18,26,41,.10);
  box-shadow: var(--shadow2);
  transition: transform .22s ease, box-shadow .22s ease;
}

.local-video-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(11,15,23,.14);
}

.local-video-frame{
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(43,179,255,.16), transparent 45%),
    radial-gradient(circle at 90% 40%, rgba(255,122,0,.14), transparent 45%),
    linear-gradient(135deg, rgba(123,0,28,.10), rgba(0,0,0,.10));
  padding: 10px;
}

.local-video{
  width: 100%;
  height: 240px;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  background: #000;
  outline: none;
}

/* Nice looking controls area */
.local-video-info{
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(18,26,41,.08);
}

.local-video-info h5{
  font-weight: 800;
  color: var(--mehroon);
}

@media (max-width: 575px){
  .local-video{ height: 210px; }
}
/* Contact */
.contact-cards .contact-card{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18,26,41,.08);
  box-shadow: var(--shadow2);
  margin-bottom: 12px;
}
.cc-icon{
  width:44px;height:44px;
  border-radius: 16px;
  display:grid;place-items:center;
  background: rgba(43,179,255,.12);
  color: var(--sky);
  border: 1px solid rgba(43,179,255,.22);
}
.cc-title{ font-weight: 800; }
.cc-sub{ color: var(--muted); font-size: .95rem; }

.form-card{
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18,26,41,.08);
  box-shadow: var(--shadow);
  padding: 22px;
}
.form-head h4{ font-weight: 800; color: var(--mehroon); }
.form-control, .form-select{
  border-radius: 14px;
  border: 1px solid rgba(18,26,41,.14);
  padding: .75rem .9rem;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(43,179,255,.65);
  box-shadow: 0 0 0 .2rem rgba(43,179,255,.18);
}

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



/* Terms Split Panel (Right side) */
.terms-split{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(18,26,41,.10);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

.terms-left{
  background: linear-gradient(180deg, rgba(123,0,28,.95), rgba(123,0,28,.75));
}

.terms-right{
  position: relative;
  background: #111;
}

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

.terms-right::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(11,15,23,.20), rgba(11,15,23,.58));
}

/* white box on top */
.terms-box{
  position: relative;
  z-index: 2;
  width: min(420px, 86%);
  right: 18rem;
  margin: 40px auto;
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.terms-title{
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange);
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 18px;
}

.quote-mark{
  color: var(--orange);
  font-weight: 900;
}

.asterisk{
  color: var(--orange);
  font-weight: 900;
}

.terms-box p{
  color: #1f283a;
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Testimonials Carousel Cards */
#testimonialCarousel .carousel-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.t-slide-card{
  background: #fff;
  border: 1px solid rgba(18,26,41,.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow2);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.t-slide-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(circle at 20% 0%, rgba(43,179,255,.14), transparent 45%),
              radial-gradient(circle at 90% 40%, rgba(255,122,0,.12), transparent 45%);
  opacity: .9;
  pointer-events:none;
}

.t-slide-card > *{ position: relative; z-index: 1; }

.t-slide-card p{
  color: #2b3447;
  margin: 10px 0 12px;
  font-size: 1rem;
  line-height: 1.8;
}

.t-stars{
  color: #ffb000;
}

.t-name{
  font-weight: 900;
  color: var(--mehroon);
}

/* Wider single card */
.t-wide{
  padding: 26px;
}

/* Better controls visibility */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}

/* Responsive Terms layout */
@media (max-width: 991px){
  .terms-split{
    grid-template-columns: 1fr;
    min-height: 460px;
  }
  .terms-left{
    display:none;
  }
  .terms-box{
    margin: 26px auto;
    right: 0rem;
  }
}

/* Footer */
.footer{
  background: #090c12;
  padding: 60px 0 10px;
}
.footer-title{
  color:#fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.footer-links a{
  color: rgba(255,255,255,.72);
  text-decoration:none;
}
.footer-links a:hover{ color: #fff; text-decoration: underline; }

.footer-contact{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.footer-contact li{
  display:flex; gap:10px;
  color: rgba(255,255,255,.72);
}
.footer-contact i{ color: var(--sky); margin-top: 4px; }
.footer-contact a{ color: rgba(255,255,255,.72); text-decoration:none; }
.footer-contact a:hover{ color:#fff; text-decoration: underline; }

.footer-social{
  display:flex; gap:10px;
}
.footer-social a{
  width:44px;height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  transition: transform .25s ease;
}
.footer-social a:hover{ transform: translateY(-2px); }
.footer-hr{
  border-color: rgba(255,255,255,.10);
}

/* Lightbox */
.lightbox-content{
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  overflow:hidden;
}
.lightbox-content img{
  width:100%;
  height:auto;
  display:block;
}
.lightbox-close{
  position:absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
}

/* Floating Buttons */
/* Safety net (prevents accidental horizontal scroll) */
html, body {
  overflow-x: hidden;
}

/* Floating Buttons (NO overflow issue) */
.float-btn{
  position: fixed;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
  text-decoration: none;
  z-index: 999;

  /* Use box-shadow only (safe) */
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);

  /* Keep inside viewport + safe area */
  right: calc(14px + env(safe-area-inset-right));
  will-change: transform;
}

/* Glow pulse using pseudo-element (safe, does not create overflow) */
.float-btn::after{
  content: "";
  position: absolute;
  inset: -10px;                 /* glow area */
  border-radius: inherit;
  background: radial-gradient(circle, rgba(43,179,255,.35), transparent 60%);
  opacity: .55;
  transform: scale(.85);
  z-index: -1;
  animation: pulseGlow 1.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow{
  0%,100% { opacity: .35; transform: scale(.85); }
  50%     { opacity: .70; transform: scale(1.05); }
}

.float-whatsapp{
  bottom: calc(92px + env(safe-area-inset-bottom));
  background: linear-gradient(135deg, #25D366, #11b553);
}
.float-call{
  bottom:200px;
  background: linear-gradient(135deg, var(--mehroon), var(--orange));
}

/* Mobile: slightly smaller + tighter spacing */
@media (max-width: 575px){
  .float-btn{
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.2rem;
    right: calc(10px + env(safe-area-inset-right));
  }
  .float-whatsapp{
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
  .float-call{
    bottom: calc(18px + env(safe-area-inset-bottom));
  }
}

/* Back to top */
.back-to-top{
  position: fixed;
  left: 18px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(18,26,41,.12);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  display:none;
  z-index: 999;
}
.back-to-top:hover{ transform: translateY(-1px); }
.back-to-top i{ color: var(--mehroon); }

/* Responsive tweaks */
@media (max-width: 991px){
  .hero-img{ height: 72vh; min-height: 520px; }
  .carousel-caption{ bottom: 8%; }
  .glass-grid{ grid-template-columns: 1fr; }
  .cu-mb-ds-nn{
		display:none!important
	}
}
@media(max-width:768px)
{
	
}
@media (max-width: 575px){
  .section-pad{ padding: 64px 0; }
  .hero-img{ height: 70vh; min-height: 520px; }
  .mini-card{ width: 100%; }
  .float-btn{ right: 14px; }
  .float-whatsapp{ bottom: 88px; }
  .float-call{ bottom: 200px; }
}
