:root {
  --red: #D62828;
  --red-dk: #a01f1f;
  --black: #111111;
  --gray: #1e1e1e;
  --light: #f5f5f5;
  --white: #ffffff;
  --muted: #6c757d;
  --radius: 4px;
  --shadow: 0 6px 28px rgba(0, 0, 0, .12);
  --transition: .3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: #333;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.section-pad {
  padding: 80px 0;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--black);
  margin-bottom: 14px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--red);
  margin-top: 12px;
}

.section-title.centered::after {
  margin: 12px auto 0;
}

.btn-fire {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  padding: 10px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-fire:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 40, 40, .3);
}

.btn-outline-fire {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-outline-fire:hover {
  background: var(--white);
  color: var(--red);
}

/* ===========================
       TOP BAR
    =========================== */
#topbar {
  background: var(--black);
  color: #ccc;
  font-size: .82rem;
  padding: 7px 0;
  border-bottom: 1px solid #2a2a2a;
}

#topbar a {
  color: #ccc;
}

#topbar a:hover {
  color: var(--red);
}

#topbar .tb-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

#topbar .tb-item i {
  color: var(--red);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===========================
       NAVBAR
    =========================== */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
  z-index: 999;
}

.navbar-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--black) !important;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--red);
}

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: .92rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--black) !important;
  padding: 8px 14px !important;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--red) !important;
}

.dropdown-menu {
  border: none;
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
}

.dropdown-item {
  font-size: .88rem;
  padding: 8px 20px;
  color: #333;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--red);
  color: var(--white);
  padding-left: 26px;
}

/* ===========================
       HERO CAROUSEL
    =========================== */
#heroCarousel {
  position: relative;
}

.carousel-slide {
  height: 75vh;
  min-height: 470px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}



.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, .78) 0%, rgb(0 0 0 / 0%) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.slide-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.slide-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.slide-content p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 18px;
  opacity: 1;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: none;
}

.carousel-indicators button.active {
  background: var(--red);
}

/* ===========================
       ABOUT SECTION
    =========================== */
#about {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 430px;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  left: -22px;
  background: var(--red);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge .num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge .label {
  font-size: .75rem;
  letter-spacing: 1px;
  opacity: .9;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.about-feature-text h6 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 2px;
}

.about-feature-text p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}

/* ===========================
       PRODUCT CARDS (shared)
    =========================== */
.product-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  border-color: var(--red);
}

.product-card-icon {
  background: white;
  padding: 30px 20px 20px;
  text-align: center;
  font-size: 3rem;
  color: var(--red);
  transition: var(--transition);
}

.product-card:hover .product-card-icon {
  background: var(--red);
  color: var(--white);
}

.product-card-body {
  padding: 18px;
}

.product-card-body h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.btn-card {
  font-size: .8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 5px 16px;
  border-radius: var(--radius);
  display: inline-block;
  transition: var(--transition);
}

.btn-card:hover {
  background: var(--red);
  color: var(--white);
}

/* ===========================
       FIRE EXTINGUISHER SECTION
    =========================== */
#extinguishers {
  background: var(--light);
}

/* ===========================
       HYDRANT SECTION
    =========================== */
#hydrant {
  background: var(--white);
}

.hydrant-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #eee;
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--white);
}

.hydrant-item:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.hydrant-item i {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 14px;
}

.hydrant-item h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  margin: 0;
}

/* ===========================
       SERVICES SECTION
    =========================== */
#services {
  background: var(--black);
}

#services .section-title {
  color: var(--white);
}

#services .section-label {
  color: #e87171;
}

.service-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: var(--transition);
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  background: rgba(214, 40, 40, .1);
  border-color: var(--red);
  transform: translateY(-4px);
}

.service-card i {
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 16px;
}

.service-card h5 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  margin: 0;
}

/* ===========================
       DETECTION SECTION
    =========================== */
#detection {
  background: var(--light);
}

.detect-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .07);
  transition: var(--transition);
  height: 100%;
}

.detect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .13);
}

.detect-card-top {
  background: var(--red);
  padding: 36px 20px;
  text-align: center;
  color: var(--white);
  font-size: 3.5rem;
}

.detect-card-body {
  padding: 22px;
}

.detect-card-body h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.detect-card-body p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ===========================
       COUNTER SECTION
    =========================== */
#counters {
  background: var(--red);
  padding: 60px 0;
}

.counter-item {
  text-align: center;
}

.counter-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.counter-plus {
  color: var(--white);
  font-size: 2rem;
  vertical-align: super;
}

.counter-label {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  margin-top: 8px;
}

.counter-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 10px;
}

/* ===========================
       TESTIMONIALS
    =========================== */
#testimonials {
  background: var(--white);
}

.testi-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 36px 32px;
  margin: 10px 15px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--red);
  opacity: .15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testi-stars {
  color: #f5a623;
  font-size: .9rem;
  margin-bottom: 12px;
}

.testi-text {
  font-size: .95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.testi-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  margin-bottom: 2px;
}

.testi-role {
  font-size: .8rem;
  color: var(--muted);
}

#testiCarousel .carousel-control-prev,
#testiCarousel .carousel-control-next {
  background: var(--red);
  width: 40px;
  height: 40px;
  top: auto;
  bottom: -20px;
  transform: none;
  border-radius: 50%;
  margin: 0 6px;
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testi-controls {
  text-align: center;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ===========================
       CALL TO ACTION
    =========================== */
#cta {
  background: linear-gradient(135deg, var(--black) 0%, #2a0a0a 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: var(--red);
  border-radius: 50%;
  opacity: .08;
}

#cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 6px;
}

#cta p {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  margin-bottom: 0;
}

.cta-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--red);
}

.cta-phone i {
  margin-right: 8px;
}

/* ===========================
       BLOG SECTION
    =========================== */
#blog {
  background: var(--white);
}

.blog-card {
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .12);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-img-wrap {
  overflow: hidden;
}

.blog-body {
  padding: 22px;
}

.blog-meta {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  gap: 16px;
}

.blog-meta span i {
  color: var(--red);
  margin-right: 4px;
}

.blog-body h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-body p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ===========================
       FOOTER
    =========================== */
#footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, .7);
  padding: 70px 0 0;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--red);
}

.footer-about {
  font-size: .88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .7);
  border-radius: 50%;
  font-size: .85rem;
  margin-right: 6px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›  ';
  color: var(--red);
}

.footer-links a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
}

.footer-contact-item i {
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-newsletter {
  position: relative;
  margin-top: 12px;
}

.footer-newsletter input {
  width: 100%;
  padding: 11px 50px 11px 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .88rem;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.footer-newsletter button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--red);
  border: none;
  color: var(--white);
  padding: 0 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter button:hover {
  background: var(--red-dk);
}

.footer-bottom {
  background: #060606;
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom span {
  color: var(--red);
}

/* ===========================
       SCROLL TO TOP
    =========================== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(214, 40, 40, .4);
  z-index: 9999;
  transition: var(--transition);
}

#scrollTop:hover {
  background: var(--red-dk);
  transform: translateY(-3px);
}

/* ===========================
       RESPONSIVE TWEAKS
    =========================== */
@media (max-width: 991px) {
  .topbar-left {
    gap: 12px;
  }

  .about-badge {
    left: 0;
  }

  .carousel-slide {
    height: 70vh;
  }
}

@media (max-width: 767px) {
  .topbar-left .tb-item:nth-child(3) {
    display: none;
  }

  .carousel-slide {
    height: 55vh;
    min-height: 380px;
  }

  .section-pad {
    padding: 56px 0;
  }
}



/* ========== PROFESSIONAL UI ENHANCEMENTS ========== */
:root {
  --primary: #d62828;
  --primary-dark: #074269;
  --primary-light: #eef7ff;
  --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth page load */
.service-details-section,
.inner-header-area {
  animation: fadeSlideUp 0.6s ease-out;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image hover zoom effect */
.service-main-content .img1 {
  overflow: hidden;
  border-radius: 24px;

  transition: var(--transition);
}

.service-main-content .img1 img {
  width: auto;
  max-height: 384px;
  transition: transform 0.5s ease, filter 0.3s;
  display: block;
}

.service-main-content .img1:hover img {
  transform: scale(1.05);
  filter: brightness(1.02);
}



/* heading2 and paragraph improvements */
.heading2 h2 {
  position: relative;
  display: inline-block;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #1e2a3a, #d62828);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: var(--transition);
}

.heading2 h2:hover {
  background: linear-gradient(135deg, #d62828, #1e2a3a);
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(5px);
}

.service-main-content p {
  line-height: 1.7;
  color: #2c3e50;
  transition: var(--transition);
  font-size: 1rem;
}

/* ===== SIDEBAR WIDGETS ===== */
.service-side-widget-area {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-side-widget-area:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Categories list */
.categories-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-area ul li {
  margin-bottom: 12px;
  transition: var(--transition);
  border-radius: 16px;
}

.categories-area ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  padding: 14px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
}

.categories-area ul li a span i {
  transition: transform 0.2s;
  font-size: 14px;
}

.categories-area ul li:hover {
  transform: translateX(8px);
}

.categories-area ul li:hover a {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 8px 18px rgba(10, 92, 142, 0.2);
}

.categories-area ul li:hover a span i {
  transform: translateX(4px);
  color: white;
}

/* Help area - glassmorphism + button */
.help-area {
  background: linear-gradient(135deg, #d62828 0%, #030303 100%);
  border-radius: 28px;
  padding: 32px 24px;
  color: white;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.help-area:hover {
  transform: scale(1.01);
  box-shadow: 0 25px 35px -12px rgba(10, 92, 142, 0.4);
}

.help-area h3 {
  font-weight: 700;
  letter-spacing: -0.2px;
}

.btn-area1 a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #d62828;
  padding: 12px 24px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-area1 a:hover {
  background: #ffe6d5;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.2);
  gap: 18px;
}

.btn-area1 a svg path {
  transition: fill 0.2s;
}

/* Social area */
.social-area ul {
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.social-area ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 30px;
  color: #d62828;
  font-size: 22px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.social-area ul li a:hover {
  background: #d62828;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(10, 92, 142, 0.3);
}

/* inner-header-area enhancements */
.inner-header-area {
  position: relative;
  z-index: 1;
}

.inner-header-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: -1;
}

.inner-heading h1 {
  animation: fadeInLeft 0.7s ease;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.inner-heading a {
  transition: var(--transition);
  display: inline-block;
}

.inner-heading a:hover {
  transform: translateX(6px);
  color: #ffd966 !important;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Breadcrumb icon rotation */
.inner-heading a i {
  transition: transform 0.2s;
  display: inline-block;
}

.inner-heading a:hover i {
  transform: translateX(4px);
}

/* Image inside header responsive */
.imges img {
  transition: var(--transition);
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.2));
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Service content card shadow */
.service-main-content {
  background: #fff;
  padding: 28px;
  border-radius: 32px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: var(--transition);
}

.service-main-content:hover {
  box-shadow: rgb(0, 0, 0) 0px 3px 8px;
}

/* space classes keep consistent */
.space16 {
  height: 16px;
}

.space20 {
  height: 20px;
}

.space24 {
  height: 24px;
}

.space32 {
  height: 32px;
}

.space4 {
  height: 4px;
}

/* make responsive and modern */
@media (max-width: 768px) {
  .service-side-widget-area {
    margin-top: 32px;
  }

  .help-area {
    padding: 24px 18px;
  }

  .categories-area ul li a {
    padding: 12px 14px;
  }

  .inner-heading h1 {
    font-size: 1.8rem;
  }
}

/* additional micro-interactions for links */
a,
button {
  transition: all 0.2s ease;
}

/* subtle scroll reveal for widgets */
.service-side-widget-area,
.service-main-content {
  transition: transform 0.2s, box-shadow 0.3s;
}

.service-details-section.sp1 {
  padding: 64px 0px;
}

/* HEADER SECTION */
.inner-header-area {
  background: linear-gradient(135deg, #00498b, #d62828);
  padding: 36px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* OPTIONAL LIGHT OVERLAY EFFECT */
.inner-header-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* CONTENT ABOVE OVERLAY */
.inner-heading {
  position: relative;
  z-index: 2;
  text-align: left;
}

/* TITLE */
.inner-heading h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

/* BREADCRUMB */
.inner-heading a {
  font-size: 15px;
  color: #dcdcdc;
  text-decoration: none;
  transition: 0.3s;
}

.inner-heading a:hover {
  color: #fff;
}

/* ICON SPACING */
.inner-heading i {
  margin: 0 8px;
  font-size: 12px;
}

/* ACTIVE PAGE TEXT */
.inner-heading span {
  color: #ffffff;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .inner-header-area {
    padding: 40px 0;
    text-align: center;
  }

  .inner-heading h1 {
    font-size: 28px;
  }
}


.service-main-content h1 {
  font-size: 30px;
}

.service-main-content .img1 img {
  border-radius: 20px;
}

/* SECTION BACKGROUND */
.contact-inner-area {
  background: linear-gradient(135deg, #f4f7fb, #eef3ff);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* subtle animated gradient overlay */
.contact-inner-area::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.15), transparent);
  top: -100px;
  left: -100px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }
}

/* LEFT CONTENT */
.heading1 h5 {
  color: #ff3b3b;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.heading1 h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.heading1 p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* SOCIAL ICONS */
.contact-social {
  display: flex;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.contact-social li a {
  width: 40px;
  height: 40px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* hover effect */
.contact-social li a:hover {
  background: #ff3b3b;
  color: #fff;
  transform: translateY(-5px) scale(1.05);
}

/* FORM BOX */
.contact-main-boxarea {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* hover lift effect */
.contact-main-boxarea:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-main-boxarea h3 {
  font-weight: 700;
  color: #111;
}

.contact-main-boxarea p {
  color: #777;
}

/* INPUT FIELDS */
.input-area input,
.input-area textarea,
.input-area select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  background: #f9fbff;
}

/* focus animation */
.input-area input:focus,
.input-area textarea:focus,
.input-area select:focus {
  border-color: #ff3b3b;
  box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.1);
  background: #fff;
}

/* textarea height */
.input-area textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.vl-btn1 {
  background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* button hover animation */
.vl-btn1:hover {
  background: linear-gradient(135deg, #e60000, #ff3b3b);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 59, 59, 0.3);
}

/* ICON ANIMATION */
.vl-btn1 i {
  transition: transform 0.3s ease;
}

.vl-btn1:hover i {
  transform: translateX(5px);
}

/* NICE SELECT FIX */
.nice-select {
  width: 100%;
  border-radius: 10px;
  height: auto;
  padding: 12px;
}

/* SPACING CLASSES (if not already defined) */
.space16 {
  height: 16px;
}

.space32 {
  height: 32px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .heading1 h2 {
    font-size: 28px;
  }

  .contact-main-boxarea {
    padding: 25px;
  }
}


/* RESPONSIVE */
@media (max-width: 600px) {
  .none {
    display: none !important;
  }


}


.input-area input,
.input-area textarea,
.input-area select {

  margin-bottom: 20px !important;
}


.service-card h5 {

  color: #000000;
}


.service-card p {
  font-size: .88rem;
  color: rgb(0 0 0);
  margin: 0;
}

.service-card {
  box-shadow: rgb(0 0 0 / 66%) 0px 3px 8px;
}




.additnaolinfo {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #444;
  transition: all 0.3s ease;
  border-radius: 30px;
}

/* Hover effect */
.additnaolinfo:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Paragraph styling */
.additnaolinfo p {
  font-size: 15px;
  margin-bottom: 12px;
}

/* Bullet list */
.additnaolinfo ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.additnaolinfo ul li {
  margin-bottom: 8px;
  position: relative;
}

/* Table Styling */
.additnaolinfo table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
  border-radius: 10px;
  overflow: hidden;
}

/* Table Header */
.additnaolinfo table thead {
  background: #a01f1f;
  color: #fff;
}

.additnaolinfo table th {
  padding: 12px;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}

/* Table Body */
.additnaolinfo table td {
  padding: 12px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #eee;
}

/* Zebra effect */
.additnaolinfo table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

/* Hover row */
.additnaolinfo table tbody tr:hover {
  background: #e9f2ff;
  transition: 0.3s;
}

/* First column (Feature) bold */
.additnaolinfo table td:first-child {
  font-weight: 600;
  color: #222;
}

/* Responsive table */
.additnaolinfo {
  overflow-x: auto;
}

/* Scrollbar (optional premium look) */
.additnaolinfo::-webkit-scrollbar {
  height: 6px;
}

.additnaolinfo::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}