/* ===================================================
   National Safety Project — Invisible Grill Thane
   =================================================== */

:root {
  --primary: #0e3a5f;
  --primary-dark: #0a2942;
  --primary-light: #1b5a8c;
  --accent: #f6871f;
  --accent-dark: #e0730c;
  --ink: #16232f;
  --muted: #5c6b7a;
  --bg: #ffffff;
  --bg-soft: #f3f7fa;
  --line: #e4ebf1;
  --white: #ffffff;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(14, 58, 95, .08);
  --shadow-md: 0 12px 30px rgba(14, 58, 95, .12);

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-display); font-weight: 600; border-radius: 50px; padding: .6rem 1.4rem; transition: all .25s ease; }
.btn-lg { padding: .85rem 1.9rem; }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }

.btn-accent { background: var(--accent); border: 2px solid var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-2px); }

.btn-outline-primary { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }

.btn-light-outline { border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-light-outline:hover { background: #fff; color: var(--primary); }

/* ---------- Topbar ---------- */
.topbar { background: var(--primary-dark); color: #cfe0ee; font-size: .85rem; padding: .5rem 0; }
.topbar-link { color: #e8f1f8; }
.topbar-link:hover { color: var(--accent); }
.topbar-sep { color: rgba(255,255,255,.25); }
.topbar-muted { color: #9fb8cc; }
.topbar i { color: var(--accent); margin-right: .25rem; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: var(--shadow-sm); }
.navbar { padding: .7rem 0; }
.navbar-brand img { display: block; }
.navbar-nav .nav-link { font-family: var(--font-display); font-weight: 500; color: var(--ink); padding: .5rem 1rem; position: relative; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary); }
.navbar-nav .nav-link::after {
  content: ''; position: absolute; left: 1rem; right: 1rem; bottom: .3rem; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* ---------- Hero ---------- */
.hero-slide {
  min-height: 620px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 640px; color: #fff; padding: 3rem 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(246,135,31,.18); border: 1px solid rgba(246,135,31,.5);
  color: #ffd9ac; padding: .4rem 1rem; border-radius: 50px; font-size: .85rem; font-weight: 500;
  margin-bottom: 1.2rem;
}
.hero-title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.hero-text { font-size: clamp(1rem, 2vw, 1.2rem); color: #dce9f3; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.carousel-control-prev, .carousel-control-next { width: 5%; opacity: .7; }
.carousel-control-prev { justify-content: flex-start; padding-left: 1rem; }
.carousel-control-next { justify-content: flex-end; padding-right: 1rem; }

/* ---------- Stats ---------- */
.stats-band { background: var(--primary); padding: 2.5rem 0; }
.stat { color: #fff; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; display: block; color: var(--accent); }
.stat-label { font-size: .9rem; color: #cfe0ee; }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); overflow: hidden; padding: .9rem 0; white-space: nowrap; }
.marquee-track { display: inline-block; will-change: transform; }
.marquee-track span { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1rem; margin: 0 1.5rem; text-transform: uppercase; letter-spacing: .5px; }
.marquee-track span:nth-child(even) { color: var(--accent); }

/* ---------- Section base ---------- */
.section { padding: 5rem 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 auto 3rem; }
.eyebrow { display: inline-block; color: var(--accent); font-family: var(--font-display); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: .6rem; }
.eyebrow-light { color: var(--accent); }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 640px; }

/* ---------- About ---------- */
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.check-list li { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .8rem; color: var(--ink); }
.check-list i { color: var(--accent); font-size: 1.15rem; flex-shrink: 0; margin-top: .1rem; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Specialities ---------- */
.spec-img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.spec-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.spec-badge { position: absolute; left: 18px; bottom: 18px; background: var(--accent); color: #fff; padding: .7rem 1.1rem; border-radius: var(--radius-sm); font-size: .82rem; line-height: 1.2; box-shadow: var(--shadow-md); }
.spec-badge strong { display: block; font-family: var(--font-display); font-size: 1.25rem; }
.spec-badge-blue { background: var(--primary); }
.spec-title { font-size: clamp(1.4rem, 3vw, 2rem); margin: .4rem 0 1rem; }

/* ---------- Inner page hero (slider) ---------- */
.hero--page .hero-slide { min-height: 420px; }
.hero--page .hero-content { text-align: center; margin: 0 auto; max-width: 760px; }
.hero--page .hero-actions { justify-content: center; }
.page-crumb { color: #ffd9ac; font-size: .9rem; margin-bottom: .6rem; }
.page-crumb a { color: #ffd9ac; }
.page-crumb a:hover { color: #fff; }

/* ---------- FAQ accordion ---------- */
.faq-accordion .accordion-item { border: 1px solid var(--line); border-radius: var(--radius-sm) !important; margin-bottom: 1rem; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.faq-accordion .accordion-button { font-family: var(--font-display); font-weight: 600; color: var(--ink); background: #fff; padding: 1.1rem 1.3rem; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: rgba(246,135,31,.06); box-shadow: none; }
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.faq-accordion .accordion-button::after { width: 1.1rem; height: 1.1rem; background-size: 1.1rem; }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: invert(50%) sepia(80%) saturate(1500%) hue-rotate(360deg); }
.faq-accordion .accordion-body { color: var(--muted); padding: 0 1.3rem 1.3rem; }

/* ---------- Feature cards ---------- */
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.5rem; height: 100%; transition: all .25s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon { width: 60px; height: 60px; border-radius: 14px; background: rgba(246,135,31,.12); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.2rem; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.feature-card p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.feature-link { color: var(--primary); font-weight: 600; font-size: .9rem; font-family: var(--font-display); }
.feature-link:hover { color: var(--accent); }

/* ---------- Consultation band ---------- */
.consult-band { background: linear-gradient(90deg, var(--accent), var(--accent-dark)); padding: 3rem 0; }
.consult-title { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
.consult-points { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.consult-points span { color: #fff; font-weight: 500; font-family: var(--font-display); }
.consult-points i { margin-right: .35rem; }
.consult-call { color: var(--accent-dark); font-weight: 700; }

/* ---------- Service cards ---------- */
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: all .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-img { /*aspect-ratio: 4/3; */overflow: hidden; background: var(--bg-soft); }
.service-img img { width: 100%;/* height: 100%; object-fit: cover;*/ transition: transform .4s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-card h3 { font-size: 1.15rem; margin: 1.2rem 1.2rem .6rem; }
.service-card > p { color: var(--muted); font-size: .92rem; margin: 0 1.2rem 1rem; }
.mini-list { list-style: none; padding: 0 1.2rem; margin: 0 0 1.2rem; flex-grow: 1; }
.mini-list li { color: var(--ink); font-size: .88rem; display: flex; align-items: center; }
.mini-list i { color: var(--accent); font-size: 1.3rem; }
.service-card .btn { margin: 0 1.2rem 1.2rem; width: calc(100% - 2.4rem); }

/* ---------- Why (dark) ---------- */
.section-dark { background: var(--primary-dark); }
.text-light-muted { color: #a9c3d6 !important; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 2rem 1.5rem; height: 100%; text-align: center; transition: all .25s ease; }
.why-card:hover { background: rgba(255,255,255,.09); transform: translateY(-6px); }
.why-icon { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; }
.why-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: .5rem; }
.why-card p { color: #a9c3d6; font-size: .9rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-item { display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-sm); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after { content: '\F52A'; font-family: 'bootstrap-icons'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(14,58,95,.55); color: #fff; font-size: 1.8rem; opacity: 0; transition: opacity .25s ease; }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Testimonials ---------- */
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; height: 100%; box-shadow: var(--shadow-sm); }
.stars { color: var(--accent); margin-bottom: 1rem; }
.review-card p { color: var(--ink); font-style: italic; margin-bottom: 1.4rem; }
.reviewer { display: flex; align-items: center; gap: .8rem; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); }
.reviewer strong { display: block; font-family: var(--font-display); }
.reviewer small { color: var(--muted); }

/* ---------- Contact ---------- */
.contact-info { margin-top: 1.5rem; }
.ci-item { display: flex; align-items: flex-start; gap: .8rem; margin-bottom: 1rem; }
.ci-item i { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; margin-top: .15rem; }
.ci-item a { color: var(--ink); }
.ci-item a:hover { color: var(--accent); }
.contact-card { background: #fff; border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-md); }
.contact-card h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.contact-card .muted { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.form-label { font-weight: 500; font-size: .9rem; }
.form-control { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .7rem 1rem; }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 .2rem rgba(246,135,31,.15); }
.or-call { text-align: center; margin-top: 1rem; color: var(--muted); }
.or-call a { color: var(--primary); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-dark); color: #b8cddd; padding: 3.5rem 0 0; }
.site-footer p { color: #9fb8cc; font-size: .92rem; }
.footer-logo { background: #fff; padding: .4rem .6rem; border-radius: 8px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.2rem; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: .7rem; }
.footer-links a { color: #b8cddd; font-size: .92rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { color: #b8cddd; font-size: .9rem; display: flex; gap: .5rem; }
.footer-contact i { color: var(--accent); flex-shrink: 0; margin-top: .2rem; }
.footer-contact a { color: #b8cddd; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding: 1.4rem 0; text-align: center; }
.footer-bottom p { margin: 0; font-size: .88rem; }

/* ---------- Floating buttons ---------- */
.float-btn { position: fixed; bottom: 24px; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; z-index: 999; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.float-wa { left: 24px; background: #25d366; }
.float-call { right: 24px; background: var(--accent); }
.float-btn:hover { color: #fff; transform: scale(1.08); }
.float-wa::before, .float-call::before { content: ''; position: absolute; inset: 0; border-radius: 50%; z-index: -1; }
.float-wa::before { box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: pulse-wa 2s infinite; }
.float-call::before { box-shadow: 0 0 0 0 rgba(246,135,31,.6); animation: pulse-call 2s infinite; }
@keyframes pulse-wa { 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes pulse-call { 70% { box-shadow: 0 0 0 16px rgba(246,135,31,0); } 100% { box-shadow: 0 0 0 0 rgba(246,135,31,0); } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(10,25,40,.92); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92%; max-height: 88%; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.cu-lg-wdth{
	width:250px;
}
/* ===================================================
   RESPONSIVE (mobile-first adjustments)
   =================================================== */
@media (max-width: 991.98px) {
  .navbar-collapse { background: #fff; padding: 1rem; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin-top: .7rem; }
  .header-cta { margin-top: .8rem; }
  .header-cta .btn { flex: 1; }
  .hero-slide { min-height: 520px; }
  .consult-points { gap: .8rem 1.2rem; }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cnt{
		justify-content:center!important
	}
  .section { padding: 3.5rem 0; }
  .hero-slide { min-height: 480px; }
  .hero-content { padding: 2rem 0; }
  .hero-actions .btn { flex: 1; text-align: center; }
  .consult-band .text-lg-end { text-align: left !important; }
  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; bottom: 18px; }
  .float-wa { left: 16px; }
  .float-call { right: 16px; }
  .carousel-control-prev, .carousel-control-next { display: none; }
}

@media (max-width: 575.98px) {
  .hero-badge { font-size: .78rem; }
  .contact-card { padding: 1.5rem; }
  .review-card { padding: 1.5rem; }
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:220px;
}
}