:root{
  --blue:#0B1F3B;
  --blue2:#0F2C55;
  --orange:#F05A28;
  --yellow:#F9C74F;
  --text:#0b1220;
  --muted:#5c677d;
  --card:#ffffff;
  --soft:#f7f9fc;
  --shadow: 0 14px 40px rgba(10, 22, 45, .12);
  --shadow2: 0 10px 24px rgba(10, 22, 45, .10);
  --radius: 18px;
}

/* Prevent horizontal overflow on entire site */
html, body{
  overflow-x: hidden;
}

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

/* ===== Utilities ===== */
.section-pad{padding: 80px 0;}
.section-alt{background: linear-gradient(180deg, rgba(249,199,79,.12), rgba(240,90,40,.06));}
.section-title{
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  letter-spacing:.2px;
  color: var(--blue);
}
.section-subtitle{color: var(--muted);}
.section-lead{color: var(--muted); font-size: 1.05rem;}

@media (max-width: 991px){
  .section-pad{padding: 64px 0;}
}

/* ===== Topbar ===== */
.topbar{
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  color: rgba(255,255,255,.92);
  font-size: .92rem;
}
.topbar a{color: rgba(255,255,255,.95); text-decoration:none;}
.topbar a:hover{color: var(--yellow);}
.topbar-item{display:flex; align-items:center; gap:.45rem;}
.btn-topbar{
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border: 0;
  color: #1b1b1b;
  font-weight: 600;
  border-radius: 999px;
  padding: .42rem .8rem;
}



/* ===== Header / Navbar ===== */
.header{
  backdrop-filter: blur(10px);
  background: rgba(11,31,59,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar{padding: 14px 0;}
.navbar .nav-link{
  color: rgba(255,255,255,.86);
  font-weight: 500;
  position: relative;
}
.navbar .nav-link:hover{color: #fff;}
.navbar .nav-link.active{color: var(--yellow);}

.navbar .nav-link::after{
  content:"";
  position:absolute;
  left: .5rem;
  bottom: .2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transition: width .25s ease;
  border-radius: 99px;
}
.navbar .nav-link:hover::after{width: calc(100% - 1rem);}

.navbar-brand .brand-mark{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight:800;
  font-family:"Montserrat", sans-serif;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
.brand-title{
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  color:#fff;
  font-size:1.1rem;
}
.brand-tagline{color: rgba(255,255,255,.75);}

.btn-brand{
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border: 0;
  color: #171717;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(240,90,40,.24);
}
.btn-brand:hover{filter: brightness(1.02); transform: translateY(-1px);}

.btn-outline-brand{
  border: 1px solid rgba(249,199,79,.7);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}
.btn-outline-brand:hover{
  border-color: transparent;
  background: rgba(249,199,79,.14);
  color:#fff;
}


/* ===== Navbar Logo + Text ===== */
.navbar-logo{
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform .25s ease;
}

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

.brand-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: .3px;
}

.brand-tagline{
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 575px){
  .navbar-logo{
    height: 38px;
  }
  .brand-title{
    font-size: 1rem;
  }
  .brand-tagline{
    font-size: 10px;
  }
}



/* ===== Hero ===== */
.hero{position:relative;}
.hero-slide{
  min-height: 76vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display:flex;
  align-items:center;
}
.hero-slide .overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(60% 70% at 20% 20%, rgba(249,199,79,.22), transparent 60%),
    radial-gradient(55% 60% at 80% 20%, rgba(240,90,40,.18), transparent 62%),
    linear-gradient(90deg, rgba(11,31,59,.88), rgba(11,31,59,.58));
}
.hero-content{position:relative; z-index:2; padding: 28px 0;}
.hero-badge{
  display:inline-flex; align-items:center;
  padding: .45rem .8rem;
  border-radius: 999px;
  font-weight: 600;
  color: #0c1220;
  background: rgba(249,199,79,.95);
}
.hero-title{
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  color:#fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 14px;
}
.hero-text{color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 56ch;}
.hero-mini{
  display:flex; flex-wrap:wrap; gap:10px;
}
.mini-item{
  display:flex; gap:.5rem; align-items:center;
  padding: .5rem .75rem;
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.carousel-control-prev-icon,
.carousel-control-next-icon{filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));}

@media (max-width: 991px){
  .hero-slide{min-height: 72vh;}
  .hero-text{font-size:1rem;}
}

/* ===== About ===== */
.about-card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.about-card::before{
  content:"";
  position:absolute;
  width: 220px; height:220px;
  border-radius: 50%;
  top:-110px; right:-90px;
  background: radial-gradient(circle at 30% 30%, rgba(249,199,79,.55), rgba(240,90,40,.25));
  filter: blur(1px);
}
.about-badge{
  display:inline-flex; align-items:center;
  background: rgba(11,31,59,.08);
  color: var(--blue);
  border: 1px dashed rgba(11,31,59,.25);
  border-radius: 999px;
  padding: .45rem .75rem;
  font-weight: 600;
}
.about-list{list-style:none; padding:0; margin: 18px 0 0;}
.about-list li{display:flex; gap:.6rem; margin: 10px 0; color: var(--muted);}
.about-list i{color: var(--orange);}

.about-cta{
  display:flex; flex-wrap:wrap;
  align-items:center; justify-content:space-between;
  gap:12px;
}
.cta-box{
  display:flex; align-items:center; gap:12px;
  padding: 10px 12px;
  background: rgba(249,199,79,.18);
  border: 1px solid rgba(249,199,79,.35);
  border-radius: 14px;
}
.cta-icon{
  width: 42px; height:42px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  color:#111;
}
.cta-title{font-size:.86rem; color: var(--muted);}
.cta-sub{font-weight: 700; color: var(--blue);}

.feature-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature-item{
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(11,31,59,.06);
  transition: transform .2s ease;
}
.feature-item:hover{transform: translateY(-3px);}
.feature-icon{
  width: 46px; height:46px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(11,31,59,.08);
  color: var(--blue);
  margin-bottom: 10px;
  border: 1px solid rgba(11,31,59,.12);
}
.feature-item h5{font-weight:700; margin-bottom: 6px;}
.feature-item p{color: var(--muted); margin:0; font-size:.95rem;}

@media (max-width: 575px){
  .feature-grid{grid-template-columns: 1fr;}
}


/* ===== About Image ===== */
.about-image-wrap{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,31,59,.10);
}

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

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

.about-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(11,31,59,.10), rgba(11,31,59,.55));
}

.about-image-badge{
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .6rem .9rem;
  border-radius: 999px;
  font-weight: 700;
  color: #0c1220;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  box-shadow: 0 12px 26px rgba(0,0,0,.20);
}

/* Responsive height */
@media (max-width: 991px){
  .about-image{height: 320px;}
}
@media (max-width: 575px){
  .about-image{height: 260px;}
}



/* ===== Services ===== */
/* ===== Services ===== */
.service-card{
  background: #fff;
  border-radius: var(--radius);
  height: 100%;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(11,31,59,.06);
  position: relative;
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card::after{
  content:"";
  position:absolute;
  right:-60px; top:-60px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(240,90,40,.22), rgba(249,199,79,.12));
  border-radius: 50%;
}

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

/* Image on top */
.service-img{
  position: relative;
  height: 190px;
  overflow: hidden;
}
.service-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
}
.service-card:hover .service-img img{
  transform: scale(1.10);
}

/* Soft overlay for style */
.service-img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(11,31,59,.06), rgba(11,31,59,.20));
}

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

/* Icon */
.service-icon{
  width: 58px; height:58px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color:#121212;
  font-size: 1.45rem;
  box-shadow: 0 14px 28px rgba(240,90,40,.22);
  margin-top: -42px; /* makes icon overlap image */
  margin-bottom: 12px;
  border: 2px solid rgba(255,255,255,.85);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  transform-origin: center;
}

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

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

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

.btn-outline-brand{
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: all .25s ease;
}

.btn-outline-brand:hover{
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  color: #111;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(240,90,40,.25);
}



/* ===== Why Choose ===== */
.why-list{display:flex; flex-direction:column; gap:14px;}
.why-item{display:flex; gap:12px; align-items:flex-start;}
.why-icon{
  width: 44px; height:44px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(249,199,79,.22);
  border: 1px solid rgba(249,199,79,.4);
  color: var(--orange);
  flex: 0 0 auto;
}
.why-item h6{margin:0; font-weight:800; color: var(--blue);}
.why-item p{margin:4px 0 0; color: var(--muted);}

.why-card{
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,31,59,.06);
  overflow:hidden;
}
.why-card-head{
  padding: 22px;
  background:
    radial-gradient(60% 80% at 10% 10%, rgba(249,199,79,.18), transparent 65%),
    radial-gradient(65% 80% at 90% 20%, rgba(240,90,40,.14), transparent 60%),
    linear-gradient(90deg, rgba(11,31,59,.06), rgba(11,31,59,.02));
}
.why-card-badge{
  display:inline-block;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(11,31,59,.1);
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
}
.why-card-head h4{margin:10px 0 6px; font-weight:900; color: var(--blue); font-family:"Montserrat", sans-serif;}
.why-card-head p{margin:0; color: var(--muted);}

.why-highlights{
  padding: 18px 22px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.highlight{
  display:flex; align-items:center; gap:10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(11,31,59,.08);
  background: rgba(255,255,255,.7);
}
.highlight i{
  width: 38px; height:38px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(249,199,79,.22);
  color: var(--orange);
  border: 1px solid rgba(249,199,79,.35);
}
.highlight span{font-weight: 700; color: var(--blue); font-size: .95rem;}

.why-card-footer{
  padding: 16px 22px 22px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  border-top: 1px solid rgba(11,31,59,.06);
}
.why-card-footer a{text-decoration:none; color: var(--blue); font-weight: 600;}
.icon-pill{
  width: 44px; height:44px;
  display:grid; place-items:center;
  border-radius: 999px;
  background: rgba(11,31,59,.1);
  color: var(--blue);
  border: 1px solid rgba(11,31,59,.18);
  transition: transform .2s ease;
}
.icon-pill:hover{transform: translateY(-2px);}

@media (max-width: 575px){
  .why-highlights{grid-template-columns: 1fr;}
}

/* ===== Counters ===== */
.counter-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 20px;
  text-align:center;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(11,31,59,.06);
}
.counter-icon{
  width: 56px; height:56px;
  margin: 0 auto 10px;
  border-radius: 20px;
  display:grid; place-items:center;
  background: rgba(11,31,59,.08);
  color: var(--blue);
  border: 1px solid rgba(11,31,59,.12);
  font-size: 1.5rem;
}
.counter-number{
  font-family:"Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
}
.counter-label{color: var(--muted); font-weight: 600;}
.note-pill{
  display:inline-flex; align-items:center;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(249,199,79,.22);
  border: 1px solid rgba(249,199,79,.36);
  color: var(--blue);
  font-weight: 600;
}

/* ===== Gallery ===== */
.gallery-actions .btn{border-radius: 999px;}
.gallery-item{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(11,31,59,.06);
  background: #fff;
  height: 100%;
}
.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 55%, rgba(11,31,59,.85));
  opacity:0;
  transition: opacity .25s ease;
  display:flex;
  align-items:flex-end;
  padding: 14px;
}
.gallery-item:hover .gallery-overlay{opacity:1;}
.gallery-overlay .cap{
  color:#fff;
  font-weight: 700;
  display:flex;
  align-items:center;
  gap: 10px;
}
.cap .cap-ic{
  width: 34px; height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(249,199,79,.92);
  color:#111;
}

/* ===== Contact ===== */
.contact-card, .form-card{
  background:#fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,31,59,.06);
}
.contact-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  margin: 14px 0;
}
.contact-ic{
  width: 44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(249,199,79,.22);
  border: 1px solid rgba(249,199,79,.35);
  color: var(--orange);
  flex: 0 0 auto;
  font-size: 1.2rem;
}
.contact-label{color: var(--muted); font-size:.9rem;}
.contact-value{font-weight: 600; color: var(--blue);}
.contact-value a{text-decoration:none; color: var(--blue);}
.form-control, .form-select{
  border-radius: 14px;
  border: 1px solid rgba(11,31,59,.12);
  padding: .7rem .9rem;
}
.form-control:focus, .form-select:focus{
  border-color: rgba(240,90,40,.55);
  box-shadow: 0 0 0 .2rem rgba(240,90,40,.18);
}

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

/* ===== Footer ===== */
.footer{
  background: linear-gradient(180deg, var(--blue2), var(--blue));
  color: rgba(255,255,255,.88);
  padding: 56px 0 22px;
}
.footer .brand-mark{
  width: 44px; height:44px;
  border-radius: 14px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color:#111;
}
.footer-brand{display:flex; align-items:center; gap:12px;}
.footer-title{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
  color:#fff;
  margin-bottom: 14px;
}
.footer-text{color: rgba(255,255,255,.78);}
.footer-links{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px;}
.footer-links a{
  text-decoration:none;
  color: rgba(255,255,255,.82);
}
.footer-links a:hover{color: var(--yellow);}
.footer-contact{display:flex; flex-direction:column; gap:10px;}
.footer-contact i{color: var(--yellow); margin-right: 8px;}
.footer-contact a{color: rgba(255,255,255,.9); text-decoration:none;}
.footer-social{display:flex; gap:10px;}
.social-pill{
  width: 44px; height:44px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.10);
  color:#fff;
  border: 1px solid rgba(255,255,255,.16);
}
.social-pill:hover{color: var(--yellow); transform: translateY(-2px);}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
}
.footer-bottom i{color: var(--orange);}


/* ===== Footer Logo ===== */
.footer-brand{
  display: flex;
  align-items: center;
}

.footer-logo{
  height: 56px;
  width: auto;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 575px){
  .footer-logo{
    height: 48px;
  }
}


/* ===== Floating Buttons ===== */


/* ===== Floating Buttons (Fixed, No Extra Space) ===== */
.floating-actions{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;

  display:flex;
  flex-direction: column;
  gap: 12px;

  /* ✅ stops it from creating extra width */
  max-width: calc(100vw - 24px);
  pointer-events: none;  /* container doesn't block */
}

.float-btn{
  pointer-events: auto; /* buttons clickable */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;

  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  transition: transform .2s ease;

  /* ✅ prevents width issues */
  white-space: nowrap;
  max-width: 100%;
}

.float-btn i{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.18);
  flex: 0 0 auto;
}

.float-btn:hover{transform: translateY(-2px);}

.float-btn.call{
  background: linear-gradient(90deg, rgba(249,199,79,.95), rgba(240,90,40,.95));
  color:#121212;
  animation: pulseGlow 1.8s infinite;
}

.float-btn.whatsapp{
  background: linear-gradient(90deg, rgba(11,31,59,.92), rgba(15,44,85,.92));
  color:#fff;
  animation: pulseGlowBlue 1.8s infinite;
}

/* ✅ MOBILE: make buttons icon-only circles (no extra width ever) */
@media(max-width:767px)
{
	.mb-ds-nn{
		display:none!important
	}
	.jf-cn-ctnr{justify-content: center !important;}
	
}
@media (max-width: 575px){
  .floating-actions{right: 12px; bottom: 12px;}

  .float-btn{
    width: 54px;
    height: 54px;
    padding: 0;                 /* important */
    border-radius: 999px;
  }

  .float-btn span{display:none;} /* icon-only */
  .float-btn i{
    width: 44px;
    height: 44px;
  }
}

