/* ============================================================
   VISHAKHA FIRE SAFETY — Stylesheet
   ============================================================ */

:root {
  --fire-red: #E4002B;
  --fire-red-dark: #B00021;
  --amber: #FF6B00;
  --charcoal: #161616;
  --charcoal-soft: #232323;
  --grey: #6b6b6b;
  --light: #F5F5F5;
  --white: #ffffff;
  --border: #e6e6e6;
  --shadow: 0 12px 34px rgba(0, 0, 0, .10);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, .08);
  --radius: 12px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .2px;
}

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

.section-pad { padding: 90px 0; }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fire-red);
  margin-bottom: 12px;
  position: relative;
  padding-left: 34px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 26px; height: 3px;
  background: var(--fire-red);
  transform: translateY(-50%);
}
.eyebrow-light { color: var(--amber); }
.eyebrow-light::before { background: var(--amber); }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 800;
  color: var(--charcoal);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-head { max-width: 700px; margin: 0 auto 50px; }
.section-desc { color: var(--grey); font-size: 1.05rem; }
.lead-text { font-size: 1.08rem; color: #3d3d3d; }

/* ---------- Buttons ---------- */
.btn-fire {
  background: var(--fire-red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background .25s ease, transform .25s ease;
}
.btn-fire:hover { background: var(--fire-red-dark); color: var(--white); transform: translateY(-2px); }

.btn-call {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background .25s ease;
}
.btn-call:hover { background: var(--fire-red); color: var(--white); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--charcoal);
  color: #cfcfcf;
  font-size: .88rem;
  padding: 9px 0;
}
.topbar i { color: var(--fire-red); margin-right: 5px; }
.topbar a { color: #cfcfcf; transition: color .2s; }
.topbar a:hover { color: var(--fire-red); }

/* ---------- Navbar ---------- */
.site-nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--fire-red);
  color: var(--white);
  border-radius: 10px;
  font-size: 1.4rem;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1;
}
.brand-text strong { color: var(--fire-red); }
.site-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 8px;
  position: relative;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--fire-red); }

/* ---------- Hero ---------- */
.hero-slide {
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 620px; padding: 60px 0; text-align: left; }
.hero-eyebrow {
  display: inline-block;
  background: var(--fire-red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: .9rem;
  margin-bottom: 20px;
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-sub { color: #eaeaea; font-size: 1.15rem; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .carousel-control-prev,
.hero .carousel-control-next { width: 5%; opacity: .8; }

/* ---------- Feature strip ---------- */
.feature-strip {
  background: var(--fire-red);
  margin-top: -1px;
}
.feature-col { border-right: 1px solid rgba(255,255,255,.18); }
.feature-col:last-child { border-right: none; }
.feature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 26px 30px;
  color: var(--white);
}
.feature-item i { font-size: 2.4rem; }
.feature-item h6 { font-size: 1.15rem; margin: 0 0 3px; text-transform: uppercase; }
.feature-item p { margin: 0; font-size: .9rem; color: #ffe1e6; }

/* ---------- About ---------- */
.about-images { position: relative; padding-bottom: 40px; padding-right: 40px; }
.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3.4;
}
.about-img-overlap {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-badge {
  position: absolute;
  left: -10px; top: 26px;
  background: var(--fire-red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 150px;
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
}
.about-badge-num span { font-size: 1.6rem; }
.about-badge-label { font-size: .82rem; line-height: 1.2; display: block; margin-top: 4px; }
.about-points { margin-top: 22px; }
.about-points > div { font-weight: 600; color: #2c2c2c; }
.about-points i { color: var(--fire-red); margin-right: 8px; }

/* ---------- Ribbon marquee ---------- */
.ribbon-wrap {
  background: var(--charcoal);
  transform: rotate(-2deg);
  margin: 40px -20px;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ribbon-track { display: inline-flex; will-change: transform; }
.ribbon-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 34px;
  letter-spacing: 1px;
}
.ribbon-item i { color: var(--fire-red); margin-right: 10px; }

/* ---------- Services ---------- */
.services-section { background: var(--light); }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-img {
  /* height: 210px; */
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-icon {
  position: absolute;
  left: 22px; bottom: -26px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--fire-red);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.service-body { padding: 40px 24px 26px; }
.service-body h5 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 10px; }
.service-body p { color: var(--grey); font-size: .96rem; margin-bottom: 18px; }

/* ---------- Skewed CTA strip ---------- */
.cta-strip {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  padding: 54px 0;
  overflow: hidden;
}
.cta-skew {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: var(--fire-red);
  transform: skewX(-18deg);
  transform-origin: top right;
  right: -8%;
}
.cta-title { font-size: clamp(1.5rem, 3vw, 2.2rem); text-transform: uppercase; margin: 0 0 6px; }
.cta-text { margin: 0; color: #d9d9d9; }
.cta-btn { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: var(--fire-red); }
.cta-btn:hover { color: var(--fire-red-dark); }

/* ---------- Stats ---------- */
.stats-section { background: var(--fire-red); padding: 60px 0; color: var(--white); }
.stat-num, .stat-plus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
}
.stat-item p { margin: 8px 0 0; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; font-size: .92rem; }

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(22,22,22,.82);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  font-size: .95rem;
}

/* ---------- Why choose us ---------- */
.why-section { background: var(--light); }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease;
  border-bottom: 4px solid transparent;
}
.why-card:hover { transform: translateY(-6px); border-bottom-color: var(--fire-red); }
.why-num {
  position: absolute;
  right: 14px; top: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
  color: rgba(228,0,43,.08);
  line-height: 1;
}
.why-card i { font-size: 2.4rem; color: var(--fire-red); margin-bottom: 16px; display: block; }
.why-card h5 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: 10px; }
.why-card p { color: var(--grey); font-size: .95rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-section { background: var(--charcoal); color: var(--white); }
.contact-section .text-white { color: var(--white) !important; }
.contact-intro { color: #cfcfcf; margin-bottom: 26px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 20px; }
.contact-list i {
  font-size: 1.15rem;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--fire-red);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-list strong { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; }
.contact-list span { color: #cfcfcf; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-card .form-label { color: var(--charcoal); font-weight: 600; font-size: .9rem; }
.contact-card .form-control,
.contact-card .form-select {
  border: 1px solid var(--border);
  padding: 11px 14px;
  border-radius: 8px;
}
.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: var(--fire-red);
  box-shadow: 0 0 0 .2rem rgba(228,0,43,.15);
}

/* ---------- Footer ---------- */
.site-footer { background: #101010; color: #b9b9b9; padding: 60px 0 0; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-text { color: var(--white); }
.footer-about { font-size: .95rem; margin-bottom: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  background: var(--charcoal-soft);
  color: var(--white);
  border-radius: 8px;
  margin-right: 8px;
  transition: background .25s;
}
.footer-social a:hover { background: var(--fire-red); }
.footer-head { color: var(--white); text-transform: uppercase; font-size: 1.2rem; margin-bottom: 18px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px;     border-bottom: 1px solid;}
.footer-links a { color: #b9b9b9; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--fire-red); padding-left: 5px; }
.footer-contact li { margin-bottom: 12px; }
.footer-contact i { color: var(--fire-red); margin-right: 8px; }
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: .9rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Floating buttons ---------- */
.float-btn {
  position: fixed;
  bottom: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}
.float-whatsapp { left: 24px; background: #25D366; }
.float-call { right: 24px; background: var(--fire-red); }
.float-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: floatPulse 2s ease-out infinite;
}
.float-whatsapp::after { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
.float-call::after { box-shadow: 0 0 0 0 rgba(228,0,43,.6); }
@keyframes floatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
  70%  { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Our Expertise (text grid) ---------- */
.expertise-section { background: var(--white); }
.exp-item {
  padding: 6px 0 6px 22px;
  border-left: 3px solid var(--border);
  height: 100%;
  transition: border-color .3s ease;
}
.exp-item:hover { border-left-color: var(--fire-red); }
.exp-item h5 {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.exp-item p { color: var(--grey); font-size: .96rem; margin-bottom: 14px; }
.exp-link {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .92rem;
  color: var(--fire-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s ease, color .25s ease;
}
.exp-link i { font-size: .78rem; }
.exp-link:hover { color: var(--fire-red-dark); gap: 11px; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--light); }
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 10px !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--white);
  padding: 20px 22px;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--white);
  background: var(--fire-red);
}
.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 .2rem rgba(228,0,43,.15);
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%23E4002B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
  color: var(--grey);
  font-size: .98rem;
  padding: 18px 22px 22px;
}
.ser-ul {
	padding-left:0px;
}
.ser-ul li{
	list-style:none
}
.cu-lg-wdth{
	width:270px;
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: var(--white);
    padding: 16px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: var(--shadow-sm);
  }
  .site-nav .nav-link { margin: 6px 0; }
  .site-nav .btn-fire { display: inline-block; margin-top: 8px; }
  .feature-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
  .feature-col:last-child { border-bottom: none; }
  .hero-slide { min-height: 540px; }
  .cta-skew { display: none; }
  .cta-strip { text-align: center; }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important;
	}
  .section-pad { padding: 60px 0; }
  .hero-slide { min-height: 500px; }
  .hero-content { padding: 40px 0; }
  .about-images { padding-right: 20px; padding-bottom: 30px; }
  .about-img-overlap { width: 46%; }
  .about-badge { padding: 12px 14px; max-width: 120px; }
  .about-badge-num { font-size: 2rem; }
  .ribbon-item { font-size: 1.1rem; padding: 0 22px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; bottom: 18px; }
  .float-whatsapp { left: 16px; }
  .float-call { right: 16px; }
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:220px;
}
}
