/* 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.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: #cc0000;
  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;
}

.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: 50px;
}

.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: #cc0000;
}

.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: 12px 20px;
  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: #cc0000;
}

/* =========================================
   FOOTER STYLES
   ========================================= */

/* --- Footer Main --- */
#footer .footer-top {
  background-color: #cc0000;
  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: #ffffff;
  font-size: 16px;
  transition: background 0.2s ease;
}

#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: 0px 0 40px;
  background: #fff;
}

.home-service-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 3px solid #cc0000;
  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: #cc0000;
  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: #f7941d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.btn-view-all:hover {
  background: #a00;
  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: #000000;
  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: #000000;
}

/* 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: 15px 20px;
    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: #ffffff;
  font-weight: 500;
  max-width: 750px;
  margin: 0 auto;
}
#testimonialCarousel .quote-mark {
  font-size: 32px;
  font-weight: 700;
  vertical-align: middle;
  color: #cc0000;
}
#testimonialCarousel .name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 15px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#testimonialCarousel .location {
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-dots.carousel-indicators {
  position: static;
  margin: 20px 0 0;
  padding: 0;
  display: block;
  text-align: center;
  justify-content: center;
  list-style: none;
}
.testimonial-dots button {
  flex: 0 0 auto;
  text-indent: 0;
  opacity: 1;
  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:hover,
.testimonial-dots button.active {
  background: rgb(201 0 22) !important;
  border-color: rgb(201 0 22) !important;
}

/* ── Offers & Services Section ── */
.offers-services-section {
  padding: 30px 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.carousel-indicators {
  position: static;
  margin: 0;
  padding: 10px 0;
  display: block;
  text-align: center;
  justify-content: center;
  list-style: none;
}
.offers-dots button {
  flex: 0 0 auto;
  text-indent: 0;
  opacity: 1;
  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:hover,
.offers-dots button.active {
  background: #cc0000;
  border-color: #cc0000;
}

/* Services list panel */
.services-list-panel {
  padding: 0px 20px 20px;
  max-height: 400px;
  /* overflow-y: auto; */
}
.services-list-cat {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  margin: 0px 0 0px;
  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: 0px 0;
}
.services-list-items li a {
  color: #000000;
  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;
  object-position: left; */

}
.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: 20px;
  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: #cc0000;
  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 h1,
.sd-text-block h2,
.sd-text-block h3 {
  color: #000000;
  font-weight: 700;
  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: #cc0000;
  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: #fff3f3;
  color: #cc0000;
  padding-left: 25px;
}
.sd-sidebar-list li a i {
  margin-right: 8px;
  color: #cc0000;
}

/* Stats Section */
.sd-stats-section {
  padding: 50px 0;
  background: #fff;
}
.sd-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}
.sd-section-title span {
  color: #cc0000;
}
.sd-stats-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.sd-stat-card {
  background: #f0a500;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px 40px;
  text-align: center;
  flex: 0 0 280px;
  max-width: 280px;
}
.sd-stat-icon {
  font-size: 36px;
  color: #cc0000;
  margin-bottom: 10px;
}
.sd-stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin: 3px;
  text-align: center;
}
.sd-stat-number span {
  color: #cc0000;
}
.sd-stat-label {
  font-size: 20px;
  color: #ffffff;
  margin-top: 5px;
  margin-bottom: 0px !important;
  text-align: center;
}

/* Process Steps */
.sd-process-section {
  padding: 50px 0;
  background: #fff1df;
}
.sd-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sd-process-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  transition: box-shadow 0.3s;
}
.sd-process-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.sd-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #cc0000;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.sd-process-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.sd-process-desc {
  font-size: 13px;
  color: #000000;
  line-height: 1.6;
}

/* 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: 1280px;
  /* 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: #cc0000;
  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;
}

/* 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: 850px) {
  .services-banner-overlay h1{
    font-size: 26px;
  }
  .services-banner-overlay p{
    font-size: 16px;
  }
  /* Hero slider */
  #main-slide .carousel-item {
    position: relative;
    overflow: hidden;
  }

  .post-content a {
    font-size: 22px !important;
  }
  #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: 30px !important;
    padding: 3px 6px;
    line-height: 1.3;
    padding: 0px !important;
  }
  #main-slide .slider-content h3 {
    font-size: 20px !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;
  }
  .facts-num span {
    font-size: 36px !important;
    font-weight: 700 !important;
    text-align: center !important;
  }

  .facts.two {
    justify-content: center !important;
  }
  /* 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;
  }
}

/* ── Services Banner Mobile ── */
@media (max-width: 576px) {
  #main-slide .slider-content h2 {
    font-size: 18px !important;
    /* padding: 3px 6px; */
    line-height: 1.3;
    margin-top: 0px !important;
    padding: 0px !important;
    line-height: 30px !important;
  }

  #main-slide .slider-content h3 {
    font-size: 14px !important;
    /* margin-top: 4px; */
    padding: 2px 5px;
    line-height: 1.3;
    margin-top: 0px !important;
    padding: 0px !important;
    line-height: 30px !important;
  }
  .services-banner {
    /* height: 220px; */
  }
  .services-banner-overlay h1 {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .services-banner-overlay p {
    /* font-size: 12px; */
    display: none;
  }
}
.btn-contact {
  background: #f0a500;
  color: white;
  border: none;
  padding: 14px 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.btn-contact:hover {
  background: #cc0000;
  color: white;
}
