/* Base & Color Scheme */
:root {
  --primary: #1c75bc;
  --secondary: #def3ff;
  --text-main: #1c75bc;
  --text-secondary: #000000;
  --gray-bg: #f5f5f5;
  --gray-border: #dcdcdc;
  --bg: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
ol li,
p,
ul li {
  font-family: Montserrat, serif;
}

body.site {
  margin: 0;
  /* font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif; */
  color: var(--text-secondary);
  background: var(--bg);
}

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* --- Top Bar --- */
.top-bar {
  background-color: #103464;
  padding: 8px 0;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar__left .phone-icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.top-bar__phone-number {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff !important;
}

.top-bar__phone-number:hover {
  color: #ffde17 !important;
}

.top-bar__promo {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-left: 10px;
  padding-left: 15px;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
}

/* --- Social Circle Icons --- */
.top-bar__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.social-circle:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.social-circle svg {
  width: 16px;
  height: 16px;
}

.social-yt {
  background-color: #cd201f;
}
.social-ig {
  background-color: #e4405f;
}
.social-fb {
  background-color: #3b5998;
}

/* --- Main Header & Navigation --- */
.site-header {
  display: contents;
}

.main-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.main-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: block;
  padding: 15px 0;
}

.site-logo img {
  height: 70px;
}

.main-nav__menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
}

.main-nav__menu > li > a {
  display: flex;
  align-items: center;
  padding: 20px 14px;
  color: #333333;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-bottom: 3px;
}

.main-nav__menu > li:hover > a,
.main-nav__menu > li.active > a {
  background-color: rgba(0, 0, 0, 0.05);
  color: #103464;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.has-dropdown:hover .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 5px 15px;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-border);
  background-color: #ffffff;
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  background-color: #f5f5f5;
  color: #103464;
}

/* =========================================
   FOOTER STYLES
   ========================================= */

/* --- Footer Main --- */
#footer .footer-top {
  background-color: #103464;
  color: #ffffff;
  padding: 40px 0 30px;
}

#footer .footer-contact p,
#footer .footer-contact a {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.7;
}

#footer .footer-links h4,
#footer .footer-contact h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
}

#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links ul li {
  margin-bottom: 10px;
}

#footer .footer-links ul li a {
  color: #ffffff;
  font-size: 13px;
  transition: opacity 0.2s ease;
}

#footer .footer-links ul li a:hover {
  opacity: 0.75;
}

#footer .footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-contact-info li {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
}

#footer .footer-contact-info strong {
  font-weight: 700;
}

#footer .social-links {
  display: flex;
  gap: 10px;
}

#footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #000000;
  font-size: 16px;
  transition: background 0.2s ease;
  background-color: #f8dd2b !important;
}

#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* --- Top CTA Bar --- */
.footer-cta {
  background-color: #0c0c0c;
  color: #ffffff;
  font-size: 20px;
}

.footer-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 32px; /* aligns with container */
  padding-right: 0; /* lets the blue button touch the edge */
}

.footer-cta__text .text-primary {
  color: var(--primary);
  font-weight: 700;
}

/* The Blue Slanted Button */
.footer-cta__button-wrapper {
  background-color: var(--primary);
  padding: 20px 40px 20px 60px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.footer-cta__button {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  display: block;
}

/* --- Main Footer (Blue Area) --- */
.site-footer {
  background-color: var(--primary);
  color: #ffffff;
  padding-top: 60px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

/* Social Boxes */
.footer-social-boxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-box {
  display: inline-flex;
  width: max-content;
  min-width: 150px;
  text-decoration: none;
  color: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.social-box:hover {
  transform: translateX(5px);
}

.social-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.social-box .icon svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.social-box .text {
  background-color: #111111;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-grow: 1;
}

/* Specific Social Colors */
.fb-box .icon {
  background-color: #3b5998;
}
.ig-box .icon {
  background-color: #e4405f;
}
.yt-box .icon {
  background-color: #cd201f;
}

/* Links Column */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Facebook Widget Placeholder */
.fb-widget-container {
  background: #ffffff;
  padding: 5px;
  border-radius: 3px;
  min-height: 150px;
}

/* --- Skyline graphic & Bottom Bar --- */
.footer-skyline {
  width: 100%;
  height: 80px; /* Adjust based on your actual image height */
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: contain;
  /* Important: Put a skyline.png in your public/img folder */
}

.footer-bottom {
  background-color: #000000;
  color: #a0a0a0;
  padding: 20px 0;
  font-size: 13px;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-primary {
  color: var(--primary) !important;
}

/* --- Home Services Grid --- */
.home-services-section {
  padding: 50px 0 40px;
  background: #fff;
}

.home-service-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 3px solid #103464;
  text-decoration: none;
}

.home-service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.home-service-card:hover img {
  transform: scale(1.08);
}

/* Default bottom bar */
.home-service-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #cc0000;
  padding: 10px 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.home-service-card__overlay h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

/* Hover: full dark overlay with centered title + icon */
.home-service-card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 15px;
  text-align: center;
}

.home-service-card:hover .home-service-card__hover {
  opacity: 1;
}

.home-service-card:hover .home-service-card__overlay {
  opacity: 0;
}

.home-service-card__hover h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.home-service-card__hover .hover-icon {
  width: 40px;
  height: 40px;
  background: #103464;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.btn-view-all {
  display: inline-block;
  padding: 10px 28px;
  background: #ffde17;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.btn-view-all:hover {
  background: #103464;
  color: #fff;
}

.btn-view-all i {
  margin-left: 6px;
}

/* --- Arrow Tabs (Home About Section) --- */
.arrow-tabs {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0 0 40px;
}

.arrow-tabs .nav-item {
  position: relative;
}

.arrow-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px 12px 20px;
  margin-right: 8px;
  background: #e8e8e8;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 50%,
    calc(100% - 16px) 100%,
    0 100%,
    16px 50%
  );
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.arrow-tabs .nav-item:first-child .arrow-tab {
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 50%,
    calc(100% - 16px) 100%,
    0 100%
  );
  padding-left: 20px;
}

.arrow-tab i {
  font-size: 16px;
}

.arrow-tab:hover {
  background: #f0a500;
  color: #fff;
}

.arrow-tab.active {
  background: #f0a500;
  color: #fff;
}

.featured-tab .tab-content {
  padding: 30px 0;
}

.featured-tab .tab-content h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #333;
}

.featured-tab .tab-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* mobile arrow-tabs overrides moved to consolidated mobile block below */

/* --- Scroll To Top Button --- */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

.scroll-to-top:hover {
  background-color: #155a91; /* Slightly darker blue */
  transform: translateY(-3px);
}

/* --- Responsive Layout (Mobile & Tablet) --- */
@media (max-width: 991px) {
  /* Header Responsive (Kept from before) */
  .top-bar__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 15px 10px;
    align-items: center;
  }
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: #4a4a4a;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
  }
  .top-bar__left {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    flex-wrap: wrap;
  }
  .top-bar__promo {
    display: none;
  }
  .top-bar__socials {
    grid-column: 2;
    grid-row: 2;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 10px;
  }
  .main-header__inner {
    flex-direction: column;
  }
  .site-logo {
    padding: 20px 0;
    text-align: center;
  }
  .site-logo img {
    margin: 0 auto;
  }
  .main-nav {
    width: 100%;
    display: none;
    border-top: 1px solid var(--gray-border);
  }
  .main-nav.nav-open {
    display: block;
  }
  .main-nav__menu {
    flex-direction: column;
  }
  .main-nav__menu > li > a {
    padding: 5px 15px;
    border-bottom: 1px solid var(--gray-border);
  }
  .dropdown {
    position: static;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    display: none;
    background: var(--gray-bg);
  }
  .has-dropdown:hover .dropdown {
    display: block;
  }
  .dropdown li a {
    padding-left: 40px;
  }

  /* Footer Responsive */
  .footer-cta__inner {
    flex-direction: column;
    text-align: center;
    padding-left: 0;
  }
  .footer-cta__text {
    padding: 20px 15px;
  }
  .footer-cta__button-wrapper {
    width: 100%;
    clip-path: none;
    padding: 20px;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-contact-list li {
    justify-content: center;
  }
  .footer-social-boxes {
    align-items: center;
  }
  .footer-bottom__inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ── Testimonials Carousel ── */
.testimonial.parallax {
  position: relative;
  padding: 60px 0;
}
#testimonialCarousel {
  max-width: 850px;
  margin: 0 auto;
  padding: 20px 0 10px;
}
#testimonialCarousel .testimonial-content {
  padding: 20px 40px;
}
#testimonialCarousel .testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
  max-width: 750px;
  margin: 0 auto;
}
#testimonialCarousel .quote-mark {
  font-size: 32px;
  font-weight: 700;
  vertical-align: middle;
}
#testimonialCarousel .name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 15px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#testimonialCarousel .location {
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-dots {
  text-align: center;
  margin-top: 20px;
}
.testimonial-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.testimonial-dots button.active,
.testimonial-dots button:hover {
  background: rgb(201 0 22);
}

/* ── Offers & Services Section ── */
.offers-services-section {
  padding: 50px 0;
  background: #fff;
}
.offers-services-section .section-heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  position: relative;
}
.offers-carousel-wrap {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
}
.offers-carousel-wrap img {
  width: 100%;
  height: auto;
}
.offers-dots {
  padding: 10px 0;
}
.offers-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #999;
  background: transparent;
  margin: 0 4px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.offers-dots button.active,
.offers-dots button:hover {
  background: #cc0000;
  border-color: #cc0000;
}

/* Services list panel */
.services-list-panel {
  padding: 10px 20px 20px;
  max-height: 400px;
  overflow-y: auto;
}
.services-list-cat {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  margin: 15px 0 8px;
  padding-bottom: 5px;
  border-bottom: 2px solid #cc0000;
  display: inline-block;
}
.services-list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.services-list-items li {
  padding: 4px 0;
}
.services-list-items li a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.services-list-items li a:hover {
  color: #cc0000;
}
.services-list-items li i.fa {
  color: #cc0000;
  margin-right: 6px;
  font-size: 12px;
}

/* ── Services Banner ── */
.services-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.services-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.45); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
}
.services-banner-overlay h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.3;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
}
.services-banner-overlay p {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
}
.services-banner-overlay .breadcrumb-text a {
  color: #f8dd2b;
  text-decoration: none;
}

/* ── Service Detail Page ── */
.sd-content-section {
  padding: 40px 0;
  background: #f8f8f8;
}
.sd-main-content {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 30px;
}
.sd-text-block {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
}
.sd-text-block h2,
.sd-text-block h3 {
  color: #111;
  font-weight: 800;
  margin: 18px 0 12px;
  line-height: 1.3;
}
.sd-text-block h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.sd-text-block h3 {
  font-size: 18px;
}
.sd-text-block p {
  margin-bottom: 12px;
}
.sd-text-block h2 span,
.sd-text-block h3 span {
  color: #000000;
}
.sd-featured-img {
  width: 100%;
  border-radius: 6px;
  margin: 20px 0 25px;
  max-height: 400px;
  object-fit: cover;
}

/* Sidebar */
.sd-sidebar {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.sd-sidebar-title {
  background: #103464;
  color: #fff;
  padding: 15px 20px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.sd-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sd-sidebar-list li {
  border-bottom: 1px solid #f0f0f0;
}
.sd-sidebar-list li a {
  display: block;
  padding: 12px 20px;
  color: #000000;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.sd-sidebar-list li a:hover,
.sd-sidebar-list li a.active-service {
  background: #a3bbdb;
  color: #103464;
  padding-left: 25px;
}
.sd-sidebar-list li a i {
  margin-right: 8px;
  color: #103464;
}

/* Stats Section */
.sd-stats-section {
  padding: 50px 0;
  background: #fff;
}
.sd-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.3px;
  margin: 35px 0 25px;
  position: relative;
  padding-bottom: 12px;
}
.sd-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #103464;
  border-radius: 2px;
}
.sd-section-title span {
  color: #103464;
}
.sd-stats-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.sd-stat-card {
  background: linear-gradient(135deg, #fff 0%, #fff6ef 100%);
  border: 1px solid #f2d9c2;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  flex: 0 0 280px;
  max-width: 280px;
  box-shadow: 0 2px 10px rgba(245, 124, 31, 0.08);
  position: relative;
}
.sd-stat-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: #f57c1f;
  border-radius: 2px;
  margin: 0 auto 12px;
}
.sd-stat-icon {
  font-size: 36px;
  color: #cc0000;
  margin-bottom: 10px;
}
.sd-stat-number {
  font-size: 38px;
  font-weight: 900;
  color: #cc0000;
  margin: 0;
  line-height: 1;
}
.sd-stat-number span {
  color: #cc0000;
}
.sd-stat-label {
  font-size: 14px;
  color: #000000;
  margin-top: 5px;
}

/* Process (figma layout) */
.sd-process-wrap {
  margin: 40px 0;
}
.sd-process-heading {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin: 0 0 25px;
  line-height: 1.3;
}
.sd-process-heading span {
  color: #1f6fd6;
}
.sd-process-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}
.sd-process-hero {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.sd-process-hero img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.sd-process-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.sd-process-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 18px 18px 16px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.sd-process-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.sd-process-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.sd-process-item-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.sd-process-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffd21f;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.sd-process-item p {
  font-size: 13px;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 991px) {
  .sd-process-row {
    grid-template-columns: 1fr;
  }
  .sd-process-hero img {
    min-height: 260px;
  }
}
@media (max-width: 576px) {
  .sd-process-cards {
    grid-template-columns: 1fr;
  }
}

/* Process Steps (legacy) */
.sd-process-section {
  padding: 50px 0;
  background: #f8f8f8;
}
.sd-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sd-process-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 0 0 18px;
  text-align: center;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  overflow: hidden;
  position: relative;
}
.sd-process-card:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.sd-process-num {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #cc0000;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.sd-process-title {
  font-size: 15px;
  font-weight: 700;
  color: #103464;
  margin: 12px 15px 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.sd-process-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  padding: 0 15px;
  margin: 0;
}
.sd-process-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
}

/* Why Section */
.sd-why-section {
  padding: 50px 0;
  background: #fff;
}
.sd-why-section .sd-text-block h2,
.sd-why-section .sd-text-block h3 {
  font-size: 22px;
}

/* FAQ Section */
.sd-faq-section {
  padding: 50px 0;
  background: #f8f8f8;
}
.sd-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.sd-faq-item {
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.sd-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #103464;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.sd-faq-question i {
  flex-shrink: 0;
  margin-left: 10px;
}
.sd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #000000;
}
.sd-faq-answer.open {
  max-height: 500px;
  padding: 15px 20px;
}

/* Sidebar Cards */
.sd-sidebar-cards {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  padding-bottom: 10px;
}
.sd-side-card {
  display: block;
  margin: 15px;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.sd-side-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.sd-side-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.sd-side-card-body {
  padding: 12px 14px;
}
.sd-side-card-body h5 {
  font-size: 15px;
  font-weight: 700;
  color: #103464;
  margin: 0 0 6px;
}
.sd-side-card-more {
  font-size: 12px;
  color: #103464;
  font-weight: 600;
}

/* Interesting Facts (staircase stats) */
.sd-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin: 35px 0 40px;
}
.sd-facts-left {
  position: relative;
  min-height: 340px;
}
.sd-fact-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 22px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  min-width: 220px;
}
.sd-fact-card--1 {
  top: 0;
  left: 0;
}
.sd-fact-card--2 {
  top: 120px;
  left: 140px;
}
.sd-fact-card--3 {
  top: 240px;
  left: 0;
}
.sd-fact-icon {
  font-size: 32px;
  color: #111;
  line-height: 1;
}
.sd-fact-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  color: #000000;
  line-height: 1;
}
.sd-fact-card p {
  font-size: 14px;
  color: #000000;
  margin: 4px 0 0;
}
.sd-facts-right {
  padding-left: 10px;
}
.sd-facts-title {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin: 0 0 15px;
}
.sd-facts-title span {
  color: #1f6fd6;
}
.sd-facts-text {
  font-size: 14px;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 20px;
}
.sd-facts-btn {
  display: inline-block;
  background: #ffd21f;
  color: #103464;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.sd-facts-btn:hover {
  background: #103464;
  color: #ffd21f;
}
@media (max-width: 767px) {
  .sd-facts {
    grid-template-columns: 1fr;
  }
  .sd-facts-left {
    min-height: auto;
  }
  .sd-fact-card {
    position: static;
    margin-bottom: 14px;
    min-width: auto;
  }
}

/* Why Choose Us Feature */
.sd-why-feature {
  display: flex;
  align-items: stretch;
  gap: 30px;
  background: #0b3a6f;
  border-radius: 6px;
  padding: 40px 40px;
  margin: 30px 0;
  color: #fff;
}
.sd-why-feature-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sd-why-feature-left h3 {
  color: #fff !important;
}

.sd-why-feature-left h2 {
  color: #fff !important;
}

.sd-why-feature-label {
  display: inline-block;
  font-size: 14px;
  color: #cfe3ff;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.sd-why-feature-title {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #fff !important;
  margin: 0;
}

.sd-why-feature-title span {
  color: #fff;
}
.sd-why-feature-right {
  flex: 1;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 240px;
}
.sd-why-feature-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sd-why-feature-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.sd-why-feature-caption h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
@media (max-width: 768px) {
  .sd-why-feature {
    flex-direction: column;
    padding: 24px;
  }
  .sd-why-feature-title {
    font-size: 22px;
  }
  .sd-why-feature-right {
    min-height: 200px;
  }
}

/* CTA bar */
.sd-cta-bar {
  position: relative;
  background-image: url(../img/bg-img/1.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 28px 30px;
  border-radius: 6px;
  margin: 30px 0;
  flex-wrap: wrap;
  overflow: hidden;
  z-index: 0;
}
.sd-cta-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.sd-cta-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.sd-cta-text h3 {
  color: #fff !important;
}
.sd-cta-btn {
  background: #ffd21f;
  color: #000000;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  transition:
    background 0.2s,
    color 0.2s;
}
.sd-cta-btn:hover {
  background: #103464;
  color: #fff;
}
.sd-cta-btn i {
  margin-right: 6px;
}

.sd-faq-title {
  margin-top: 30px;
}

/* Service Detail Responsive */
@media (max-width: 991px) {
  .sd-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sd-main-content {
    padding: 20px 15px;
  }
  .sd-stat-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sd-process-grid {
    grid-template-columns: 1fr;
  }
  .sd-section-title {
    font-size: 22px;
  }
}

/* ── BS5 Slider Fixes (overrides old .item selectors) ── */
#main-slide .carousel-item img {
  width: 100%;
  height: auto;
}
#main-slide .carousel-item {
  backface-visibility: hidden;
}
#main-slide .carousel-item .slider-content {
  z-index: 1;
  opacity: 0;
  transition: opacity 500ms;
}
#main-slide .carousel-item.active .slider-content {
  opacity: 1;
  transition: opacity 100ms;
}

/* ── Mobile Responsive Fixes ── */
@media (max-width: 768px) {
  /* Hero slider */
  #main-slide .carousel-item {
    position: relative;
    overflow: hidden;
  }
  #main-slide .slider-content {
    top: 50% !important;
    margin-top: -50px !important;
    padding: 0 10px !important;
  }
  #main-slide .slider-content br {
    display: none;
  }
  #main-slide .slider-content h2 {
    font-size: 18px !important;
    padding: 3px 6px;
    line-height: 1.3;
  }
  #main-slide .slider-content h3 {
    font-size: 11px !important;
    margin-top: 4px;
    padding: 2px 5px;
    line-height: 1.3;
  }
  .slider.btn {
    display: none !important;
  }

  /* Call-to-action bar */
  .call-to-action .col-sm-12 {
    text-align: center;
  }
  .call-to-action .float-end {
    float: none !important;
    display: inline-block;
    margin-top: 10px;
  }

  /* About section tabs - wrap into grid */
  .arrow-tabs {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px;
    padding-bottom: 8px;
  }
  .arrow-tabs .nav-item {
    flex: 0 0 auto;
  }
  .arrow-tab,
  .arrow-tabs .nav-item:first-child .arrow-tab {
    clip-path: none !important;
    padding: 8px 12px;
    margin-right: 0;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
  }

  /* Tab content */
  .featured-tab .tab-content h3 {
    font-size: 18px;
  }
  .featured-tab .tab-content p {
    font-size: 14px;
  }

  /* Services grid */
  .home-service-card img {
    height: 180px !important;
  }

  /* Parallax sections */
  .parallax {
    padding: 50px 15px !important;
    background-attachment: scroll !important;
    background-size: cover !important;
  }
  .parallax h2 {
    font-size: 20px !important;
  }
  .parallax h3 {
    font-size: 16px !important;
    margin-bottom: 15px;
  }
  .parallax .btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.contact-breadcrumb img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

.contact-breadcrumb {
  position: relative;
}

.contact-breadcrumb .breadcrumb-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.contact-breadcrumb .post-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-breadcrumb .post-meta a {
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
}

.google-maps-contact-info {
  padding: 60px 0 0;
}

.google-maps-contact-info .single-contact-info {
  text-align: center;
  padding: 20px;
}

.google-maps-contact-info .single-contact-info i {
  font-size: 28px;
  color: #ffde17;
  margin-bottom: 10px;
  display: inline-block;
}

.google-maps-contact-info .single-contact-info h4 {
  font-size: 19px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 8px 0 8px;
}

.google-maps-contact-info .single-contact-info p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

.google-maps-contact-info .single-contact-info p a {
  color: #000000;
  text-decoration: none;
}

.google-maps-contact-info .google-maps {
  margin-top: 30px;
}

.google-maps-contact-info .google-maps iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.roberto-contact-form-area {
  padding: 80px 0;
}

.roberto-contact-form-area .section-heading {
  margin-bottom: 40px;
}

.roberto-contact-form-area .section-heading h6 {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}

.roberto-contact-form-area .section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.roberto-contact-form .form-control {
  height: 55px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 10px 18px;
  box-shadow: none;
  font-size: 14px;
}

.roberto-contact-form textarea.form-control {
  height: 130px;
  resize: vertical;
}

.roberto-contact-form .mb-30 {
  margin-bottom: 20px;
}

.roberto-contact-form .roberto-btn {
  background: #f8dd2b;
  color: #1f1f1f;
  font-weight: 700;
  padding: 14px 38px;
  border: 0;
  border-radius: 3px;
  text-transform: none;
  font-size: 15px;
}

.roberto-contact-form .roberto-btn:hover {
  background: #103464;
}

.btn-read-more {
  display: inline-block;
  padding: 5px 15px;
  background-color: #f8dd2b;
  font-size: 12px;
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-read-more:hover {
  background-color: #103464;
  color: #ffffff;
}

/* ============================================
   Home page layout (new design)
============================================ */
.home-intro {
  padding-top: 20px;
}
.home-intro .home-intro-bg {
  background: rgba(0, 0, 0, 0) url(/images/arearug-bg.webp) no-repeat 50% 0;
}
.who-we-are-title,
.what-we-do-title {
  text-align: left;
  margin-bottom: 10px;
}

.approach-estimate {
  margin-left: 25px;
}

.services-sector {
  padding-bottom: 0;
}
.services-sector-wrap {
  overflow: hidden;
}
.services-empty,
.blog-empty {
  padding: 40px 0;
}

.blog-column {
  margin: 5px;
  background: #fff;
  padding-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.blog-column-thumb {
  display: block;
  overflow: hidden;
  position: relative;
  padding-top: 62%;
}
.blog-column-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-detail-inner {
  padding: 15px;
}
.blog-detail-inner h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
.blog-detail-inner h5 a {
  color: #333;
  font-weight: 600;
}
.blog-read-more {
  color: #3bb44a;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

/* Offers and Blog carousel nav */
.offers-section .owl-nav,
.blog-section .owl-nav {
  position: static !important;
  display: flex !important;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}
.offers-section .owl-prev,
.offers-section .owl-next,
.blog-section .owl-prev,
.blog-section .owl-next {
  position: static !important;
  height: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 20px !important;
  background: #232323 !important;
  color: #fff !important;
  border: 2px solid #232323 !important;
  border-radius: 4px !important;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.offers-section .owl-prev span,
.offers-section .owl-next span,
.blog-section .owl-prev span,
.blog-section .owl-next span {
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 14px;
}

/* Appointment form */
.appointment-all-fields {
  display: block;
  width: 100%;
  padding-right: 0;
}
.appointment-form-wrap .property-field.textarea-field {
  display: block;
  height: auto;
  position: relative;
}
.appointment-form-wrap .property-field.textarea-field .fa {
  position: absolute;
  top: 15px;
  left: 0;
}
.appointment-form-wrap .property-field textarea {
  background: transparent;
  border: 0;
  color: #919191;
  font-family: Montserrat, serif;
  font-size: 16px;
  width: 100%;
  min-height: 120px;
  padding: 12px 15px 15px 5px;
  resize: none;
  outline: none;
}
.appointment-form-wrap .form-actions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  width: 100%;
  float: left;
}
.appointment-form-wrap .form-actions .book-now {
  position: relative;
  top: 0;
  width: 50%;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 3px;
  font-weight: 700;
  transition: all 0.3s;
  padding: 15px;
}
.appointment-form-wrap .form-actions .call-btn {
  background: #232323;
  color: #ffffff;
  text-decoration: none;
}
.appointment-form-wrap .form-actions .call-btn i {
  margin-right: 8px;
}

@media (max-width: 767px) {
  .appointment-form-wrap .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  .appointment-form-wrap .form-actions .book-now {
    width: 100%;
  }

  section {
    overflow-x: hidden;
  }

  .slide-text h2 {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  .slide-text p {
    font-size: 13px !important;
  }

  .tab-data ul {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
  }
  .tab-data ul li {
    width: 50% !important;
    padding: 10px 8px !important;
    box-sizing: border-box;
  }

  .who-we-are img,
  .what-we-do img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    display: block;
    margin-top: 20px;
  }

  .text-to-cnter {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
  }
  .text-to-cnter .service-cta {
    margin-left: 0 !important;
    text-align: center;
    display: block;
  }

  .mb-service {
    margin-bottom: 20px;
  }
  .offers-section img {
    width: 100% !important;
    height: auto !important;
  }
  .blog-column {
    margin: 0 0 15px 0 !important;
  }
  .pricing-card {
    margin-bottom: 20px !important;
  }
  .appointment-form-wrap {
    padding: 20px 15px !important;
  }
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.pricing-section .pricing-card {
  margin-bottom: 30px;
}

/* ============================================
   Services index page
============================================ */
@media (min-width: 769px) {
  .services-index-title {
    margin-top: 40px !important;
  }
}
.services-sector--index {
  padding-bottom: 0;
}

.appointment-form-wrap--padded .fancy-form-title,
.appointment-form-wrap--padded .property-form-fields {
  padding-left: 20px;
}
.appointment-form-wrap--padded .property-field textarea {
  padding-left: 10px;
}
.appointment-form-wrap--padded .form-actions .book-now {
  padding: 15px 0;
  text-align: center;
}

.contact-form-image--tall > img {
  min-height: 750px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 768px) {
  .services-index-wrap section,
  .services-index-wrap {
    overflow-x: hidden;
  }
  .services-index-wrap .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ============================================
   Footer (dark blue parallax)
============================================ */
.darkblue-layer {
  background: rgba(0, 33, 71, 0.85) !important;
  position: relative;
}
.footer-parallax-bg {
  background: url(/images/parallax3.webp) repeat scroll 50% 0 transparent;
}
.footer-widgets-row {
  padding-left: 20px;
}
.footer-useful-links {
  padding-left: 20px;
}

.footer-logo {
  height: 30px;
  width: 230px;
  display: block;
  margin-left: -25px;
}

.footer-social-icon {
  color: #ffffff;
}

.footermenu {
  color: #ffffff;
}

.footer-widgets,
.footer-widgets h4,
.footer-widgets p,
.footer-widgets a,
.line-after {
  color: #ffffff !important;
  position: relative;
  z-index: 5;
}

.footer-widgets .widget ul {
  list-style: none;
  padding: 0;
}
.footer-widgets .widget ul li a {
  color: #ffffff !important;
  display: block;
  padding: 5px 0;
}

.bottom-footer-text {
  text-align: center;
}

/* Offer detail page */
.fade:not(.show) {
  opacity: 1 !important;
}
.pagetop-img--short {
  width: 100%;
  height: 350px;
  max-height: 270px;
  object-fit: cover;
}
.offer-detail-block {
  padding-top: 60px;
}
.offer-detail-img {
  width: 100%;
  border-radius: 5px;
}

/* Blog detail page */
.pagetop-img--blog {
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.blog-detail-block {
  padding-top: 60px;
}
.blog-single {
  background: #fff;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.post-img--blog {
  margin-bottom: 30px;
}
.post-img--blog img {
  width: 100%;
  border-radius: 5px;
}
.blog-single-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}
.blog-content-body {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}
.blog-content-divider {
  margin: 40px 0;
  border: none;
  border-top: 2px solid #e0e0e0;
}
.home-faq-container {
  margin-top: 40px;
}
.blog-faq-heading {
  text-align: left !important;
  font-weight: 700;
  font-size: 28px;
}
.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 15px rgba(59, 180, 74, 0.12);
}
.faq-question {
  background: #fff;
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #032138;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  gap: 15px;
}
.faq-item.active .faq-question {
  background: #3bb44a;
  color: #fff;
}
.faq-question .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}
.faq-question .arrow.open {
  transform: rotate(90deg);
}
.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 22px;
  background: #fff;
}
.faq-answer.open {
  max-height: 2000px;
  padding: 18px 22px;
}
.faq-answer p {
  margin: 0;
  font-size: 14.5px;
  color: #000000;
  line-height: 1.8;
  border-left: 3px solid #3bb44a;
  padding-left: 14px;
}

/* Header (topbar inline replacements) */
.header-logo {
  transform: scale(1.15);
}
.topbar-welcome {
  font-size: 16px;
  color: #fff;
  font-family: Montserrat, serif;
  font-weight: 600;
  line-height: 3;
}
.topbar-phone {
  font-size: 16px;
  color: #fff;
  font-family: Montserrat, serif;
  font-weight: 600;
  padding-left: 15px;
}
.topbar-social-icon {
  color: #fff;
}

@media (max-width: 991px) and (min-width: 767px) {
  .theme-layout {
    margin-top: 0px !important;
  }
}
@media (max-width: 767px) {
    .pagetop .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        top: 60% !important;
        float: none;
        text-align: center !important;
        justify-content: center !important;
    }
}