:root{
  --purple:#5a2ea6;
  --purple2:#7b49d6;     /* light purple */
  --lav:#f3ecff;         /* soft background */
  --yellow:#ffc83d;
  --yellow2:#ffde7a;
  --dark:#140b2a;
  --text:#222;
  --muted:#6b6b6b;
  --card:#ffffff;
  --shadow: 0 18px 45px rgba(20, 11, 42, 0.18);
  --shadow2: 0 10px 25px rgba(20, 11, 42, 0.14);
}

*{ 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;
}

/* Helpers */
.section-pad{ padding: 80px 0; }
.section-soft{ background: linear-gradient(180deg, var(--lav), #fff); }
.min-vh-75{ min-height: 75vh; }

.kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(123, 73, 214, .12);
  color: var(--purple);
  font-weight: 600;
  letter-spacing: .2px;
}
.kicker.center{ justify-content:center; }

.title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: .2px;
  margin-top: .65rem;
  margin-bottom: .75rem;
}

/* Topbar */
.topbar{
  background: linear-gradient(90deg, var(--dark), #2a1457);
  color: #fff;
}
.topbar-link{
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: .95rem;
}
.topbar-link:hover{ color: var(--yellow); }
.topbar-badge{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
  font-weight: 600;
}
.topbar-badge.alt{
  background: rgba(255, 200, 61, .12);
  border-color: rgba(255, 200, 61, .22);
}

/* Navbar */

/* Navbar Logo */
.main-logo{
  height: 85px;
  width: auto;
  border-radius: 5px;
  transition: transform .3s ease;
}

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

/* Responsive logo sizing */
@media (max-width: 991px){
  .main-logo{
    height: 75px;
  }
}

@media (max-width: 575px){
  .main-logo{
    height: 75px;
  }
}


.header{
  backdrop-filter: blur(10px);
}
.navbar{
  background: linear-gradient(90deg, var(--purple), #3d1d79);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.navbar .nav-link{
  color: rgba(255,255,255,.85);
  font-weight: 600;
  padding: .7rem .9rem;
  border-radius: 999px;
}
.navbar .nav-link:hover,
.navbar .nav-link.active{
  color: #1a102e;
  background: linear-gradient(90deg, var(--yellow), var(--yellow2));
}
.navbar-brand .brand-title{
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .2px;
  color:#fff;
}
.navbar-brand .brand-subtitle{
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  color: #1b1031;
  box-shadow: 0 10px 30px rgba(255, 200, 61, .25);
}
.brand-mark.sm{ width:38px; height:38px; border-radius: 12px; }

/* Buttons */
.btn-brand{
  background: linear-gradient(90deg, var(--yellow), var(--yellow2));
  border: none;
  color: #1b1031 !important;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(255, 200, 61, .25);
}
.btn-brand:hover{
  filter: brightness(0.98);
  transform: translateY(-1px);
}
.btn-outline-brand{
  border: 2px solid rgba(90, 46, 166, .25);
  color: var(--purple);
  font-weight: 800;
}
.btn-outline-brand:hover{
  border-color: rgba(90, 46, 166, .35);
  background: rgba(123, 73, 214, .10);
  color: var(--purple);
}

/* Hero */
.hero{ position: relative; }
.hero-slide{
  position: relative;
  padding: 70px 0 110px;
  color:#fff;
  overflow:hidden;
}
.hero-slide .overlay{
  position:absolute; inset:0;
  background: radial-gradient(1200px 500px at 10% 20%, rgba(255, 200, 61, .18), transparent 55%), radial-gradient(900px 500px at 80% 30%, rgba(123, 73, 214, .22), transparent 60%), linear-gradient(90deg, rgb(118 94 179 / 43%), rgb(104 88 141 / 49%));
  z-index:0;
}
.hero-slide .container{ position:relative; z-index:2; }

.slide-1{
  background:
    linear-gradient(90deg, rgba(20, 11, 42, .65), rgba(20, 11, 42, .30)),
    url("../img/banner-1.jpg");
  background-size: cover;
  background-position: center;
}
.slide-2{
  background:
    linear-gradient(90deg, rgba(20, 11, 42, .70), rgba(20, 11, 42, .28)),
    url("../img/banner-2.jpg");
  background-size: cover;
  background-position: center;
}
.slide-3{
  background:
    linear-gradient(90deg, rgba(20, 11, 42, .75), rgba(20, 11, 42, .30)),
    url("../img/banner-3.jpg");
  background-size: cover;
  background-position: center;
}

.hero-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.hero-pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.45rem .85rem;
  border-radius: 999px;
  background: rgba(255, 200, 61, .14);
  border: 1px solid rgba(255, 200, 61, .22);
  color:#fff;
  font-weight: 700;
}
.hero-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}
.hero-text{ color: rgba(255,255,255,.82); font-size: 1.05rem; }
.hero-badges{
  display:flex;
  flex-wrap: wrap;
  gap:.5rem;
}
.mini-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.4rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.90);
  font-weight: 600;
  font-size: .9rem;
}

.hero-side .glass-panel{
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.icon-bubble{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255, 200, 61, .16);
  border: 1px solid rgba(255, 200, 61, .22);
}

.hero-strip{
  margin-top: -40px;
  position: relative;
  z-index: 5;
}
.strip-card{
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px 18px;
  border: 1px solid rgba(90,46,166,.10);
}
.strip-icon{
  width: 46px; height: 46px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(123, 73, 214, .12);
  color: var(--purple);
}

/* About */
.section-head .lead{ color: var(--muted); }
.about-points .point{
  display:flex; gap:12px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(123, 73, 214, .06);
  border: 1px solid rgba(90,46,166,.10);
  margin-bottom: 12px;
}
.point-icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255, 200, 61, .22), rgba(123,73,214,.12));
  color: var(--purple);
  flex: 0 0 auto;
}
.about-card{
  border-radius: 26px;
  overflow:hidden;
  background: linear-gradient(135deg, #2b155d, #5a2ea6);
  color:#fff;
  box-shadow: var(--shadow);
}
.about-card-top{ padding: 26px; }
.about-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .4rem .75rem;
  margin-bottom: 12px;
}
.about-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
}
.stat{
  padding: 18px;
  background: rgba(255,255,255,.08);
  text-align:center;
}
.stat-num{
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
}
.stat-label{ font-size:.9rem; color: rgba(255,255,255,.80); }
.about-cta{
  padding: 20px 26px 26px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* About Image Block */
.about-image-wrap{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(90,46,166,.10);
  background: linear-gradient(135deg, rgba(123,73,214,.10), rgba(255,200,61,.12));
}

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

.about-image-wrap:hover .about-image{
  transform: scale(1.06);
}

.about-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 380px at 20% 20%, rgba(255,200,61,.18), transparent 55%),
              linear-gradient(180deg, rgba(20,11,42,.10), rgba(20,11,42,.25));
  pointer-events:none;
}

.about-float-badge{
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}

@media (max-width: 575px){
  .about-image{ height: 320px; }
}

/* Services */
/* Services (with images + 360 icon rotation) */
.service-card{
  border-radius: 22px;
  background: var(--card);
  border: 1px solid rgba(90,46,166,.10);
  box-shadow: var(--shadow2);
  overflow: hidden; /* important for image rounding */
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* Image */
.service-img-wrap{
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(123, 73, 214, .12), rgba(255, 200, 61, .12));
}
.service-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover .service-img{
  transform: scale(1.07);
}
.service-img-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(20,11,42,.05), rgba(20,11,42,.25));
  pointer-events:none;
}

/* Body spacing */
.service-body{
  padding: 22px;
}

/* Icon */
.service-icon{
  width: 54px; height: 54px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(123, 73, 214, .14), rgba(255, 200, 61, .18));
  color: var(--purple);
  margin-top: -34px; /* makes icon overlap image (premium look) */
  margin-bottom: 12px;
  font-size: 1.3rem;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 16px 40px rgba(20, 11, 42, 0.16);
}

/* 360 rotation effect on hover */
.service-icon i{
  display:inline-block;
  transition: transform .6s ease, filter .25s ease;
  transform-origin: center;
}
.service-card:hover .service-icon i{
  transform: rotate(360deg);
  filter: drop-shadow(0 10px 18px rgba(255, 200, 61, 0.35));
}

/* Optional: tiny highlight on card hover */
.service-card:hover .service-icon{
  box-shadow: 0 18px 50px rgba(255, 200, 61, 0.22);
}

/* Mobile tuning */
@media (max-width: 575px){
  .service-img-wrap{ height: 170px; }
  .service-body{ padding: 18px; }
}

/* Why */
.why-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-item{
  display:flex; gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(90,46,166,.10);
  background: rgba(123, 73, 214, .06);
}
.why-item i{
  font-size: 1.25rem;
  color: var(--purple);
}
.why-card{
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 200, 61, .16), rgba(123, 73, 214, .10));
  border: 1px solid rgba(90,46,166,.10);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.why-card-inner{ background:#fff; border-radius: 26px; margin: 14px; padding: 22px; }
.why-highlight{
  display:flex; gap: 12px;
  align-items:flex-start;
}
.why-highlight .icon{
  width: 52px; height: 52px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255, 200, 61, .25), rgba(123, 73, 214, .12));
  color: var(--purple);
  font-size: 1.4rem;
}
.mini-tile{
  border-radius: 18px;
  border: 1px solid rgba(90,46,166,.10);
  background: rgba(123, 73, 214, .06);
  padding: 14px;
  display:flex; gap: 10px; align-items:center;
}
.mini-ic{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255, 200, 61, .18);
  color: #2b155d;
}
.mini-text{ font-weight: 700; color: #2b155d; }
.callout{
  display:flex; gap: 12px;
  align-items:center;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(90,46,166,.10), rgba(255,200,61,.12));
  border: 1px solid rgba(90,46,166,.12);
}
.callout-icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(90,46,166,.20), rgba(255,200,61,.18));
  color: var(--purple);
}

/* Achievements */
.section-dark{
  background: radial-gradient(1200px 450px at 20% 20%, rgba(255, 200, 61, .16), transparent 55%),
              radial-gradient(900px 450px at 80% 40%, rgba(123, 73, 214, .20), transparent 60%),
              linear-gradient(90deg, #120725, #1a0b38);
}
.counter-card{
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 18px;
  text-align:center;
  backdrop-filter: blur(10px);
}
.counter-num{
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 900;
  color: var(--yellow);
}
.counter-label{ color: rgba(255,255,255,.75); font-weight: 600; }
.cta-band{
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}
.cta-ic{
  width: 50px; height: 50px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(255,200,61,.16);
  border: 1px solid rgba(255,200,61,.22);
  color: var(--yellow);
  font-size: 1.4rem;
}

/* Gallery */
.gallery-card{
  position: relative;
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(90,46,166,.10);
  box-shadow: var(--shadow2);
  background: #fff;
}
.gallery-thumb{
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-card:hover .gallery-thumb{ transform: scale(1.08); }
.gallery-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,11,42,.70));
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-card:hover .gallery-overlay{ opacity: 1; }
.gallery-info{
  position:absolute;
  left: 14px; right: 14px; bottom: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  color:#fff;
  opacity:0;
  transform: translateY(10px);
  transition: .25s ease;
}
.gallery-card:hover .gallery-info{
  opacity:1;
  transform: translateY(0);
}
.gallery-pill{
  padding:.35rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 700;
  font-size: .9rem;
}

/* Contact */
.contact-card{
  border-radius: 22px;
  background: rgba(123, 73, 214, .06);
  border: 1px solid rgba(90,46,166,.10);
  padding: 16px;
}
.contact-item{
  display:flex; gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(90,46,166,.08);
  margin-bottom: 10px;
}
.ci-icon{
  width: 46px; height: 46px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255,200,61,.20), rgba(123,73,214,.12));
  color: var(--purple);
  flex: 0 0 auto;
}
.note-badge{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255, 200, 61, .16);
  border: 1px solid rgba(255, 200, 61, .22);
  font-weight: 700;
  color: #2b155d;
}

.form-shell{
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(90,46,166,.10);
  box-shadow: var(--shadow);
  padding: 22px;
}
.form-control, .form-select{
  border-radius: 14px;
  border: 1px solid rgba(90,46,166,.16);
  padding: .75rem .9rem;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(123, 73, 214, .55);
  box-shadow: 0 0 0 .2rem rgba(123, 73, 214, .18);
}

/* Map */
.map-wrap{ padding: 0 0 90px; background: linear-gradient(180deg, #fff, var(--lav)); }
.map-shell{
  border-radius: 26px;
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(90,46,166,.10);
  box-shadow: var(--shadow);
}
.map-head{
  padding: 16px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(123, 73, 214, .06);
  border-bottom: 1px solid rgba(90,46,166,.10);
}

/* Footer */
.footer{
  background: linear-gradient(90deg, #120725, #1a0b38);
  color: #fff;
}
.footer-title{
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-links, .footer-contact{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li, .footer-contact li{ margin-bottom: 10px; }
.footer a{ color: rgba(255,255,255,.78); text-decoration:none; }
.footer a:hover{ color: var(--yellow); }
.footer-chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: .9rem;
}
.social{
  display:flex;
  gap:10px;
}
.social a{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
}

/* Floating Buttons */
/* Prevent any accidental horizontal scroll */
html, body{
  overflow-x: hidden;
}

/* Floating Buttons (safe responsive) */
.float-btn{
  position: fixed;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  z-index: 9999;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  overflow: hidden;

  /* Important: prevent fixed element from increasing page width */
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  contain: layout paint;
}

.float-btn i{ font-size: 1.25rem; }
.float-btn .float-label{
  font-weight: 800;
  font-size: .95rem;
  white-space: nowrap;
}

/* Positions */
.float-btn.whatsapp{
  bottom: 30px;
  background: radial-gradient(120px 60px at 10% 50%, rgba(255, 200, 61, .22), transparent 60%),
              linear-gradient(90deg, #1f0f45, #5a2ea6);
  color:#fff;
}
.float-btn.call{
  bottom: 100px;
  background: radial-gradient(120px 60px at 10% 50%, rgba(255, 200, 61, .22), transparent 60%),
              linear-gradient(90deg, #2b155d, #7b49d6);
  color:#fff;
}

/* Glowing effect (safe) */
.float-btn::after{
  content:"";
  position:absolute;
  inset:-30%;
  background: radial-gradient(circle, rgba(255,200,61,.28), transparent 55%);
  animation: glow 2.8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes glow{
  0%,100%{ transform: translateX(-10%) translateY(0); opacity:.75; }
  50%{ transform: translateX(10%) translateY(-4%); opacity:1; }
}

/* ✅ Mobile: make buttons compact circles so no extra width */
@media (max-width: 575px){
  .float-btn{
    right: 12px;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 18px;
    justify-content: center;
    gap: 0;
  }
  .float-btn .float-label{ display: none !important; }
  .float-btn i{ font-size: 1.35rem; }

  .float-btn.whatsapp{ bottom: 26px; }
  .float-btn.call{ bottom: 100px; }
}

/* Back to top */
.back-to-top{
  position: fixed;
  left: 18px;
  bottom: 30px;
  width: 46px; height: 46px;
  border-radius: 16px;
  border: none;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  color: #1b1031;
  box-shadow: 0 18px 55px rgba(255, 200, 61, .25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 9999;
}
.back-to-top.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px){
  .section-pad{ padding: 64px 0; }
  .why-grid{ grid-template-columns: 1fr; }
  .hero-slide{ padding: 60px 0 120px; }
}
@media(max-width:767px)
{
    .cu-fm{
        margin-bottom:15px;
    }
}
@media(max-width:768px)
{
	.cu-mb-ds-nn{
	display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
}
@media (max-width: 575px){
  .hero-card{ padding: 20px; }
  .gallery-thumb{ height: 200px; }
  .float-btn .float-label{ display:none; } /* icons only on very small screens */
}