/* ==============================
   ROOT COLORS (LOGO BASED)
================================ */
:root{
  --fire-red:#b71c1c;
  --fire-orange:#f57c00;
  --dark-grey:#2e2e2e;
  --light-grey:#f5f5f5;
  --white:#ffffff;
}

/* ==============================
   GLOBAL
================================ */
body{
  font-family:"Segoe UI", Arial, sans-serif;
  color:var(--dark-grey);
}
a{
  text-decoration:none;
}
.btn-danger{
  background:var(--fire-red);
  border-color:var(--fire-red);
}
.btn-danger:hover{
  background:#9f1616;
}
.btn-warning{
  background:var(--fire-orange);
  border-color:var(--fire-orange);
}

/* ==============================
   TOP INFO BAR (RED)
================================ */
.top-info-bar{
  background:var(--fire-red);
  color:#fff;
  padding:8px 0;
  font-size:13px;
}
.top-info-bar i{
  color:#fff;
}
.top-info-bar a{
  color:#fff;
  font-weight:600;
}

/* ==============================
   NAVBAR (WHITE - LOGO VISIBLE)
================================ */
.main-navbar{
  background:#fff;
}
.navbar-brand span{
  font-size:13px;
  font-weight:700;
  color:var(--dark-grey);
}
.navbar-nav .nav-link{
  color:#333 !important;
  padding:12px 16px;
  font-weight:600;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
  background:var(--fire-orange);
  color:#000 !important;
  border-radius:3px;
}

/* ==============================
   HERO SLIDER – FINAL
================================ */

.hero-slider .carousel-item{
  height:80vh;
  min-height:520px;
  background-size:cover;
  background-position:center;
  position:relative;
}

/* LIGHT OVERLAY – IMAGE CLEAR */
.hero-slider .overlay{
  position:absolute;
  /* inset:0; */
  background:rgba(0,0,0,0.25);
}

/* ROW HEIGHT */
.banner-row{
  min-height:80vh;
}

/* CONTENT BOX (NO BLUR) */
.banner-content{
  position:relative;
  z-index:2;
  /* background:rgba(0,0,0,0.6); */
  /* padding:40px 45px; */
  /* border-left:5px solid var(--fire-orange); */
  /* max-width:560px; */
}

/* TEXT */
.banner-content h1{
  font-size:46px;
  font-weight:800;
  color:#fff;
  margin-bottom:15px;
  text-shadow:0 4px 12px rgba(0,0,0,.7);
}

.banner-content p{
  font-size:18px;
  color:#f1f1f1;
  margin-bottom:30px;
}

/* BUTTONS */
.banner-buttons .btn{
  padding:12px 30px;
  font-weight:700;
  margin-right:10px;
}

/* SLIDER ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter:invert(1);
}

/* RESPONSIVE */
@media(max-width:991px){
  .banner-content{
    padding:30px;
  }
  .banner-content h1{
    font-size:32px;
  }
}


/* ==============================
   SECTION COMMON
================================ */
.section{
  padding:70px 0;
}
.section-title{
  text-align:center;
  margin-bottom:50px;
}
.section-title h2{
  color:var(--fire-red);
  font-weight:700;
}
.section-title p{
  color:#666;
}

/* ==============================
   SERVICES / CARDS
================================ */
.service-box{
  background:#fff;
  padding:30px 25px;
  text-align:center;
  border-radius:4px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}
.service-box:hover{
  transform:translateY(-8px);
  border-top:4px solid var(--fire-orange);
}
.service-box i{
  font-size:40px;
  color:var(--fire-red);
  margin-bottom:15px;
}
.service-box h5{
  font-weight:700;
}

/* ==============================
   DARK TRUST SECTION
================================ */
.dark-section{
  background:var(--dark-grey);
  color:#eee;
  padding:70px 0;
}
.dark-section h2{
  color:var(--fire-orange);
}
.dark-feature{
  text-align:center;
  padding:20px;
}
.dark-feature i{
  font-size:36px;
  color:var(--fire-orange);
  margin-bottom:10px;
}

/* ==============================
   FOOTER – PREMIUM
================================ */
.main-footer{
  background:#1f1f1f;
  color:#ccc;
  padding:70px 0 0;
}

.main-footer h5{
  color:var(--fire-orange);
  font-weight:700;
  margin-bottom:18px;
}

.footer-about{
  font-size:14px;
  line-height:1.7;
  margin-bottom:20px;
}

/* LINKS */
.footer-links{
  list-style:none;
  padding:0;
}
.footer-links li{
  margin-bottom:10px;
}
.footer-links a{
  color:#ccc;
  font-size:14px;
  transition:.3s;
}
.footer-links a:hover{
  color:var(--fire-orange);
  padding-left:5px;
}

/* CONTACT */
.footer-contact{
  font-size:14px;
  margin-bottom:10px;
}
.footer-contact i{
  color:var(--fire-orange);
  margin-right:8px;
}

/* SOCIAL ICONS */
.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  background:#2b2b2b;
  color:#fff;
  border-radius:50%;
  margin-right:8px;
  transition:.3s;
}
.footer-social a:hover{
  background:var(--fire-orange);
  color:#000;
  transform:translateY(-3px);
}

/* BOTTOM BAR */
.footer-bottom{
  background:#111;
  margin-top:50px;
  padding:15px 0;
  font-size:13px;
  color:#aaa;
}


/* ==============================
   RESPONSIVE
================================ */
@media(max-width:991px){
  .hero-slider h1{
    font-size:34px;
  }
  .hero-slider{
    text-align:center;
  }
}
@media(max-width:576px){
  .hero-slider h1{
    font-size:26px;
  }
  .hero-slider p{
    font-size:15px;
  }
}

/* ==============================
   ABOUT SECTION – SMART VERSION
================================ */

.about-section-smart{
  background:#fff;
}

/* TOP TEXT */
.section-badge{
  display:inline-block;
  background:rgba(245,124,0,.15);
  color:var(--fire-orange);
  font-weight:700;
  font-size:12px;
  padding:6px 12px;
  margin-bottom:10px;
}

.about-heading{
  font-size:38px;
  font-weight:800;
  margin-bottom:15px;
}

.about-lead{
  font-size:16px;
  color:#555;
  max-width:650px;
}

/* IMAGE + STATS */
.about-visual{
  position:relative;
}
.about-visual img{
  border-radius:6px;
}
.about-stats{
  position:absolute;
  bottom:20px;
  left:20px;
  display:flex;
  gap:15px;
}
.about-stats div{
  background:#fff;
  padding:14px 18px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,.15);
}
.about-stats strong{
  display:block;
  font-size:22px;
  color:var(--fire-red);
}
.about-stats span{
  font-size:12px;
  font-weight:600;
}

/* CARDS */
.about-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.about-card{
  display:flex;
  gap:15px;
  background:#f8f8f8;
  padding:20px;
  border-radius:6px;
  transition:.3s;
}
.about-card i{
  font-size:28px;
  color:var(--fire-red);
}
.about-card h6{
  font-weight:700;
  margin-bottom:6px;
}
.about-card p{
  font-size:14px;
  color:#555;
  margin:0;
}
.about-card:hover{
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transform:translateY(-4px);
}

/* RESPONSIVE */
@media(max-width:991px){
  .about-cards{
    grid-template-columns:1fr;
  }
  .about-heading{
    font-size:30px;
  }
}

/* ==============================
   SOFT CTA – PREMIUM
================================ */

.cta-soft{
  background:#fff;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
  padding:60px 0;
}

.cta-soft-content{
  max-width:700px;
}

/* SMALL TAG */
.cta-tag{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:var(--fire-red);
  background:rgba(183,28,28,.08);
  padding:6px 14px;
  margin-bottom:10px;
}

/* HEADING */
.cta-soft-content h2{
  font-size:36px;
  font-weight:800;
  margin-bottom:12px;
  color:#1f1f1f;
}

.cta-soft-content h2 span{
  color:var(--fire-red);
}

/* TEXT */
.cta-soft-content p{
  font-size:16px;
  color:#555;
  margin:0;
}

/* BUTTON */
.btn-soft-cta{
  background:var(--fire-red);
  color:#fff;
  padding:14px 34px;
  font-weight:700;
  border-radius:3px;
  transition:.3s;
}

.btn-soft-cta:hover{
  background:var(--fire-orange);
  color:#000;
  transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:991px){
  .cta-soft{
    text-align:center;
  }
  .cta-soft-content h2{
    font-size:28px;
  }
}

/* ==============================
   FIRE SAFETY PROCESS – UNIQUE
================================ */

.fire-process{
  background:#f7f9fc; /* different background */
}

/* TAG */
.process-tag{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  color:var(--fire-red);
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:8px;
}

/* HEADING */
.process-heading{
  font-size:36px;
  font-weight:800;
  margin-bottom:12px;
  color:#1f1f1f;
}

.process-subtitle{
  font-size:16px;
  color:#555;
}

/* PROCESS BOX */
.process-box{
  background:#fff;
  padding:30px 24px;
  height:100%;
  border-radius:6px;
  position:relative;
  transition:.3s;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.process-box:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,0,0,.1);
}

/* STEP NUMBER */
.process-box .step{
  position:absolute;
  top:-18px;
  right:18px;
  background:var(--fire-red);
  color:#fff;
  font-weight:800;
  font-size:14px;
  padding:6px 12px;
}

/* TEXT */
.process-box h6{
  font-weight:700;
  margin-bottom:10px;
}

.process-box p{
  font-size:14px;
  color:#555;
  margin:0;
}

/* RESPONSIVE */
@media(max-width:991px){
  .process-heading{
    font-size:28px;
  }
}

.unique-fire-section {
    padding: 100px 5%;
    background-color: #f0f4f8; /* Soft Greyish-Blue background for better box visibility */
    font-family: 'Poppins', sans-serif;
}

.uf-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading Styles */
.uf-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.uf-subtitle {
    color: #ff4d4d;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.uf-section-header h2 {
    font-size: 2.5rem;
    color: #0f172a;
    font-weight: 800;
}

.uf-highlight {
    color: #ff4d4d;
}

.uf-underline {
    width: 60px;
    height: 4px;
    background: #ff4d4d;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Grid & Cards */
.uf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.uf-card {
    position: relative;
    height: 320px;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.uf-shield-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff; /* Pure white makes boxes pop on the grey bg */
    border-radius: 20px 20px 100px 20px; 
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.uf-card:hover .uf-shield-bg {
    transform: translateY(-10px);
    border-color: #ff4d4d;
    box-shadow: 0 25px 50px rgba(255, 77, 77, 0.12);
}

.uf-content {
    position: relative;
    padding: 40px 30px;
    z-index: 2;
}

.uf-number {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: #cbcccd; /* Subtle number */
    transition: 0.4s;
}

.uf-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.uf-card h3 {
    color: #1e293b;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.uf-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Staggered effect for desktop only */
@media (min-width: 992px) {
    .uf-card:nth-child(even) {
        transform: translateY(30px);
    }
}


.vf-trust-wrap {
    padding: 100px 5%;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.vf-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vf-flex-row {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* Left Visual Area */
.vf-visual-area {
    flex: 1;
    min-width: 350px;
    position: relative;
    height: 400px;
}

.vf-main-box {
    width: 300px;
    height: 350px;
    background: #0f172a; /* Dark Navy */
    border-radius: 30px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.vf-experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ff3e3e;
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 62, 62, 0.3);
}

.vf-experience-badge strong { font-size: 2rem; display: block; }

.vf-security-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vf-main-icon { font-size: 80px; font-style: normal; }

.vf-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid #ff3e3e;
    border-radius: 50%;
    animation: vf-ripple 2s infinite;
    top: -35px;
    left: -35px;
}

@keyframes vf-ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.vf-floating-card {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

/* Right Content Area */
.vf-text-area { flex: 1.2; min-width: 350px; }

.vf-subheading {
    color: #ff3e3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vf-main-heading {
    font-size: 2.8rem;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.vf-gradient-text {
    background: linear-gradient(90deg, #ff3e3e, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vf-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.vf-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.vf-feature-icon {
    width: 50px;
    height: 50px;
    background: #fff5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.vf-feature-info h5 { margin: 0 0 5px; font-size: 1.2rem; color: #0f172a; }
.vf-feature-info p { margin: 0; color: #64748b; font-size: 0.95rem; }

.vf-smart-btn {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 10px;
}

.vf-smart-btn:hover {
    background: #ff3e3e;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .vf-main-heading { font-size: 2rem; }
    .vf-visual-area { height: auto; margin-bottom: 50px; }
}

/* Final CTA Section Styles */
.vf-final-cta {
    padding: 60px 5% 100px; /* Bottom padding extra for footer spacing */
    background-color: #f0f4f8; /* Same as your 6th section bg to maintain flow */
    font-family: 'Poppins', sans-serif;
}

.vf-cta-container {
    max-width: 1100px;
    margin: 0 auto;
}

.vf-cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

.vf-cta-content {
    flex: 1;
    z-index: 2;
}

.vf-cta-tag {
    color: #ff4d4d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.vf-cta-content h2 {
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.vf-cta-content h2 span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.vf-cta-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Buttons */
.vf-cta-buttons {
    display: flex;
    gap: 20px;
}

.vf-btn-primary {
    background: #ff4d4d;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vf-btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.vf-btn-primary:hover { transform: scale(1.05); background: #e63939; }
.vf-btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* Visual Side */
.vf-cta-visual {
    position: relative;
    flex: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.vf-shield-icon {
    font-size: 120px;
    filter: drop-shadow(0 0 20px rgba(255, 77, 77, 0.4));
    z-index: 3;
}

.vf-waves div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 77, 77, 0.2);
    border-radius: 50%;
    animation: vf-wave-anim 3s infinite linear;
}

.vf-wave-1 { width: 200px; height: 200px; }
.vf-wave-2 { width: 300px; height: 300px; animation-delay: 1.5s !important; }

@keyframes vf-wave-anim {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Responsive */
@media (max-width: 900px) {
    .vf-cta-card { flex-direction: column; text-align: center; padding: 40px 20px; }
    .vf-cta-content p { margin: 20px auto 30px; }
    .vf-cta-buttons { justify-content: center; }
    .vf-cta-visual { margin-top: 50px; }
}

/* Unique Prefix 'vap-' to avoid conflicts */
.vaibhav-about-page { background: #fff; font-family: 'Segoe UI', Roboto, sans-serif; overflow: hidden; }
.vap-container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.vap-red { color: #d32f2f; }

/* Hero Section */
.vap-hero { padding: 100px 0; background: #fff; }
.vap-flex-row { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.vap-main-text { flex: 1.2; min-width: 350px; }
.vap-top-tag { font-size: 14px; font-weight: 800; color: #666; letter-spacing: 3px; display: block; margin-bottom: 20px; }
.vap-main-text h1 { font-size: 55px; line-height: 1; color: #1a1a1a; font-weight: 900; margin-bottom: 25px; }
.vap-main-text p { font-size: 18px; color: #444; line-height: 1.7; margin-bottom: 35px; }
.vap-btn { display: inline-block; padding: 15px 35px; background: #1a1a1a; color: #fff; text-decoration: none; font-weight: 700; border-radius: 4px; }

.vap-image-stack { flex: 0.8; position: relative; min-width: 320px; }
.vap-img-front { width: 100%; border-radius: 0; box-shadow: 30px 30px 0px #d32f2f; }

/* Stats Section */
.vap-stats { padding: 60px 0; background: #1a1a1a; color: #fff; }
.vap-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.vap-stat-card h2 { font-size: 45px; color: #d32f2f; margin-bottom: 5px; }
.vap-stat-card p { font-size: 14px; font-weight: 600; text-transform: uppercase; color: #ccc; }

/* Vision Section */
.vap-vision { padding: 100px 0; background: #f9f9f9; }
.vap-vision-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: center; }
.vap-v-item { background: #fff; padding: 40px; margin-bottom: 20px; border-left: 5px solid #d32f2f; }
.vap-v-item h3 { font-size: 22px; margin-bottom: 10px; color: #1a1a1a; }

/* Trust Section */
.vap-trust { padding: 100px 0; text-align: center; }
.vap-trust-header h2 { font-size: 35px; margin-bottom: 60px; }
.vap-trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.vap-trust-box { padding: 30px; border: 1px solid #eee; transition: 0.3s; }
.vap-trust-box:hover { background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.05); transform: translateY(-10px); }
.vap-t-icon { font-size: 40px; margin-bottom: 20px; }
.vap-trust-box h4 { font-size: 20px; margin-bottom: 15px; }

@media (max-width: 768px) {
    .vap-main-text h1 { font-size: 35px; }
    .vap-vision-grid { grid-template-columns: 1fr; }
}

.v-service-final { background: #fcfcfc; font-family: 'Arial', sans-serif; color: #333; }
.v-s-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.v-red { color: #cc0000; }

.v-s-head { padding: 80px 0; text-align: center; background: #fff; border-bottom: 1px solid #eee; }
.v-s-head h1 { font-size: 40px; font-weight: 800; margin-bottom: 10px; }

/* Grid Layout */
.v-s-grid-section { padding: 60px 0; }
.v-s-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }

.v-s-box { background: #fff; border: 1px solid #e0e0e0; transition: 0.3s; }
.v-s-box:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.v-s-img-top { height: 220px; overflow: hidden; }
.v-s-img-top img { width: 100%; height: 100%; object-fit: cover; }

.v-s-details { padding: 30px; }
.v-s-cat { font-size: 11px; font-weight: 700; color: #cc0000; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.v-s-details h3 { font-size: 22px; margin-bottom: 15px; border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; }
.v-s-details p { font-size: 14px; line-height: 1.6; color: #666; margin-bottom: 20px; }

.v-s-list { list-style: none; padding: 0; }
.v-s-list li { font-size: 13px; font-weight: 600; padding: 5px 0; color: #444; }
.v-s-list li::before { content: "• "; color: #cc0000; font-weight: bold; }

/* Table Style */
.v-s-table-sec { padding: 60px 0 100px; }
.v-s-table-sec h2 { text-align: center; margin-bottom: 40px; }
.v-s-table-wrapper { overflow-x: auto; }
.v-s-table { width: 100%; border-collapse: collapse; background: #fff; }
.v-s-table th, .v-s-table td { padding: 15px; border: 1px solid #eee; text-align: center; }
.v-s-table th { background: #f8f8f8; color: #000; }
.v-s-table tr:hover { background: #fff9f9; }

@media (max-width: 768px) {
    .v-s-head h1 { font-size: 30px; }
}


/* Smart & Modern Custom CSS */
.v-compact-hero {
    border-radius: 0 50px 50px 0;
}

.fw-black { font-weight: 900; }

/* Service Card New Look */
.v-service-card-new {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.v-service-card-new:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #dc3545;
    transform: translateY(-5px);
}

.v-img-container {
    height: 180px;
    overflow: hidden;
}

.v-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.v-service-card-new:hover .v-img-container img {
    transform: scale(1.1);
}

.v-mini-list li {
    padding: 2px 0;
}

/* Scroll Smoothing */
html { scroll-behavior: smooth; }




.v-underline {
    width: 60px;
    height: 4px;
    background: var(--v-danger);
    border-radius: 2px;
}

/* Solutions Card Styling */
.v-number-badge {
    background: var(--v-danger);
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

.v-content-card {
    border-radius: 15px;
    transition: 0.3s ease;
}

.v-content-card:hover {
    transform: translateY(-5px);
}

.v-smart-list li {
    font-size: 0.9rem;
    padding: 8px 0;
    color: #444;
}

.v-smart-list li i {
    width: 25px;
    font-size: 1rem;
}

/* Portfolio Product Card Styling */
.v-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v-img-wrap {
    /* height: 200px; */
    background: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.v-img-wrap img {
    max-height: 100%;
    transition: 0.5s ease;
}

/* Modern Overlay Effect */
.v-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(230, 57, 70, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.v-product-card:hover .v-card-overlay { opacity: 1; }
.v-product-card:hover .v-img-wrap img { transform: scale(1.1); }

.v-card-info {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #f8f8f8;
}

.v-card-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--v-dark);
}

.v-card-info small {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .v-img-wrap { height: 150px; }
    .v-card-info h5 { font-size: 0.8rem; }
}


.v-clients-section {
    background-color: #ffffff;
}

.client-smart-card {
    border: 1px solid #eeeeee;
    padding: 30px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

.client-smart-card img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%); /* शुरू में लोगो ग्रे रहेंगे */
    opacity: 0.7;
    transition: 0.3s ease;
}

.client-label {
    position: absolute;
    bottom: -30px; /* छुपा हुआ रहेगा */
    left: 0;
    width: 100%;
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 5px 0;
    transition: 0.3s ease;
    font-weight: bold;
}

/* होवर इफ़ेक्ट: इमेज से ज्यादा स्मार्ट */
.client-smart-card:hover {
    border-color: #dc3545;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.client-smart-card:hover img {
    filter: grayscale(0%); /* होवर करने पर ओरिजिनल कलर */
    opacity: 1;
    transform: scale(1.1);
}

.client-smart-card:hover .client-label {
    bottom: 0; /* नाम ऊपर आ जाएगा */
}

@media (max-width: 768px) {
    .client-smart-card {
        padding: 15px;
        height: 120px;
    }
    .client-smart-card img {
        max-height: 50px;
    }
    .client-label {
        bottom: 0; /* मोबाइल पर हमेशा दिखेगा */
        font-size: 10px;
    }
}

.v-gallery-main { background: #fff; font-family: 'Inter', sans-serif; }
.ls-2 { letter-spacing: 2px; }
.fw-black { font-weight: 900; }

/* Gallery Image Wrapper */
.v-gal-item {
    position: relative;
    overflow: hidden;
    height: 300px; /* Fixed height for symmetry */
    background: #f8f9fa;
    border: 1px solid #eee;
}

.v-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Hover Overlay */
.v-gal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(220, 53, 69, 0.9); /* Fire Red Overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
    padding: 30px;
}

.v-gal-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.v-gal-content span {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
}

.v-gal-content h5 {
    font-weight: 900;
    font-size: 1.25rem;
    margin: 0;
}

/* Hover States */
.v-gal-item:hover .v-gal-overlay { opacity: 1; }
.v-gal-item:hover .v-gal-content { transform: translateY(0); }
.v-gal-item:hover img { transform: scale(1.15); }

/* Buttons Customization */
.btn-outline-dark { border-width: 2px; font-weight: 700; font-size: 12px; }
.btn-outline-dark:hover, .btn-outline-dark.active { background-color: #dc3545; border-color: #dc3545; color: #fff; }
/* CSS for Industrial Look */
.v-contact-page { background: #f8f9fa; font-family: 'Inter', sans-serif; }
.fw-black { font-weight: 900; }
.ls-2 { letter-spacing: 2px; }

.v-contact-wrapper { background: #fff; overflow: hidden; border: none; }
.v-icon-box { color: #dc3545; font-size: 1.2rem; }
.bg-dark { background-color: #1a1a1a !important; }

/* Input Styling */
.form-control, .form-select {
    padding: 12px 15px;
    border-color: #e0e0e0;
}
.form-control:focus, .form-select:focus {
    border-color: #dc3545;
    box-shadow: none;
    background-color: #fff9f9;
}

/* Map Dark Effect */
iframe { display: block; }

@media (max-width: 991px) {
    .v-contact-wrapper { flex-direction: column; }
}

/* Vaibhav Fire Smart Modal Customization */
#quoteModal .modal-content {
    overflow: hidden;
}

#quoteModal .fw-black { font-weight: 900; letter-spacing: 1px; }

#quoteModal .form-control, #quoteModal .form-select {
    font-size: 0.9rem;
    padding: 10px 15px;
    border-color: #eee;
    transition: 0.3s;
}

#quoteModal .form-control:focus, #quoteModal .form-select:focus {
    border-color: #dc3545;
    box-shadow: none;
    background-color: #fff9f9;
}

#quoteModal .btn-dark:hover {
    background-color: #dc3545;
    border-color: #dc3545;
}

#quoteModal .x-small { font-size: 11px; }

/* Modal Entrance Animation */
.modal.fade .modal-dialog {
    transform: scale(0.9);
    transition: transform 0.3s ease-out;
}
.modal.show .modal-dialog {
    transform: scale(1);
}
.error{
  color: red !important;
}