/* 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 {
  /* 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: #34aa00 !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: 75px;
}

.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 8px;
  color: #333333;
  text-transform: uppercase;
  font-size: 1 px;
  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: #34aa00 !important;
}

.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: 8px 15px;
  color: #103464;
  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: #34AA00!important;
}

/* =========================================
   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: #34aa00;
  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: 320px;
  overflow: hidden;
}
.services-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
      object-position: top;
}
.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;
}

@media (max-width: 700px ){
  .services-banner-overlay h1 {
    font-size: 25px;
    line-height: 1.3;

  }
  .services-banner-overlay p {
    font-size: 15px;
    margin-top: 8px;
    
  }
}

/* ── Service Detail Page ── */
.sd-content-section {
  padding: 40px 0;
  background: #f8f8f8;
}
.sd-main-content {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 30px;
  height: 100%;
}
.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; */
  padding: 0;
  margin: 5px;
}
.sd-text-block h2 span,
.sd-text-block h3 span {
  /* color: #000000; */
}

.sd-text-block ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 10px 20px;  */
  padding-left: 0;
  list-style: none;
  list-style-type: none;
}

.sd-text-block ul li {
  position: relative;
  padding-left: 7px;
  /* font-size: 14px; */
  list-style-type: none;

}

/* Custom bullet */
.sd-text-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 3px;
  color: #FFDE00; /* your yellow */
  font-weight: bold;
}

@media (max-width: 1200px) {
  .sd-text-block ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sd-text-block ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sd-text-block ul {
    grid-template-columns: 1fr;
  }
}
.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;
  overflow: visible;
}
.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;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 50px 0;
  /* background: #f8f8f8; */
}
.faq-section h2 {
  /* text-align: center; */
  font-size: 28px;
  font-weight: 700;
  color: #103464;
  margin-bottom: 30px;
}
.faq-section .accordion-item {
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  background: #fffdf2;
}
.faq-section .accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: transparent;
  color: #000000;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
.faq-section .accordion-header:hover {
  background: #fffdf2;
}
.faq-section .accordion-header.active {
  background: #fffdf2;
}
.faq-section .accordion-header i {
  flex-shrink: 0;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.faq-section .accordion-content {
  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: #000;
}
.faq-section .accordion-content.active {
  max-height: 1000px;
  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: 991px) {
  .sd-facts {
    grid-template-columns: 1fr;
  }
  .sd-facts-left {
    min-height: auto;
  }
  .sd-fact-card {
    position: static;
    margin-bottom: 14px;
    min-width: auto;
  }
  .sd-facts-right {
    padding-left: 0;
  }
}

/* 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 .sd-facts-btn {
  align-self: flex-start;
}
.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 !important;
    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: #34aa00;
  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;
}

/* service  */

.estimate-section {
  background: linear-gradient(135deg, #34AA00, #34aa00);
  padding: 10px 0;
  overflow: hidden;
}

.estimate-content {
  padding: 10px  ;
  /* color: white; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.estimate-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  /* color: #ffffff; */
}

.estimate-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-estimate {
  padding: 5px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-custom {
  background-color: #ffdd00;
  color: #333;
}

.btn-primary-custom:hover {
  background-color: #ffc800;
  color: #000;
}

.estimate-image {
  text-align: right;
  padding: 0px;
}

.estimate-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* margin-top: -150px; */
}

/* Responsive Design */
@media (max-width: 768px) {
  .estimate-section {
    padding: 10px 0;
  }

  .estimate-content {
    padding: 10px 5px;
    text-align: center;
  }

  .estimate-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .estimate-buttons {
    justify-content: center;
  }

  .estimate-image {
    text-align: center;
    padding: 10px 0;
    order: -1;
  }

  .estimate-image img {
    margin-top: -100px;
  }
}

/* Circular Process Layout */
.sd-process-circular {
  padding: 50px 0;
  background: #fff;
}

.sd-process-circular .text-center {
  text-align: center;
  margin-bottom: 40px;
}

.sd-process-circular h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin: 0;
}

.sd-process-circular-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 50px;
  align-items: center;
  padding: 0 30px;
}

.sd-process-center {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
}

.sd-process-center img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid #f8dd2b;
  aspect-ratio: 1;
  object-fit: cover;
}

.sd-process-card {
  position: relative;
  padding: 24px;
  border-radius: 0px 0px 40px 0px;
  text-align: start;
  transition: all 0.3s ease;
}

.sd-process-card.bg-yellow {
  /* background: linear-gradient(135deg, #ffeb3b 0%, #fdd835 100%); */
  background-color: white;
  overflow: visible;
  border: 2px solid #ffeb3b;
  color: #333;
}

.sd-process-card.bg-green {
  background: linear-gradient(135deg, #34aa00 0%, #34aa00);
  color: #fff;
  overflow: visible;
}

.sd-process-card.bg-green h4 {
  color: #fff;
}

.sd-process-card.bg-green p {
  color: rgba(255, 255, 255, 0.95);
}

.sd-process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Base badge style */
.sd-process-badge {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 10%;
  font-weight: 700;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Variants */
.sd-process-badge--yellow {
  background: #FFDE00;
  color: #333;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
}

.sd-process-badge--green {
  background: rgba(255, 255, 255, 1);
  color: #54A811;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sd-process-card--0 {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0;
}

.sd-process-card--1 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}

.sd-process-card--2 {
  z-index: 2;
  grid-column: 1;
  grid-row: 3;
  margin-top: 40px;
}

.sd-process-card--3 {
  z-index: 1;
  grid-column: 2;
  grid-row: 3;
  margin-top: 40px;
  margin-left: 0px;
}

.sd-process-card-content {
  padding-top: 20px;
}

.sd-process-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #333;
}

.sd-process-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #555;
}

@media (max-width: 991px) {
  .sd-process-circular-container {
    display: block;
    /* grid-template-columns: 1fr; */
    /* gap: 30px; */
    margin-top: 30px;
  }

  .sd-process-center {
    /* grid-column: 1; */
    max-width: 300px;
  }

  .sd-process-card {
    grid-column: 1 !important;
    margin-top: 30px;

  }

  .sd-process-card--2 {
    margin-top: 30px;
  }

  .sd-process-card--3 {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .sd-process-circular h2 {
    font-size: 24px;
  }

  .sd-process-card {
    padding: 20px;
  }

  .sd-process-badge {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .sd-process-card h4 {
    font-size: 16px;
  }

  .sd-process-card p {
    font-size: 13px;
  }
}

.sd-text-block ul{
  list-style: disc !important;
}

/* SECTION */
.sd-why-importance-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  /* align-items: center; */
  background: #34aa00;
  /* padding: 70px 60px; */
  margin: 50px 0;
  color: #fff;
}

/* TEXT */
.sd-why-importance-content {
  color: #fff;
}

.sd-why-importance-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sd-why-importance-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 24px 0 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sd-why-importance-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  /* margin-bottom: 14px; */
}

.sd-rug-types-list {
  list-style: disc;
  padding-left: 40px;
  margin: 10px 0 20px;
  color: #fff;
}

.sd-rug-types-list li {
  font-size: 15px;
  line-height: 1.9;
  color: #fff;
}

/* IMAGE WRAPPER (images are already pre-shaped) */
.sd-why-importance-images {
  position: relative;
  min-height: 460px;
  /* display: flex; */
  justify-content: flex-end;
  align-items: center;
  /* margin-bottom: 132px; */
}

.sd-why-big-image {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.sd-why-big-image > img {
  width: 100%;
  height: auto;
  display: block;
}

.sd-why-small-image {
  position: absolute;
  width: 200px;
  bottom: -40px;
  left: -80px;
  z-index: 2;
}

.sd-why-small-image img {
  width: 100%;
  height: auto;
  display: block;
}
/* ================= TABLET ================= */
@media (max-width: 991px) {
  .sd-why-importance-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 25px;
  }

  .sd-why-importance-images {
    justify-content: center;
    min-height: 360px;
  }

  .sd-why-big-image {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }

  .sd-why-small-image {
    width: 150px;
    bottom: -30px;
    left: 10px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .sd-why-importance-section {
    padding: 30px 15px;
  }

  .sd-why-importance-content {
    padding-left: 20px !important;
  }

  .sd-why-importance-content h2 {
    font-size: 24px;
  }

  .sd-why-importance-content h3 {
    font-size: 20px;
  }

  .sd-why-importance-content p,
  .sd-rug-types-list li {
    font-size: 14px;
  }

  .sd-why-importance-images {
    min-height: 280px;
  }

  .sd-why-big-image {
    width: 100%;
  }

  .sd-why-small-image {
    width: 120px;
    bottom: -20px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .sd-why-importance-content h2 {
    font-size: 20px;
  }

  .sd-why-importance-content h3 {
    font-size: 17px;
  }

  .sd-why-importance-images {
    min-height: 240px;
  }

  .sd-why-small-image {
    width: 100px;
  }
}

/* NAV BUTTON BASE */
.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #f8dd2bde !important;
  color: #34aa00 !important;

  /* border-radius: 50%; */
  font-size: 18px;
  cursor: pointer;

  z-index: 10;
  transition: all 0.3s ease;
}

/* LEFT BUTTON */
.owl-prev {
  left: 0px;
}

/* RIGHT BUTTON */
.owl-next {
  right: 0px;
}

/* HOVER EFFECT */
.owl-prev:hover,
.owl-next:hover {
  background-color: #f8dd2b !important;
  color: #000 !important;
}


/* Card */
.offer-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  background: #fff;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.offer-img {
  position: relative;
  overflow: hidden;
}

.offer-img img {
  width: 100%;
  /* height: 220px;offer-overlay */
  /* object-fit: cover; */
  transition: 0.4s;
}

.offer-card:hover img {
  transform: scale(1.05);
}

/* Overlay */
.offer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.offer-card:hover .offer-overlay {
  opacity: 1;
}

.offer-overlay a {
  color: #54A811;
  font-size: 20px;
  background: #ffffff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Content */
.offer-content {
  padding: 15px;
}

.offer-content h6 {
  color: #54A811;
  font-size: 14px;
  margin-bottom: 5px;
}

.offer-content h4 {
  font-size: 16px;
  margin: 0;
}

.offer-content a {
  color: #111;
  text-decoration: none;
}

.offer-content a:hover  svg{
  color: #fff !important;
}