/* =========================
GOOGLE FONT
========================= */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  /* ===== FIRE SAFETY THEME COLORS ===== */

  --primary-blue: #123b73;
  --dark-blue: #0b274d;
  --light-blue: #1f5db0;

  --primary-red: #d61f26;
  --dark-red: #a51318;
  --light-red: #ff4d4d;

  --accent-orange: #ff7a00;

  --white: #ffffff;
  --light-bg: #f5f8fc;
  --border-color: #e5eaf1;

  --heading-color: #1c1c1c;
  --text-color: #666666;

  /* ===== GRADIENTS ===== */

  --blue-gradient: linear-gradient(135deg, #123b73, #1f5db0);

  --red-gradient: linear-gradient(135deg, #d61f26, #ff4d4d);

  --fire-gradient: linear-gradient(135deg, #123b73, #0b274d, #d61f26);

  /* ===== SHADOWS ===== */

  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);

  --shadow-md: 0 10px 30px rgba(18, 59, 115, 0.12);

  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);

  /* ===== TRANSITION ===== */

  --transition: all 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #666;
  background: #fff;
  overflow-x: hidden;
}

/* =========================
HEADINGS TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #111;
}

h1 {
  font-size: 110px;
}

h2 {
  font-size: 68px;
}

h3 {
  font-size: 48px;
}

h4 {
  font-size: 34px;
}

h5 {
  font-size: 26px;
}

h6 {
  font-size: 18px;
  letter-spacing: 2px;
  color: #ff1e00;
}

/* =========================
PARAGRAPH TYPO
========================= */

p {
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  color: #666;
  margin-bottom: 20px;
}

/* =========================
LINK TYPO
========================= */

a {
  font-family: "Barlow", sans-serif;
  text-decoration: none;
  transition: 0.4s;
  color: inherit;
}

/* =========================
LIST TYPO
========================= */

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

/* =========================
BUTTON TYPO
========================= */

button {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  outline: none;
  cursor: pointer;
}

/* =========================
SPAN TYPO
========================= */

span {
  display: inline-block;
}

/* =========================
SMALL TEXT TYPO
========================= */

small {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff1e00;
}

/* =========================
STRONG TYPO
========================= */

strong {
  font-weight: 800;
  color: #111;
}

/* =========================
LABEL TYPO
========================= */

label {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  display: block;
}

/* =========================
INPUT TYPO
========================= */

input,
textarea,
select {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

/* =========================
NAVBAR TYPO
========================= */
.topbar {
  background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
  padding: 12px 0;
  color: var(--white);
  font-size: 14px;
  border-bottom: 2px solid var(--primary-red);
}

.topbar p {
  margin: 0;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

.topbar p span {
  color: var(--light-red);
  font-weight: 700;
}

.topbar a:hover {
  color: var(--yellow);
}

.top-contact-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 100px;
  flex-wrap: wrap;
}
.top-contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-contact a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.top-contact a i {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  margin-right: 8px;
  color: var(--light-red);
}

.top-contact a:hover {
  color: var(--light-red);
}

/* Social Icons */

.top-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: 0.4s;
}

.top-social-icons a:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateY(-3px);
}
/* =========================
   NAVBAR
========================= */

.custom-navbar {
  background: #fff;
  padding:24px 0 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  height: 90px;
}

/* Logo */

.logo-area {
  text-decoration: none;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text img {
  width: 100%;
  height: 65px;
}

.logo-text h4 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  color: #123b73;
  line-height: 1;
}

.logo-text h4 span {
  color: #d61f26;
}

.logo-text small {
  display: block;
  color: #666;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Menu */

.navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar-nav .nav-link {
  color: #123b73 !important;
  font-size: 14px;
  font-weight: 700;
  padding: 34px 12px !important;
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #d61f26 !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 18px;
  height: 3px;
  background: #d61f26;
  transform: scaleX(0);
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.active-menu .nav-link::after {
  transform: scaleX(1);
}

.active-menu .nav-link {
  color: #d61f26 !important;
}

/* Button */

.enquiry-btn {
  background: linear-gradient(135deg, #d61f26, #ff4d4d);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background: linear-gradient(135deg, #123b73, #1f5db0);
  color: #fff;
  transform: translateY(-3px);
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.floating-contact a {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.floating-contact a i {
  font-size: 20px;
  margin: 5px 0;
}

.floating-contact .call {
  background: #ffc107;
  color: #111;
  border-radius: 8px 0 0 0;
}

.floating-contact .whatsapp {
  background: #ff1a1a;
}

.floating-contact .enquiry {
  background: #000;
  border-radius: 0 0 0 8px;
}

.floating-contact a:hover {
  width: 100px;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  min-height: 750px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  background: linear-gradient(
      90deg,
      rgba(4, 15, 35, 0.95) 0%,
      rgba(4, 15, 35, 0.9) 40%,
      rgba(4, 15, 35, 0.35) 65%,
      rgba(4, 15, 35, 0) 100%
    ),
    url("../images/firefighter-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  color: #fff;
  position: relative;
  z-index: 2;
}

/* Badge */

.safety-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(214, 31, 38, 0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1.2px;
}
.safety-badge i {
  color: #d61f26;
}

/* Heading */

.hero-content h1 {
  font-family: "Anton", sans-serif;
  font-size: 75px;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: #fff;
}

.hero-content h1 span {
  color: #e31b23;
  display: inline-block;
}

.hero-content h1 {
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Features */

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.feature-box {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid #fff;
}
.feature-box:last-child {
  border-right: 0;
}
.feature-box i {
  font-size: 38px;
  color: #fff;
  margin-bottom: 12px;
}

.feature-box span {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

/* Button */

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-red);
  color: #fff;
  text-decoration: none;
  padding: 8px 35px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.4s;
  letter-spacing: 1.5px;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-btn:hover {
  background: var(--dark-blue);
  color: #fff;
  transform: translateY(-3px);
}

.hero-btn i {
  font-size: 18px;
}

/* Right Image */

.hero-image {
  text-align: right;
}

.hero-image::before {
  content: "";
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;

  background: url("images/fire-banner.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* =========================
EMERGENCY BAR
========================= */

.emergency-bar {
  position: relative;
  padding: 18px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.88)),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Fire Glow */

.emergency-bar:before {
  content: "";
  position: absolute;
  left: -100px;
  top: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 30, 0, 0.45), transparent 70%);
}

/* Left */

.emergency-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.emergency-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1e00, #b80000);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.45);
}

.emergency-icon i {
  font-size: 22px;
  color: #fff;
  animation: ring 1.2s infinite;
}

.emergency-left span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffcc00;
  display: block;
  margin-bottom: 3px;
}

.emergency-left h5 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

/* Center Number */

.emergency-number {
  font-size: 45px;
  font-weight: 900;
  text-align: center;
  color: #fff;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15),
    0 0 25px rgba(255, 0, 0, 0.25);
}

/* Button */

.emergency-btn {
  padding: 14px 28px;
  background: #ffcc00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  border-radius: 4px;
  transition: 0.4s;
}

.emergency-btn:hover {
  background: #ff1e00;
  color: #fff;
  transform: translateY(-3px);
}

.emergency-btn i {
  font-size: 13px;
}

/* Animation */

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-15deg);
  }

  60% {
    transform: rotate(10deg);
  }

  80% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0);
  }
}
section {
  padding: 40px 0;
}
/* =========================
COUNTER SECTION
========================= */

.counter-section {
  background: #fff;
}

/* Left Image */

.counter-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.counter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.experience-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  width: 100px;
}

.experience-badge h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--red);
  font-family: "Oswald", sans-serif;
}

.experience-badge p {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  color: #111;
  text-transform: uppercase;
}

.footer {
  background: #050505;
  background-image: url("images/fire-footer-bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.footer-top {
  padding: 50px 20px 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-top .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-bottom p {
  margin: 0;
}

.footer-about img {
  margin-bottom: 15px;
}

.footer-about p {
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 14px;
}
.footer-about .logo-text {
  margin-left: 0;
  margin-bottom: 30px;
}
.footer-about .logo-text h4 {
  font-size: 24px;
  margin-bottom: 0;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col h4 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
}
.footer-col ul li a {
  margin-bottom: 5px;
}

.footer-col ul li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}

.footer-col ul li a:hover {
  color: #ff1e00;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-bottom {
  background: var(--red);
  padding: 8px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 14px;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
}

.scroll-top {
  position: absolute;
  right: 25px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  background: #ff1e00;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 30, 0, 0.4);
}

.contact-section {
  background: url("../images/fire-contact-bg.png") center center/cover no-repeat;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.contact-section .container-fluid {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 20px;
  padding: 0 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left */

.contact-info h2 {
  color: #fff;
}

.contact-info h2 strong {
  color: var(--yellow);
}

.contact-info p {
  color: #ddd;
  margin-bottom: 25px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  color: #fff;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-info i {
  color: #ffd000;
  margin-right: 10px;
}

/* Form */

.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
}
.contact-form h4 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form .row1 {
  margin: 0 -15px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
  margin-bottom: 15px;
}

/* Right Box */

.contact-section .emergency-box {
  border: 2px dashed var(--accent-orange);
  padding: 20px;
  text-align: center;
  border-radius: 12px;
}

.contact-section .phone-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  color: #fff;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-section .emergency-box h5 {
  color: var(--accent-orange);
  margin: 20px 0 10px;
  font-size: 20px;
  letter-spacing: 1px;
}

.contact-section .emergency-box h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-section .emergency-box a {
  display: inline-block;
  background: var(--dark-red);
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}
.navbar-toggler {
  background-color: var(--primary-red);
}
.fire-safety-section {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.fire-safety-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(214, 31, 38, 0.06);
  border-radius: 50%;
}

.fire-safety-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(18, 59, 115, 0.06);
  border-radius: 50%;
}

.fire-safety-section .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.fire-left {
  flex: 1 1 48%;
  position: relative;
}

.fire-left img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.fire-left::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 2px dashed rgba(214, 31, 38, 0.25);
  border-radius: 35px;
  z-index: -1;
}

.fire-right {
  flex: 1 1 48%;
}

.fire-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(214, 31, 38, 0.08);
  color: var(--primary-red);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.fire-right h2 {
  font-size: 52px;
  line-height: 1.15;
  color: var(--heading-color);
  font-weight: 800;
  margin-bottom: 24px;
}

.fire-right h2 span {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fire-right p {
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 35px;
}

.fire-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.fire-point {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.fire-point:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(214, 31, 38, 0.2);
}

.fire-icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--red-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.fire-point h4 {
  font-size: 17px;
  color: var(--heading-color);
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: 1px;
}

.fire-point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.fire-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 60px;
  background: var(--fire-gradient);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(214, 31, 38, 0.25);
}

.fire-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(214, 31, 38, 0.35);
}
.contact-section {
  padding: 90px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.contact-section .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1 1 48%;
}

.contact-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(214, 31, 38, 0.08);
  color: var(--primary-red);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-left h2 {
  font-size: 50px;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--heading-color);
  font-weight: 800;
}

.contact-left h2 span {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-left p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-color);
  margin-bottom: 35px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: var(--red-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-box h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--heading-color);
  font-weight: 700;
}

.info-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.contact-right {
  flex: 1 1 45%;
}

.contact-right form {
  background: var(--white);
  padding: 40px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.input-group {
  margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f7f9fc;
  border: 1px solid var(--border-color);
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 15px;
  color: var(--heading-color);
  transition: var(--transition);
}

.input-group textarea {
  height: 150px;
  resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary-red);
  background: var(--white);
}

.contact-btn {
  width: 100%;
  border: none;
  padding: 16px;
  border-radius: 60px;
  background: var(--fire-gradient);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(214, 31, 38, 0.25);
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(214, 31, 38, 0.35);
}
.footer {
  background: #08111f;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(214, 31, 38, 0.12);
  filter: blur(120px);
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(31, 93, 176, 0.15);
  filter: blur(120px);
}

/* TOP */

.footer-top {
  padding: 90px 0 60px;
  position: relative;
  z-index: 2;
}

.footer .container-fluid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
}

/* LOGO */

.logo-text h4 {
  font-size: 34px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 2px;
}

.logo-text h4 span {
  color: #ff2d2d;
}

.logo-text small {
  color: #ffd000;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
}

/* ABOUT */

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin: 25px 0;
  font-size: 15px;
}

/* HEADINGS */

.footer-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 28px;
  position: relative;
  font-weight: 700;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #d61f26, #ff4d4d);
  border-radius: 20px;
}

/* LINKS */

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-col ul li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}
.footer-col ul li a {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-col ul li i {
  color: var(--primary-red);
  margin-top: 4px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary-red);
  padding-left: 6px;
}

/* SOCIAL */

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #d61f26, #ff4d4d);
  transform: translateY(-5px);
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  position: relative;
  z-index: 2;
}

.bottom-flex {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* SCROLL */

.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d61f26, #ff4d4d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(214, 31, 38, 0.3);
  z-index: 99;
  transition: 0.3s;
}

.scroll-top:hover {
  transform: translateY(-5px);
}
/* ===== MODERN HELPLINE STRIP ===== */

.emergency-strip {
  padding: 22px 0;
  background: #071426;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.emergency-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, rgba(214, 31, 38, 0.18), transparent);
}

.emergency-strip::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(-90deg, rgba(31, 93, 176, 0.18), transparent);
}

.emergency-strip .container {
  width: 92%;
  max-width: 1320px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  z-index: 2;
}

/* LEFT */

.emergency-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.emergency-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--red-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(214, 31, 38, 0.25);
}

.emergency-text span {
  color: var(--accent-orange);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.emergency-text h4 {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
}

/* CENTER */

.helpline-box {
  text-align: center;
  padding: 0 45px;
  position: relative;
}

.helpline-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 65px;
  background: rgba(255, 255, 255, 0.08);
}

.helpline-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 65px;
  background: rgba(255, 255, 255, 0.08);
}

.helpline-box small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.helpline-box a {
  text-decoration: none;
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
  transition: 0.3s;
}

.helpline-box a:hover {
  color: var(--accent-orange);
}

/* BUTTON */

.contact-btn-fire {
  min-width: 220px;
  height: 55px;
  border-radius: 14px;
  background: var(--blue-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.contact-btn-fire:hover {
  background: var(--red-gradient);
  transform: translateY(-4px);
}
/* ===== CONTACT SECTION ===== */

.contact-section {
  padding: 110px 0;
  background: var(--fire-gradient);
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */

.contact-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(214, 31, 38, 0.18);
  filter: blur(130px);
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(31, 93, 176, 0.18);
  filter: blur(130px);
}

.contact-section .container-fluid {
  width: 92%;
  max-width: 1380px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.8fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===== LEFT ===== */

.contact-info {
  color: var(--white);
  position: relative;
}

.contact-info span {
  color: var(--accent-orange);
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-info h2 {
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 25px;
  font-weight: 900;
  color: var(--white);
}

.contact-info h2 strong {
  color: var(--primary-red);
  position: relative;
  text-shadow: 0 0 20px rgba(214, 31, 38, 0.4);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 15px;
  font-size: 16px;
  max-width: 500px;
}

.contact-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.contact-info ul li:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.08);
}

.contact-info ul li i {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--red-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(214, 31, 38, 0.25);
}

/* ===== FORM ===== */

.contact-form {
  background: rgba(255, 255, 255, 0.97);
  padding: 30px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--fire-gradient);
}

.contact-form h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-form form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form form .row1 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f7f9fc;
  border: 1px solid #e7edf5;
  border-radius: 16px;
  transition: var(--transition);
  color: var(--heading-color);
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
  margin-bottom: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-red);
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(214, 31, 38, 0.08);
}

.contact-form .service-btn {
  border: none;
  background: var(--fire-gradient);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  letter-spacing: 1px;
}

.contact-form .service-btn:hover {
  transform: translateY(-5px);
}

/* ===== RIGHT ===== */

.emergency-box {
  padding: 55px 35px;
  text-align: center;
  color: var(--white);
  position: relative;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  overflow: hidden;
  border: 2px dashed var(--dark-red);
}

.emergency-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 220px;
  height: 220px;
  background: rgba(214, 31, 38, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

.phone-icon {
  width: 95px;
  height: 95px;
  border-radius: 24px;
  background: var(--red-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 30px;
  font-size: 34px;
  color: var(--white);
  box-shadow: 0 15px 35px rgba(214, 31, 38, 0.3);
}

.emergency-box h5 {
  color: var(--accent-orange);
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: 2px;
}

.emergency-box h3 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 900;
  color: var(--white);
}

.emergency-box a {
  display: inline-block;
  background: var(--blue-gradient);
  color: var(--white);
  text-decoration: none;
  padding: 18px 38px;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.8;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.emergency-box a:hover {
  transform: translateY(-5px);
  background: var(--red-gradient);
}
.fire-Safety-services {
  background: #f8f9fc;
}

.fire-Safety-services .container {
  max-width: 1320px;
  margin: auto;
  padding: 0 15px;
}

.fire-Safety-services .services-wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: center;
}

.main-heading h2 {
  font-size: 52px;
  line-height: 1.15;
  color: var(--heading-color);
  font-weight: 800;
  margin-bottom: 24px;
}

.main-heading h2 span {
  color: var(--primary-red);
}

.fire-Safety-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.fire-Safety-services .service-card {
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  background: #fff;
  position: relative;
}

.fire-Safety-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red-gradient);
  transform: scaleX(0);
  transition: 0.4s;
}

.fire-Safety-services .service-card:hover::before {
  transform: scaleX(1);
}

.fire-Safety-services .service-card:hover {
  transform: translateY(-10px);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.fire-Safety-services .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(214, 31, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 30px;
  margin-bottom: 25px;
}

.fire-Safety-services .service-card h3 {
  font-size: 22px;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.fire-Safety-services .service-card p {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 15px;
}
.fire-Safety-services .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fire-Safety-services .service-list li {
  position: relative;
  padding: 0px 5px 5px 30px;
  background: #fff;
  border-radius: 10px;
  color: var(--text-color);
  line-height: 1.5;
  font-size: 14px;
  transition: var(--transition);
  text-align: start;
}

.fire-Safety-services .service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-gradient);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fire-Safety-services .service-list li:hover {
  transform: translateX(10px);
}

/* =========================
   GLOBAL
========================= */

section{
    position:relative;
    overflow:hidden;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    display:inline-block;
    background:rgba(214,31,38,.08);
    color:var(--primary-red);
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:54px;
    font-weight:800;
    margin-top:20px;
    color:var(--primary-blue);
    line-height:1.1;
}

.section-title p{
    max-width:700px;
    margin:20px auto 0;
    color:var(--text-color);
    line-height:1.8;
}

/* =========================
   ABOUT SECTION
========================= */

.about-fire{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
}

.about-content ul{
    list-style:none;
    margin-bottom:35px;
}

.about-content li{
    position:relative;
    padding-left:35px;
    margin-bottom:15px;
    font-weight:600;
}

.about-content li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--primary-red);
    font-weight:700;
}

.theme-btn{
    display:inline-block;
    background:var(--red-gradient);
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:10px;
    font-weight:700;
    transition:.4s;
}

.theme-btn:hover{
    transform:translateY(-5px);
}

/* =========================
   WHY CHOOSE US
========================= */

.why-choose-us{
    background:var(--light-bg);
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.choose-card{
    background:#fff;
    padding:20px;
    border-radius:25px;
    text-align:center;
    box-shadow:var(--shadow-md);
    transition:.4s;
    border-top:5px solid transparent;
}

.choose-card:hover{
    transform:translateY(-12px);
    border-top:5px solid var(--primary-red);
}

.choose-card .icon{
width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(214, 31, 38, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: auto auto 25px;
}

.choose-card h3{
      color:var(--primary-blue);
    margin-bottom:10px;
    font-size: 24px;
    letter-spacing: 1px;
}

.choose-card p{
    color:var(--text-color);
    line-height: 1.5;
}

/* =========================
   PROJECTS
========================= */

.projects-section{
    background:var(--fire-gradient);
}

.projects-section .section-title h2,
.projects-section .section-title span{
    color:#fff;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.project-card{
    position:relative;
    height:350px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.project-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.1)
    );
    display:flex;
    align-items:flex-end;
    padding:20px;
}

.project-overlay h3{
    color: #fff;
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.project-card:hover img{
    transform:scale(1.1);
}

.project-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(214,31,38,.4),
        rgba(18,59,115,.4)
    );
    opacity:0;
    transition:.4s;
    z-index:1;
}

.project-card:hover::before{
    opacity:1;
}

.project-overlay{
    z-index:2;
}

.product-card img{
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin:0 auto 20px;
    display:block;
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.1) ;
}

/* =========================
   PRODUCTS
========================= */

.fire-products{
    background:#fff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:25px;
    padding:20px;
    text-align:center;
    box-shadow:var(--shadow-md);
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(18,59,115,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin:0 auto 25px;
}

.product-card h3{
color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 24px;
    letter-spacing: 1px;
}

/* =========================
   PROCESS
========================= */

.our-process{
    padding:120px 0;
    background:#f8f9fc;
}

.process-timeline{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    position:relative;
}

.process-timeline::before{
    content:"";
    position:absolute;
    top:45px;
    left:10%;
    width:80%;
    height:4px;
    background:var(--red-gradient);
    z-index:1;
}

.timeline-item{
    text-align:center;
    position:relative;
    z-index:2;
}

.timeline-icon{
    width:90px;
    height:90px;
    margin:auto;
    background:#fff;
    border:4px solid var(--primary-red);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    box-shadow:var(--shadow-md);
    transition:.4s;
}
.timeline-icon i{
    color: var(--primary-red);
}
.timeline-item:hover .timeline-icon{
    background:var(--primary-red);
    transform:translateY(-10px) scale(1.08);
}
.timeline-item:hover .timeline-icon i{
    color: var(--white);
}

.timeline-item h3{
    margin-top:25px;
    color:var(--primary-blue);
    font-size:22px;
}

.timeline-item p{
    color:var(--text-color);
    line-height:1.7;
    margin-top:10px;
}


.certificates-section {
background: var(--light-bg);
  overflow: hidden;
}

.certificate-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.certificate-card {
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.certificate-card img {
  width: 100%;
  display: block;
}

.certificate-card:hover {
  transform: translateY(-10px);
}

section {
    padding: 100px 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .fire-Safety-services .services-wrap {
    grid-template-columns: 1fr;
  }

  .fire-Safety-services .services-content {
    text-align: center;
  }

  .contact-section .container-fluid {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 46px;
  }

  .emergency-box h3 {
    font-size: 32px;
  }
}


/* RESPONSIVE */

@media (max-width: 991px) {
  .emergency-strip .container {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }
  .project-grid{
    grid-template-columns:repeat(2,1fr);
}
.about-grid{
    grid-template-columns:1fr;
}

.choose-grid,
.project-grid,
.product-grid,
.process-grid{
    grid-template-columns:repeat(2,1fr);
}


  .emergency-left {
    flex-direction: column;
  }

  .helpline-box {
    padding: 25px 0;
  }

  .helpline-box::before,
  .helpline-box::after {
    display: none;
  }

  .helpline-box a {
    font-size: 42px;
  }
  .emergency-strip .container {
    gap: 0;
  }

  h1 {
    font-size: 82px;
  }
  h2 {
    font-size: 52px;
  }

  h3 {
    font-size: 40px;
  }

  .hero-section {
    min-height: auto;
    padding: 80px 0 40px;
    background: linear-gradient(
        90deg,
        rgba(4, 15, 35, 0.95) 0%,
        rgba(4, 15, 35, 0.9) 40%,
        rgba(4, 15, 35, 0.35) 65%,
        rgba(4, 15, 35, 0) 100%
      ),
      url(../images/firefighter-bg-mobile.png);
    background-position: center bottom;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }
  .navbar-collapse {
    background: #fff;
    padding: 20px;
  }

  .navbar-nav .nav-link {
    padding: 8px 0 !important;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }
  .enquiry-btn {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-block;
    margin-top: 15px;
  }

  .logo-text h4 {
    font-size: 24px;
  }

  .topbar {
    text-align: center;
    padding: 15px 0;
  }

  .top-contact-social {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .top-contact {
    flex-direction: column;
    gap: 10px;
  }
  .logo-area {
    padding: 0 !important;
  }
  .navbar-toggler {
    margin-right: 0 !important;
  }
  .fire-safety-section .container {
    flex-direction: column;
  }

  .fire-right h2 {
    font-size: 40px;
  }
  .contact-section .container {
    flex-direction: column;
  }

  .contact-left h2 {
    font-size: 38px;
  }
.footer-col {
    margin-bottom: 30px;
}
  .footer .container-fluid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-section .container-fluid {
    padding: 0 12px;
    width: 100%;
  }

  .fire-Safety-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

 .main-heading h2,
  .fire-Safety-services .services-content h2 {
        font-size: 30px;
    }
   section {
    padding: 80px 0;
} 
}
@media(max-width:991px){
.process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

.process-timeline::before{
    display:none;
}

.timeline-item{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:var(--shadow-sm);
}
.fire-safety-section .container-fluid{
  gap:0;
}
}
@media (max-width: 767px) {
  .fire-point {
    padding: 10px;
    border-radius: 12px;
    gap: 10px;
  }
  h1 {
    font-size: 46px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 15px;
  }

  p {
    font-size: 15px;
  }

  ul li {
    font-size: 15px;
  }

  .hero-content h1 {
    font-size: 45px;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    margin: 24px 0;
  }
  .safety-badge {
    font-size: 8px;
    padding: 5px;
  }
  .fire-tag {
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 12px;
  }
  .logo-text img {
    width: 100%;
    height: 44px;
  }
  .hero-btn {
    font-size: 15px;
    padding: 14px 25px;
  }


  .fire-right h2 {
    font-size: 30px;
  }
  .fire-point h4 {
    font-size: 14px;
  }
  .fire-right p {
    font-size: 12px;
  }

  .fire-btn {
    width: 100%;
    justify-content: center;
  }
  .fire-icon {
    min-width: 30px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 14px;
  }
  .fire-btn {
    padding: 12px 34px;
    font-size: 14px;
  }
  .feature-box {
    padding: 10px 10px;
  }
  .feature-box:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #fff;
  }
  .feature-box:nth-child(1) {
    border-bottom: 1px solid #fff;
  }
  .hero-btn {
    font-size: 11px;
    padding: 10px 25px;
  }

  .footer-top {
    padding: 70px 0 40px;
  }
  .footer-col ul li a {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .footer-col ul li {
    font-size: 12px;
  }
  .footer .container-fluid {
    grid-template-columns: 1fr;
  }

  .bottom-flex {
    flex-direction: column;
    text-align: center;
  }

  .logo-text h4 {
    font-size: 28px;
  }

  .bottom-flex {
    gap: 5px;
  }
  .footer-bottom p {
    font-size: 12px;
  }
  .emergency-strip {
    padding: 40px 0;
  }

  .emergency-icon {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }

  .helpline-box a {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .contact-btn-fire {
    width: 100%;
    font-size: 14px;
  }

  .fire-Safety-services .services-grid {
    grid-template-columns: 1fr;
  }



  .fire-Safety-services .service-card {
    padding: 16px;
  }

  

  .contact-form {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .contact-form h4 {
    font-size: 30px;
  }

  .contact-form form .row {
    flex-direction: column;
  }

  .contact-info h2 {
    font-size: 34px;
  }

  .emergency-box h3 {
    font-size: 26px;
  }

  .phone-icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }
  .choose-grid,
.project-grid,
.product-grid,
.process-grid{
    grid-template-columns:1fr;
}
.project-grid{
    grid-template-columns:1fr;
}

.project-card{
    height:280px;
}
 section {
    padding: 40px 0;
} 
.certificates-section .main-heading {
    text-align: center;
}
.process-timeline {
        grid-template-columns: repeat(1, 1fr);
    }
}



