@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.post,
.page {
    margin: 0 !important;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    font-size: 250%;
	margin-top: 0 !important;
	margin-bottom: 15px !important;
	font-weight: 500!important;
}

h2 {
    font-size: 200%;
}

h3 {
    font-size: 20px;
    color: #d3593d;
    margin-bottom: 8px;
}

p:last-child {
  margin-bottom: 0;
}


p a {
    color: #19417e;;
}

p a:hover {
	color: #e41e2b;
    text-decoration: underline;
}

ul {
    list-style-type: none;
	padding: 0;
	margin: 0 !important;
}

img {
    width: 100%;
    display: block;
}

.br-20 {
	border-radius: 20px;
}

.font-bold {
	font-weight: 700 !important;
}

.green-text {
    color: #51ab3e!important;
}

/* Section Styles */
section {
  padding: 80px 0;
	overflow-x: hidden;
}

.section-sm {
  padding: 50px 0;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e41e2b;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: #555;
}

.text-blue {
  color: #19417e;
}

.text-red {
  color: #e41e2b;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.bg-blue {
  background-color: #19417e;
}

.bg-red {
  background-color: #e41e2b;
}

.bg-white {
  background-color: #fff;
}

.bg-light-grey {
  background-color: #f5f7fa;
}

.bg-dark {
  background-color: #111827;
}

.gap {
	gap: 20px;
}

.main-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
	border-radius: 20px;
}

.main-img img.img-fit{
    object-fit: contain;
}

/* All Buttons */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-red {
  background: #e41e2b;
  color: #fff;
  border-color: #e41e2b;
}

.btn-red:hover {
  background: #c5181f;
  border-color: #c5181f;
  color: #fff;
}

.btn-call {
  background: #e41e2b;
  color: #fff;
  border-color: #e41e2b;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 40px;
  height: 40px;
}

.btn-call:hover {
  background: #c5181f;
  border-color: #c5181f;
  color: #fff;
}

.btn-blue {
  background: #19417e;
  color: #fff;
  border-color: #19417e;
}

.btn-blue:hover {
  background: #122f5e;
  border-color: #122f5e;
  color: #fff;
}

.btn-green {
  background: #51ab3e;
  color: #fff;
  border-color: #51ab3e;
}

.btn-green:hover {
  background: #438f33; 
  border-color: #438f33;
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: #19417e;
}

.btn-outline-red {
  background: transparent;
  color: #e41e2b;
  border-color: #e41e2b;
}

.btn-outline-red:hover {
  background: #e41e2b;
  color: #fff;
}

.badge-gas-safe {
  background: #e41e2b;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gas-safe-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.gas-safe-badge-wrap .badge-gas-safe {
  margin-bottom: 0;
}

.gas-safe-logo {
  height: 44px;
  width: auto;
}

.hero-badge-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 3;
}

.hero-badge-bottom .gas-safe-badge-wrap {
  margin-bottom: 0;
}

.gas-safe-text {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  padding: 6px 16px;
}


/* Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* Top Bar */
.top-bar {
    background: #19417e;
    padding: 8px 0;
    font-size: 0.82rem;
}

.topbar,
.bottombar {
    pointer-events: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.topbar {
    top: 4px;
    width: 89%;
    height: 11px;
    display: block;
    background: #19417e;
    /* Hack to style the browser UI while making it invisible to the user */
    mask-image: linear-gradient(to right, transparent, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, transparent);
}

.top-bar a {
    color: #fff;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: #ddd;
}

.top-bar .top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.top-bar span {
    margin-right: 18px;
}

.top-bar .right-side {
    display: flex;
    gap: 20px;
}

.top-bar i {
    margin-right: 5px;
    color: #252525;
    color: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #46b450;
    margin: 10px 0 0;
}

/* NAVIGATION */
.navbar {
    background: #ffffff;
    padding: 10px 0;
    transition: box-shadow 0.3s;
    width: 100%;
}

.navbar .logo {
    width: 150px;
}

.navbar .nav-link {
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #19417e !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 15px 10px !important;
    transition: color 0.2s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #e41e2b !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-top: 3px solid #e41e2b;
  border-radius: 0;
}

.dropdown-item {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	color: #19417e;
	padding: 10px 20px;
	text-transform: uppercase;
}

.dropdown-item:hover {
  background: #f5f7fa;
  color: #e41e2b;
}

.navbar-toggler {
	border: unset;
}

.navbar-toggler i {
    color: #252525;
}

.hsfc-Step__Content {
	padding: 0!important;
}


/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
	color: #fff;
}

.hero.page-hero {
	min-height: 70vh;
}

.hero.page-hero-white{
	min-height: auto;
	background: #fff;
}

.hero.page-hero-blue{
	min-height: auto;
	background: #122f5e;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(25, 65, 126, 0.92) 0%, rgba(25, 65, 126, 0.7) 55%, rgba(25, 65, 126, 0.25) 100%);
}

/* Emergency Page */
.emergency-callbar {
	background: #e41e2b;
	padding: 10px 0;
	text-align: center;
}

.emergency-callbar p {
	color: #fff;
	font-weight: 700;
	margin: 0;
}

.emergency-callbar a {
	color: #fff;
	text-decoration: underline;
}

.hero .feature-list li {
	padding: 10px 0;
	color: #fff;
	border-bottom: unset;
}

.hero .feature-list li i {
	font-size: 120%;
    padding-right: 10px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .hero-content {
	display:flex;
	text-align: center;
	justify-content: center;
align-items: center;
flex-direction: column;
}

.hero-badge {
  display: inline-block;
  background: #e41e2b;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #e41e2b;
}

.hero:not(.page-hero) h1 {
  font-size: 325%;
}

.hero.page-hero-white p {
	color: #000;
}

.hero-img img {
	width: 100%;
	border-radius: 20px;
}

/* Trust Bar */
.stats-bar {
  background: #19417e;
  padding: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-item .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.stat-item .lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

/* Marque Section */
.marquee-section{
	background: #0d1f3c;
	padding: 30px 0;
}
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
}


.marquee-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: max-content;
	overflow: hidden;
}

.marquee-track img {
	width: 100px; 
    object-fit: contain;
    flex-shrink: 0;
	margin: 0 30px;
	filter: brightness(0) invert(1);
    transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.marquee-track img:hover {
    opacity: 1;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(314deg);
    transform: scale(1.05);
}

/* Features List */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f5;
  font-size: 0.95rem;
  color: #444;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  color: #e41e2b;
  margin-top: 3px;
  flex-shrink: 0;
}

.info-box {
  background: #19417e;
  color: #fff;
  border-radius: 8px;
  padding: 32px;
}

.info-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.info-box p,
.info-box a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.info-box i {
  color: #e41e2b;
  margin-right: 8px;
}

/* Services Section */
.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 36px 28px;
  height: 100%;
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-top-color 0.25s;
}

.service-card-icon:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
  border-top-color: #e41e2b;
}

.service-card-image {
  padding: 0 !important;
  overflow: hidden;
}

.service-card-image:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
  border-top-color: #e41e2b;
}

.service-card-image .card-img-wrap {
  overflow: hidden;
}

.service-card-image .card-img-wrap img {
  width: 100%;
  transition: transform 0.45s ease;
}

.service-card-image:hover .card-img-wrap img {
  transform: scale(1.07);
}

.service-card-image .service-details {
  padding: 24px 28px 28px;
}

.service-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: #19417e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.service-card .icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #e41e2b;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  z-index: 0;
}

.service-card-icon:hover .icon-wrap::before {
  transform: scaleX(1);
}

.service-card .icon-wrap i {
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.service-card .service-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card  h3 {
  color: #19417e;
  margin-bottom: 0.75rem;
}

.service-card  p {
  color: #555;
  margin: 0;
  flex: 1;
}

.service-card a.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e41e2b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

.service-card a.read-more:hover {
  gap: 10px;
}

/* Blog */
.blog-grid .card-img-wrap img {
  max-height: 300px;
  object-fit: cover;
}

.post-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  background: #fff;
  color: #19417e;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: background 0.25s, color 0.25s;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: #e41e2b;
  color: #fff;
}

.blog-pagination .page-numbers.dots {
  box-shadow: none;
  background: transparent;
}

/* Single Post */
.single-post-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.single-post-content {
  color: #555;
  line-height: 1.8;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  color: #19417e;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.single-post-content p {
  margin-bottom: 1.25rem;
}

.single-post-content ul,
.single-post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1rem 0;
}

.single-post-content blockquote {
  border-left: 4px solid #e41e2b;
  padding: 12px 20px;
  margin: 1.5rem 0;
  font-style: italic;
  color: #333;
  background: #f8f8f8;
}

.single-post-content a {
  color: #e41e2b;
  text-decoration: underline;
}

/* Latest Posts Sidebar */
.latest-posts-widget {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 28px 24px;
}

.latest-post-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}

.latest-post-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.latest-post-img {
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.latest-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-post-details {
  flex: 1;
}

.latest-post-details h5 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.35;
}

.latest-post-details h5 a {
  color: #19417e;
}

.latest-post-details h5 a:hover {
  color: #e41e2b;
}

.latest-post-details .post-date {
  margin-bottom: 10px;
}

.latest-post-details .read-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #e41e2b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.latest-post-details .read-more:hover {
  gap: 10px;
}

/* Why Choose  */
.why-card {
  padding: 28px 24px;
  border-left: 4px solid #e41e2b;
  background: #fff;
  border-radius: 0 8px 8px 0;
  height: 100%;
}
.why-card.em-card {
	border-left: none;
	padding: 0;
	background: transparent;
}

.why-card i {
  font-size: 1.8rem;
  color: #e41e2b;
  margin-bottom: 12px;
}

.why-card h4 {
  color: #19417e;
  margin-bottom: 8px;
}

.why-card p {
  color: #666;
  margin: 0;
}

.process-step {
  display: flex;
  gap: 20px;
align-items: center;
  justify-content: space-between;
flex-direction: column;
	text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #e41e2b;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h3 {
  color: #19417e;
  margin-bottom: 6px;
}

.step-body p {
  color: #666;
  margin: 0;
}

.brand-logo {
	height:50px;
	object-fit:contain;
}

/* Faq Style */
.accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #19417e;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  color: #e41e2b;
  background: #fff;
  box-shadow: none;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  border: 1px solid #e5e8ed;
  border-radius: 6px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-body {
  color: #555;
  font-size: 0.95rem;
}

/* Area Links */
.area-link {
	padding: 15px;
	border-radius: 10px;
	border: 1px solid #19417e;
	background: #fff;
	color: #19417e;
	display: block;
	text-align: center;
}

.area-link:hover {
	border-color: #e41e2b;
	color: #fff;
	background: #e41e2b;
}

/* Contact Form */
.contact-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.contact-links p {
	margin-bottom: 0 !important;
}
.contact-links i {
  color: #e41e2b;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-links a:hover {
	color: #e41e2b;
	text-decoration: none !important;
}
.contact-form-wrap {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
}

.contact-form-wrap h3 {
    color: #19417e;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.wpcf7-spinner{
	display: contents!important;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control,
.form-select,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    border: 2px solid #e5e8ed;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
    margin-bottom: 15px;
}

.form-control:focus,
.form-select:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #19417e;
    box-shadow: none;
}

.form-control::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #aaa;
}

.wpcf7 textarea {
    min-height: 130px;
    resize: vertical;
}

.wpcf7 input[type="submit"] {
    background: #e41e2b;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 14px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: 100%;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

.wpcf7 input[type="submit"]:hover {
    background: #c0101c;
    transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
    color: #e41e2b;
    font-size: 0.8rem;
    margin-top: 4px;
}

.wpcf7 .wpcf7-response-output {
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-top: 16px;
}


/* CTA Style */
.cta-band {
  background: linear-gradient(135deg, #19417e 0%, #122f5e 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 350px;
  height: 350px;
  background: rgba(228, 30, 43, 0.15);
  border-radius: 50%;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
}


/* Footer */
footer {
  background: #0d1f3c;
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-logo img {
  width: 200px
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e41e2b;
  display: inline-block;
}

.footer-links {
  list-style: none;
    padding: 0;
	margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #e41e2b;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: #e41e2b;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
	color: #e41e2b;
}

.footer-bottom {
    background: #070f1e;
  	padding: 18px 0;
  	font-size: 0.82rem;
  	color: rgba(255, 255, 255, 0.4);
}

.social-icons a {
    color: #aaa;
    margin-right: 12px;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #e41e2b;
}

footer p a:hover{
	color: #EA5B0C;
}
.copyright {
    margin: 0;
    font-size: 0.82rem;
    color: #666;
}

.privacy-links a{
	color: #aaa;;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.privacy-links a:hover{
	 color: #5FA049;
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
	.navbar .nav-link {
		font-size: 14px;
	}
	.dropdown-item {
		font-size: 14px;
	}
	.nav-btn {
	padding: 10px 17px !important;
}
}

@media screen and (max-width: 991.9px) {
    section {
        padding: 60px 0;
    }
	     h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-right: var(--bs-gutter-x, 1rem);
        padding-left: var(--bs-gutter-x, 1rem);
    }

    .top-bar {
        display: block;
        text-align: center;
        padding: 7px 0;
    }

    .top-bar .top-bar-inner {
        justify-content: center;
        flex-direction: column;
        gap: 4px;
    }

    .top-bar .right-side {
        justify-content: center;
        gap: 14px;
    }

    .top-bar span {
        margin-right: 0;
    }

    .logo-wrap {
        position: relative;
        width: 100%;
        justify-content: space-between;
    }

    .navbar .logo,
    .logo-mobile {
        height: 50px !important;
        width: auto;
        transition: all .3s;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 40px;
        margin-bottom: 0;
    }

    .nav-link {
        font-size: 120%;
        letter-spacing: 1px;
    }

    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        width: 0;
    }
	
	.dropdown-menu {
		border: none;
		border-radius: 0;
		box-shadow: unset;
		border-top: unset;
		background: #f5f7fa;
        padding: 5px 0;
	}
	
	.dropdown-item {
    	padding: 15px 10px;
		text-align: center;
	}

    .c-btn {
        display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
    }
    
    section {
        padding: 60px 0;
    }

	.main-img {
		margin-top: 40px;
	}
	
}

@media only screen and (max-width: 767.9px) {
	section {
        padding: 50px 0;
    }
       h1 {
        font-size: 200% !important;
    }

    h2 {
        font-size: 150%;
    }
    .trust-item {
        padding: 8px;
    }

    section {
        padding: 60px 0;
    }

    .top-bar .top-bar-inner {
        justify-content: center;
        text-align: center;
    }
	.hero {
    min-height: 70vh;
  }
	.hero-bg::after {
    background: linear-gradient(180deg, rgba(25, 65, 126, 0.92) 0%, rgba(25, 65, 126, 0.88) 100%);
  }
	.hero-btns {
    flex-wrap: nowrap;
    gap: 10px;
  }
	.hero-btns .btn {
    flex: 1 1 0;
    padding: 12px 8px;
    font-size: 0.7rem;
    text-align: center;
    white-space: nowrap;
  }
	.row.g-5 {
    --bs-gutter-x: 1rem;
  }
}
@media (max-width: 620px) {
	.page-hero .hero-content h1 br {
		display: none;
	}
/* 	.ac-trust-grid{
		grid-template-columns: 1fr
	} */
}
@media (max-width: 490px) {
	.stat-item .num {
		font-size: 2rem;
	}
	.contact-form-wrap {
		padding: 40px 20px;
	}
	.info-box {
		padding: 30px 15px;
	}
	.service-card-image .service-details {
    padding: 20px 16px 20px;
}
}

@media (max-width: 430px) {
	 .btn.call {
        width: 40px;
        padding: 0;
        margin-top: 0;
    }
}