/* Variables */
body.site {
  --primary: #059eff;
  --secondary: #def3ff;
  --text-main: #059eff;
  --text-dark: #1a1a1a;
  --gray-light: #f9f9f9;
}

/* Global Home Utility Classes */
.section-padding {
  padding: 60px 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mt-4 {
  margin-top: 24px;
}

.section-title {
  color: var(--text-dark);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle {
  color: #000000;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Base Buttons */
.btn-primary {
  display: inline-block;
  background-color: #84b30d;
  color: #fff;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #29c3d4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 158, 255, 0.3);
}

.btn-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.btn-read-more .arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.btn-read-more:hover {
  color: #0482d6;
}

.btn-read-more:hover .arrow {
  transform: translateX(5px);
}

/* Nav Slider Buttons */
.posts-nav-buttons {
  display: flex;
  gap: 8px;
}

.post-nav-btn {
  background: #fff;
  border: 1px solid #dcdcdc;
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.post-nav-btn:hover {
  background: #70cbff;
  color: #fff;
  border-color: var(--primary);
}

/* =========================================
   1. HERO SLIDER
   ========================================= */
/* Slider Container */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.slider {
  position: relative;
  height: 500px;
}

/* Individual Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: block;
  color: #fff;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Image Fitting - object-position: center ensures it crops perfectly from the middle */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark Overlay to make white text readable */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* Adjust the 0.45 to make it darker or lighter */
  z-index: 1;
}

/* Centered Content Box */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* Places text above the overlay and image */
  text-align: center;
  width: 90%;
  max-width: 800px;
}

.slide-content h2 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 25px;
  font-family: inherit !important;
  /* text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7); */
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.slide-content h1 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 25px;
  font-family: inherit !important;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
  /* text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7); */
  line-height: 1.2;
}

/* Base button styling (in case it isn't defined globally yet) */
.slide-content .btn-primary {
  display: inline-block;
  background-color: #84b30d;
  color: #fff;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.slide-content .btn-primary:hover {
  background-color: #7fb401;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(5, 158, 255, 0.3);
}

/* Slider Controls (Z-index updated to 3 to sit above the overlay) */
.slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.45);
  border: none;
  color: #40b3f1;
  font-size: 28px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s;
}

.slider__nav:hover {
  background: #40b3f1;
  color: #ffffff;
}

.slider__prev {
  left: 18px;
}

.slider__next {
  right: 18px;
}

.slider__dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
  pointer-events: auto;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #40b3f1;
  transform: scale(1.1);
}

/* =========================================
   2. SERVICES SLIDER
   ========================================= */
/* /* 2. Services Slider Section */

.service-offerings-section {
  background-color: #ffffff;
  /* Clean white background */
  padding: 70px 0;
  font-family: "Inter", "Trebuchet MS", sans-serif;
}

/* Title Styling */
.offerings-title {
  font-size: 18px;
  margin-bottom: 40px;
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.offerings-title strong {
  font-size: 30px;
  font-weight: 800;
}

.text-blue {
  color: #0b5ed7;
  /* Theme blue */
  font-weight: 800;
}

/* Grid Layout */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Large Left Feature Image */
.offerings-feature-image {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  /* Spans 2 rows downward to match the 2 rows of service cards */
  border-radius: 12px;
  overflow: hidden;
}

.offerings-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Individual Service Cards */
.offering-card {
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.offering-card:hover {
  box-shadow: 0 10px 25px rgba(11, 94, 215, 0.08);
  /* Soft blue shadow */
  transform: translateY(-3px);
  border-color: #cce0ff;
}

.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Circular Icon Box */
.offering-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #cce0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #0b5ed7;
  background-color: transparent;
}

.offering-icon svg {
  width: 22px;
  height: 22px;
}

/* Typography inside cards */
.offering-card-title {
  color: #0b5ed7;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.offering-card-desc {
  color: #000000;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex-grow: 1;
  /* Pushes the "Learn More" link to the bottom */
}

/* Links */
.offering-link {
  color: #0b5ed7;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.offering-link:hover {
  color: #084298;
}

/* --- Wrapper --- */
.discover-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

/* --- Main Button Styling --- */
.discover-more-btn {
  background: transparent;
  border: none;
  color: #00102a;
  /* Very dark blue/black to match the image */
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* Space between text and the white circle */
  font-family: inherit;
  transition: all 0.3s ease;
}

/* --- White Circle Icon Styling --- */
.discover-more-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #81ba00;
  /* Theme green for the arrow */
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  /* Soft drop shadow */
  transition: transform 0.3s ease;
}

/* --- Hover Effect --- */
.discover-more-btn:hover {
  color: #81ba00;
  /* Text turns green on hover */
}

.discover-more-btn:hover .btn-icon {
  transform: translateX(5px);
  /* Arrow circle shifts slightly to the right */
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .offerings-grid {
    /* Change to 3 columns on tablet */
    grid-template-columns: repeat(3, 1fr);
  }

  .offerings-feature-image {
    grid-row: auto;
    grid-column: 1 / -1;
    /* Image takes full width */
    height: 300px;
  }
}

@media (max-width: 768px) {
  .offerings-title {
    font-size: 28px;
  }

  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .offerings-grid {
    grid-template-columns: 1fr;
    /* Stack everything on mobile */
  }

  .discover-more-wrapper {
    text-align: center;
    /* Center button on mobile */
    margin-top: 25px;
  }
}

/* =========================================
   ABOUT US SECTION
   ========================================= */

.about-us-section {
  background-color: #f2f7fc;
  /* Very light blue background */
  padding: 80px 0;
  font-family: "Inter", "Trebuchet MS", sans-serif;
  overflow: hidden;
  /* Prevents absolute images from causing horizontal scroll */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- Content Styling --- */
.about-subtitle {
  display: block;
  color: #0b5ed7;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-title {
  font-size: 40px;
  font-weight: 800;
  color: #111111;
  line-height: 1.2;
  margin: 0 0 25px 0;
  letter-spacing: -0.5px;
}

.about-title .text-blue {
  color: #0b5ed7;
}

.about-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 35px;
}

/* Button */
.btn-primary-pill {
  display: inline-block;
  background-color: #0b5ed7;
  color: #ffffff !important;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.btn-primary-pill:hover {
  background-color: #084298;
  transform: translateY(-2px);
}

/* --- Image Composition Styling --- */
.about-images {
  position: relative;
  width: 100%;
  /* Creates enough height to hold the absolute positioned image */
  min-height: 450px;
}

.image-wrapper-main {
  width: 75%;
  position: relative;
  z-index: 1;
}

.img-main {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  display: block;
}

.image-wrapper-sub {
  width: 55%;
  position: absolute;
  bottom: -20px;
  /* Pulls it down slightly over the edge */
  right: 0;
  z-index: 2;
  /* This border creates the 'cutout' effect against the main image */
  border: 10px solid #f2f7fc;
  border-radius: 20px;
  /* Slightly larger radius to account for border */
  background-color: #f2f7fc;
}

.img-sub {
  width: 100%;
  border-radius: 10px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .about-images {
    max-width: 600px;
    margin: 0 auto;
    min-height: auto;
    /* Let it scale naturally */
    padding-bottom: 10%;
    /* Room for the absolute image */
  }

  .image-wrapper-sub {
    bottom: -10%;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }

  .about-us-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 28px;
  }

  .image-wrapper-sub {
    border-width: 6px;
    /* Smaller border on mobile */
  }
}

/* =========================================
   CTA BANNER SECTION
   ========================================= */

.cta-banner-section {
  background-color: #eaf2fa;
  /* Light blue section background */
  padding: 60px 0;
  font-family: "Inter", "Trebuchet MS", sans-serif;
}

.cta-box {
  background-color: #f8fafc;
  /* Very light gray/white inner box */
  border-radius: 12px;
  padding: 45px 30px;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  /* Very subtle shadow */
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 35px 0;
  letter-spacing: -0.5px;
}

.cta-title .text-blue {
  color: #0b5ed7;
  /* Theme blue */
}

/* Button Container */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
}

/* Outline Button */
.btn-outline-blue {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid #0b5ed7;
  color: #0b5ed7;
  background-color: transparent;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-blue:hover {
  background-color: #0b5ed7;
  color: #ffffff;
}

/* Solid Button */
.btn-solid-blue {
  display: inline-block;
  padding: 13px 28px;
  /* Slightly adjusted padding to match outline button height */
  border: 1.5px solid #0b5ed7;
  background-color: #0b5ed7;
  color: #ffffff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-solid-blue:hover {
  background-color: #084298;
  border-color: #084298;
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 768px) {
  .cta-banner-section {
    padding: 50px 0;
  }

  .cta-box {
    padding: 35px 20px;
  }

  .cta-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Buttons go full width on mobile for better touch targets */
  .btn-outline-blue,
  .btn-solid-blue {
    width: 100%;
    max-width: 300px;
  }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */

.why-choose-us-section {
  background-color: #f2f7fc;
  /* Matches the very light blue background */
  padding: 80px 0;
  font-family: "Inter", "Trebuchet MS", sans-serif;
}

.why-grid-layout {
  display: grid;
  /* Image takes 45% width, content takes 55% */
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

/* --- Left Image --- */
.why-image-col img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: block;
  object-fit: cover;
}

/* --- Right Content Headers --- */
.why-subtitle {
  display: block;
  color: #0b5ed7;
  /* Theme blue */
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.why-title {
  font-size: 36px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 40px 0;
  letter-spacing: -0.5px;
}

.why-title .text-blue {
  color: #0b5ed7;
}

/* --- Cards Grid --- */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-feature-card {
  background-color: transparent;
  border: 1px solid #d8e5f5;
  /* Subtle blue/gray border */
  border-radius: 12px;
  padding: 25px 20px;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.why-feature-card:hover {
  background-color: #ffffff;
  /* Slight white pop on hover */
  border-color: #cce0ff;
}

/* Icon & Title Grouping */
.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #0b5ed7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b5ed7;
  /* Blue icon */
  background-color: transparent;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

/* Card Text */
.why-feature-card p {
  font-size: 13px;
  color: #444444;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 991px) {
  .why-grid-layout {
    grid-template-columns: 1fr;
    /* Stack image and content on tablets */
    gap: 40px;
  }

  .why-image-col {
    max-width: 600px;
    margin: 0 auto;
  }

  .why-content-col {
    text-align: center;
  }

  /* Keep cards 2x2 but center align their internals */
  .feature-header {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .why-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .why-title {
    font-size: 28px;
  }

  .why-features-grid {
    grid-template-columns: 1fr;
    /* Stack cards 1 by 1 on mobile */
  }
}

/* =========================================
   FAQ SECTION
   ========================================= */

.faq-section {
  background-color: #f2f7fc;
  /* Matches the very light blue theme */
  padding: 80px 0;
  font-family: "Inter", "Trebuchet MS", sans-serif;
}

.faq-main-title {
  font-size: 36px;
  font-weight: 500;
  color: #111111;
  margin: 0 0 50px 0;
  letter-spacing: -0.5px;
}

.faq-main-title .text-blue {
  color: #0b5ed7;
  /* Theme blue */
}

.text-center {
  text-align: center;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #d8e5f5;
  /* Faint line between items */
}

.faq-item:last-child {
  border-bottom: none;
}

/* Button & Question Text */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question-text {
  display: flex;
  align-items: flex-start;
  padding-right: 20px;
}

.faq-number {
  color: #0b5ed7;
  /* Blue number */
  font-size: 16px;
  font-weight: 600;
  margin-right: 6px;
  line-height: 1.4;
}

.faq-text {
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  line-height: 1.4;
}

/* Toggle Icon */
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #0b5ed7;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

/* The Plus Sign */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

/* Active/Open State for Icon (White circle, blue border, minus sign) */
.faq-item.active .faq-icon {
  background-color: transparent;
  border: 1.5px solid #0b5ed7;
}

.faq-item.active .faq-icon::before {
  background-color: #0b5ed7;
  /* Turns line blue */
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  background-color: transparent;
  /* Hides vertical line to make a minus */
}

/* Answer Box */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  background-color: #ffffff;
  border: 1px solid #0b5ed7;
  /* Thin blue border */
  border-radius: 6px;
  padding: 18px 20px;
  margin-bottom: 25px;
  /* Spacing below the open box */
  margin-top: 5px;
}

.faq-answer-inner p {
  margin: 0;
  font-size: 14px;
  color: #444444;
  line-height: 1.6;
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-main-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .faq-text,
  .faq-number {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .faq-main-title {
    font-size: 26px;
  }

  .faq-question {
    padding: 18px 0;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-icon::before {
    width: 10px;
  }

  .faq-icon::after {
    height: 10px;
  }
}

/* =========================================
   TRUST BANNER SECTION
   ========================================= */

.trust-banner-section {
  background-color: #eaf2fa;
  /* Matches the light blue background */
  padding: 60px 0 40px 0;
  font-family: "Inter", "Trebuchet MS", sans-serif;
}

.trust-card {
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  /* Very subtle drop shadow */
  max-width: 1000px;
  margin: 0 auto;
}

.trust-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.trust-text {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.3px;
}

.trust-text .text-blue {
  color: #0b5ed7;
  /* Theme blue */
}

.trust-logo {
  max-height: 60px;
  /* Adjust based on your logo's native aspect ratio */
  width: auto;
  display: block;
}

/* Vertical separating lines */
.trust-divider {
  width: 1px;
  height: 70px;
  background-color: #dcdcdc;
  /* Light gray line */
  margin: 0 20px;
}

/* =========================================
   CLIENT LOGOS SECTION
   ========================================= */

.client-logos-section {
  background-color: #ffffff;
  /* White background */
  padding: 20px 0 60px 0;
}

.client-logos-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centers logos horizontally */
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
  gap: 40px 50px;
  /* Vertical gap 40px, Horizontal gap 50px */
}

.client-logo-img {
  max-height: 70px;
  /* Keeps all logos a uniform height */
  max-width: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo-img:hover {
  transform: scale(1.05);
  /* Slight pop on hover */
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 991px) {
  .trust-card {
    padding: 30px;
  }

  .trust-text {
    font-size: 18px;
  }

  .trust-logo {
    max-height: 45px;
  }
}

@media (max-width: 768px) {
  .trust-banner-section {
    padding: 40px 0 20px 0;
  }

  /* Change to vertical stack on mobile */
  .trust-card {
    flex-direction: column;
    gap: 20px;
    padding: 35px 20px;
  }

  /* Change vertical dividers to horizontal dividers */
  .trust-divider {
    width: 150px;
    height: 1px;
    margin: 10px 0;
  }

  .client-logos-flex {
    gap: 30px;
  }

  .client-logo-img {
    max-height: 50px;
  }
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials-section {
  background-color: #84b30d;
  /* Clean white background */
  padding: 80px 0;
  font-family: "Inter", "Trebuchet MS", sans-serif;
}

/* Header Styling */
.testi-header {
  margin-bottom: 50px;
}

.testi-title {
  font-size: 36px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.testi-title .text-blue {
  color: #0b5ed7;
  /* Theme blue */
}

.testi-subtitle {
  font-size: 16px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

.star-icon {
  width: 18px;
  height: 18px;
  color: #f97316;
  /* Orange star color */
  margin-right: -2px;
}

.stars-inline {
  display: inline-flex;
  align-items: center;
}

/* Updated Grid Layout for Sliding */
.testi-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  -ms-overflow-style: none;
  /* Hide scrollbar */
  scrollbar-width: none;
  /* Hide scrollbar */
}

.testi-grid::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Updated Card to work inside the slider */
.testi-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.testi-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

/* Giant Quote Mark */
.quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  color: #fcece3;
  /* Very pale peach/orange */
  line-height: 0.5;
  margin-top: 20px;
}

.card-stars {
  display: flex;
}

/* Review Text */
.testi-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #444444;
  flex-grow: 1;
  /* Pushes the user info to the bottom evenly */
  margin: 0 0 20px 0;
}

/* Thin separator line */
.testi-divider {
  width: 100%;
  height: 1px;
  background-color: #eeeeee;
  margin-bottom: 20px;
}

/* User Profile Styling */
.testi-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #0b5ed7;
  /* Blue outline */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b5ed7;
  /* Blue icon */
}

.user-avatar svg {
  width: 24px;
  height: 24px;
}

.user-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 3px 0;
}

.user-info span {
  font-size: 13px;
  color: #777777;
}

/* Pagination Dots */
.slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-pagination .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e2e8f0;
  /* Inactive light gray */
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-pagination .dot.active {
  background-color: #0b5ed7;
  /* Active theme blue */
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 1024px) {
  .testi-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (min-width: 1025px) {
  .testi-card {
    /* Shows exactly 3 cards: (100% - 2 gaps) / 3 */
    flex: 0 0 calc((100% - 60px) / 3);
  }
}

@media (max-width: 768px) {
  .testi-grid {
    gap: 20px;
  }

  .testi-card {
    flex: 0 0 100%;
  }
}

/* =========================================
   4. SPLIT SECTION (Why Choose / Testimonials)
   ========================================= */
.split-testimonials-section {
  background-color: #ffffff;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Left Column */
.why-choose-column {
  padding-right: 20px;
  margin-left: 123px;
}

/* Right Column (Vertical Slider showing 3 slides at once) */
.testimonials-column {
  padding-left: 20px;
  /* border-left: 2px solid var(--primary); */
  position: relative;
  padding-bottom: 10px;
}

/* .testimonials-column::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    bottom: 0;
    width: 10px;
    background: repeating-linear-gradient(to bottom, var(--primary) 0, var(--primary) 10px, transparent 10px, transparent 20px);
} */

.testimonial-container-right {
  padding: 10px 0;
}

/* Height calculated to fit 3 slides (140px each) perfectly */
.vertical-slider-window {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.vertical-slider-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
}

/* Fixed slide height to exactly 140px */
.testimonial-slide-split {
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px 20px 15px 0px;
  position: relative;
}

/* .testimonial-slide-split::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 60px;
    color: var(--secondary);
    line-height: 1;
    font-family: Georgia, serif;
} */

.test-content .review-text {
  font-size: 15px;
  font-style: italic;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 15px;
}

.test-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #ccc;
  padding-top: 10px;
}

.test-bottom .reviewer-name {
  font-weight: 700;
  color: #07669c;
  font-size: 13px;
  margin: 0;
}

.test-bottom .stars {
  color: #f39c12;
  font-size: 14px;
  letter-spacing: 2px;
}

/* =========================================
   5. STATS & INFO BANNER (Professional Deep Blue BG)
   ========================================= */
.stats-banner-section {
  /* Modern, sleek deep blue gradient */
  /* background: linear-gradient(135deg, #022036 0%, var(--primary) 100%); */
  background: linear-gradient(135deg, #d2eeff 0%, #ffffff 100%);
  color: #000000;
  border-top: 4px solid var(--secondary);
  border-bottom: 4px solid var(--secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: center;
}

/* Invert colors for dark background */
.stat-info-box .stat-title {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #000000;
  font-weight: 800;
}

.stat-info-box .stat-title span {
  color: var(--secondary);
}

.stat-info-box p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Reverse button colors for contrast */
.stat-buttons .btn-primary {
  background-color: #70cbff;
  color: var(--primary);
}

.stat-buttons .btn-primary:hover {
  background-color: var(--secondary);
  color: var(--text-dark);
}

.stat-numbers-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

/* =========================================
   6. RECENT POSTS SLIDER
   ========================================= */
.recent-posts-section {
  background-color: #ffffff;
  overflow: hidden;
}

.posts-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 15px;
}

.posts-header .section-title {
  margin-bottom: 0;
}

.posts-slider-window {
  overflow: hidden;
  margin: 0 -15px;
  padding: 10px 0 20px;
}

.posts-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.post-card-wrapper {
  flex: 0 0 calc(100% / 3);
  padding: 0 15px;
  box-sizing: border-box;
}

.post-card {
  background: var(--gray-light);
  border: 1px solid #eee;
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
  border-radius: 4px;
}

.post-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.post-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.post-card:hover .post-img {
  transform: scale(1.08);
}

.post-content {
  padding: 20px;
}

.post-content h4 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.4;
}

.post-content h4 a {
  color: var(--text-dark);
  transition: color 0.3s;
  text-decoration: none;
}

.post-card:hover .post-content h4 a {
  color: var(--primary);
}

/* =========================================
   RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 1024px) {
  .slider {
    height: 350px;
  }

  .service-card-wrapper {
    flex: 0 0 calc(100% / 3);
  }

  /* --- ABOUT US RESPONSIVE FIX --- */
  .about-image-wrapper {
    display: none;
  }

  /* Hides image on tablet/mobile */
  .about-flex {
    padding: 30px;
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  /* Stacks feature boxes 1 by 1 */

  .split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonials-column {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--primary);
    padding-top: 30px;
  }

  .testimonials-column::before {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stat-buttons {
    justify-content: center;
  }

  .stat-numbers-box {
    flex-direction: row;
    justify-content: space-around;
    padding: 30px 0;
  }

  .post-card-wrapper {
    flex: 0 0 calc(100% / 2);
  }
}

@media (max-width: 767px) {
  .slider {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 25px;
    margin-bottom: 55px;
  }

  .slide-content h1 {
    font-size: 25px;
    margin-bottom: 55px;
  }

  .slide-content .btn-primary {
    padding: 12px 28px;
    font-size: 15px;
  }

  .service-card-wrapper {
    flex: 0 0 calc(100% / 2);
  }

  .about-flex {
    padding: 20px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .stat-numbers-box {
    flex-direction: column;
    gap: 30px;
  }

  .post-card-wrapper {
    flex: 0 0 100%;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
    color: #000;
  }

  .section-title span {
    color: #000000 !important;
  }
}

.section-title span {
  color: #29c3d4;
}

.section-facts {
  background-color: #d2eeff;
  padding: 30px 20px;
  color: #000000;
  margin-top: 35px;
}

.facts-flex-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.facts-text-side {
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
}

.facts-text-side1 {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
}

.facts-icons-side {
  display: flex;
  gap: 40px;
}

.fact-hex-item {
  text-align: center;
  width: 130px;
}

/* Creating the Hexagon Border */
.hex-icon {
  width: 90px;
  height: 100px;
  margin: 0 auto 15px;
  background-color: transparent;
  border: 2px solid #ffffff;
  /* The white border from your image */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  /* This creates the hexagon shape */
  /* clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); */
}

.hex-title {
  color: #07669c;
  /* Matches the bright blue titles in your image */
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.hex-subtitle {
  font-size: 0.9rem;
  color: #000000;
  opacity: 0.9;
}

/* --- RESPONSIVENESS --- */

@media (max-width: 992px) {
  .facts-text-side {
    text-align: center;
    width: 100%;
  }

  .facts-flex-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .facts-icons-side {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .facts-icons-side {
    flex-direction: column;
    /* Stacks icons on mobile phones */
    align-items: center;
  }

  .facts-text-side {
    font-size: 1.3rem;
  }
}

/* =========================================
   7. TESTIMONIALS GRID SECTION
   ========================================= */
/* --- Base Resets --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f4f4f4;
  /* Fallback body bg */
}

/* --- Main Section Wrapper --- */
.testimonials-section {
  background-color: #a7cd3a;
  /* Light green background */
  padding: 80px 20px;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header & Navigation Arrows --- */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.5px;
}

.slider-nav button {
  background: transparent;
  border: 1px solid #333;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-nav button:hover {
  background: #333;
  color: #a7cd3a;
}

@media (max-width: 767px) {
  .service-page-hero {
    height: 250px;
  }

  .service-page-hero .hero-title {
    font-size: 36px;
  }

  .sp-card-wrapper {
    flex: 0 0 100%;
  }

  /* Modify Slider controls to stack gracefully on mobile */
  .sp-slider-controls {
    flex-direction: column;
    gap: 20px;
  }

  .sp-slider-line {
    display: none;
  }

  .sp-form .input-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sp-contact-box {
    padding: 30px 20px;
    gap: 40px;
  }
}

/* Testimonials Slider (Grid Replacement) */
.testimonials-slider-window {
  overflow: hidden;
  margin: 0 -15px;
  padding: 10px 0 20px;
}

.testimonials-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card-wrapper {
  flex: 0 0 33.333%;
  padding: 0 15px;
  box-sizing: border-box;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.t-dot {
  width: 12px;
  height: 12px;
  background-color: #dcdcdc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.t-dot.active {
  background-color: #206c86;
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .testimonial-card-wrapper {
    flex: 0 0 50%;
  }
}

@media (max-width: 767px) {
  .testimonial-card-wrapper {
    flex: 0 0 100%;
  }
}

/* Container Layout */
.services-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

/* Card Styling - No Outer Border */
.sp-clean-card {
  display: block;
  text-decoration: none;
  border: 4px solid #29c3d4;
  /* Thick outer cyan border */
  padding: 8px;
  /* White gap between borders */
  background: #ffffff;
  aspect-ratio: 1 / 1;
  /* Keeps cards perfectly square */
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sp-clean-card:hover {
  transform: translateY(-5px);
}

.card-image-box {
  /* border: 2px solid #29C3D4; */
  /* Inner cyan border */
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Internal Yellow Stroke (Optional, remove if you want it completely plain) */
/* .card-image-box::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #FFD700;
    border-radius: 12px;
    pointer-events: none;
    opacity: 0.8;
} */

/* Content Overlay */
.card-content-overlay {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* The Brooklyn Carpet Cleaning tag */
.card-branding {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  font-size: 15px !important;
  font-weight: 700;
  padding: 4px 15px;
  border-radius: 20px;
  /* Pill shape */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-service-title {
  color: white;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
  text-transform: uppercase;
}

.view-all-wrapper {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 20px;
}

.expand-toggle-btn {
  background: transparent;
  border: none;
  color: #58b2e0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.expand-toggle-btn:hover {
  color: #29c3d4;
}

.btn-icon {
  display: inline-block;
  transition: transform 0.4s ease;
  background: #f0f7fc;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
}

/* State when the grid is open */
.expand-toggle-btn.is-active .btn-icon {
  transform: rotate(180deg);
}

.view-all-text-btn:hover .arrow-icon {
  transform: translateX(5px);
}

.arrow-icon {
  transition: transform 0.2s;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .services-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.well.well2 {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 576px) {
  .services-grid-container {
    grid-template-columns: 1fr;
  }
}

/* Container Background & Spacing */
.well.well2 {
  background: linear-gradient(#2ab0dd, #2ba4cd);
  /* Light gray background from image */
  padding: 20px 0;
  font-family: "Open Sans", Arial, sans-serif;
  padding-left: 20px;
  padding-right: 20px;
}

/* Heading Styling */
.txt-pr {
  color: #ffffff;
  /* Bright Cyan color */
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

/* Paragraph Text Styling */
.well2 p {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  /* Matches the clean block look in the image */
}

/* Arrow Link Styling */
.btn-link.fa-angle-right {
  display: inline-block;
  color: #33ccff;
  font-size: 30px;
  text-decoration: none;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.btn-link.fa-angle-right:hover {
  transform: translateX(5px);
  color: #0099cc;
}

/* Responsive adjustment for the heading */
@media (max-width: 768px) {
  .txt-pr {
    font-size: 25px;
  }
}

.hero-section {
  /* Replace 'your-map-image.png' with your actual image path */
  background: #00334e url("/img/parallax1.jpg") no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
}

/* Big Bold Top Text */
.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Thin "Long Island Carpet" Text */
.hero-subtitle {
  font-size: 72px;
  font-weight: 300;
  /* Thin font weight */
  margin-top: -10px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

/* Small Middle Text */
.hero-details {
  font-size: 14px;
  max-width: 800px;
  margin: 30px auto 20px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Bottom Contact Text */
.hero-contact {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-contact span {
  margin-left: 10px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 40px;
  }

  .hero-details {
    font-size: 12px;
    padding: 0 20px;
  }
}

.services-grid {
  padding: 60px 0;
  text-align: center;
  background: #fff;
}

/* 1. Circular Image Container */
.image-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  border-radius: 50%;
  /* Makes it a circle */
  overflow: hidden;
  /* Clips the zoom effect */
  border: 1px solid #ddd;
}

/* 2. The Zoom Animation */
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item:hover img {
  transform: scale(1.15);
  /* The zoom-in effect */
}

/* 3. Typography (Matching the Design) */
.service-item h3 {
  font-size: 20px;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.service-item p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 10px;
}

/* 4. The Blue "Read More" Button */
.read-more-btn {
  display: inline-block;
  background-color: #33ccff;
  /* Bright Cyan from design */
  color: #fff !important;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #00334e;
  /* Changes to dark blue on hover */
  text-decoration: none;
}

/* =========================================
   PATTERN CTA BANNER SECTION
   ========================================= */
.pattern-cta-section {
  position: relative;
  background-color: #29b9cd;
  /* The solid cyan base color */
  padding: 90px 0;
  font-family: "Inter", Arial, sans-serif;
  z-index: 1;
  /* Establishes a stacking context */
}

/* The pseudo-element holds the pattern. 
  This lets us change the opacity without fading the text!
*/
.pattern-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Go up one level from /css/ to the root, then into /img/ */
  background-image: url("../img/patttern-corporate.png");
  background-repeat: repeat;
  background-position: center;
  opacity: 1.08;
  z-index: -1;
}

.pattern-cta-content {
  max-width: 850px;
  margin: 0;
  text-align: left;
}

.pattern-cta-title {
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
}

.pattern-cta-text {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 400;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
}

/* Black Button Styling */
.btn-black {
  display: inline-block;
  background-color: #58b2e0;
  color: #ffffff;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.btn-black:hover {
  background-color: transparent;
  color: #111111;
}

/* =========================================
   RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 991px) {
  .pattern-cta-section {
    padding: 70px 0;
  }

  .pattern-cta-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-text {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .about-flex {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .pattern-cta-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .pattern-cta-section {
    padding: 50px 0;
  }

  .pattern-cta-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .pattern-cta-text {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .about-text {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 480px) {
  .pattern-cta-section {
    padding: 40px 0;
  }

  .pattern-cta-title {
    font-size: 24px;
  }

  .pattern-cta-text {
    font-size: 15px;
  }

  .btn-black {
    padding: 12px 30px;
    font-size: 15px;
  }
}

/* Marquee Section */
.marquee-section {
  border-top: 1px solid rgb(80 61 61 / 10%);
  background-color: rgb(255, 255, 255);
  /* padding: 10px 0; */
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-viewport {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 35px;
  color: #2b86b7;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #f0f8ff;
  border: 1px solid #bdd6e6;
  border-radius: 50px;
  margin: 10px 25px;
}

.marquee-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Container & Base Styles */
.why-choose-us {
  font-family: Arial, sans-serif;
  /* Update to match your site's font */
  padding: 60px 20px;
  background-color: #ffffff;
}

.why-choose-us .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Section */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}

.section-title .subtitle {
  font-size: 14px;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.6;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
}

/* Grid Layout for Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Creates two equal columns */
  gap: 30px;
  /* Space between the cards */
}

/* Individual Feature Card */
/* 1. Base Card (Added a transition for a smooth fade effect) */
.feature-card {
  display: flex;
  align-items: flex-start;
  padding: 40px 30px;
  border: 1px solid #f2f2f2;
  background-color: #ffffff;
  transition: all 0.3s ease;
  /* This makes the color change smooth */
}

/* 2. Card Background on Hover */
.feature-card:hover {
  background-color: #7ab800;
  cursor: pointer;
  /* Changes the mouse to a pointing hand */
}

/* 3. Change Heading and Paragraph Text to White on Hover */
.feature-card:hover .feature-content h3,
.feature-card:hover .feature-content p {
  color: #ffffff;
}

/* 4. Change Icon Color to White on Hover */
.feature-card:hover .icon-wrapper {
  color: #ffffff;
}

/* Optional: Add transitions to the text and icons so they fade smoothly too */
.feature-content h3,
.feature-content p,
.icon-wrapper {
  transition: color 0.3s ease;
}

/* Icon Styles */
.icon-wrapper {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  margin-right: 25px;
  color: #7ab800;
  /* The green brand color */
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
}

/* Text Content within Card */
.feature-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-top: 0;
  margin-bottom: 12px;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    /* Stacks cards in 1 column on mobile */
    gap: 20px;
  }

  .feature-card {
    padding: 30px 20px;
    /* Slightly less padding on mobile */
  }

  .section-title h2 {
    font-size: 22px;
  }
}

/* --- Custom Testimonials Section CSS --- */

.testimonials-section {
  padding: 80px 0;
  background-color: #84b30d;
  /* Light background to make cards pop */
  font-family: "Open Sans", Arial, sans-serif;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonials-section .theme_title {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-section .theme_title h2 {
  font-size: 36px;
  color: #333;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

/* Green underline for the title */
.testimonials-section .theme_title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: #7fb401;
  /* Theme Green */
}

/* Layout for the items (Flexbox Grid) */
.testimonials-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Slide Item */
.slide-item {
  flex: 0 1 370px;
  /* Responsive width for 3 columns */
  display: flex;
}

.slide-item .inner-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
}

.slide-item .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  border-color: #7fb401;
}

/* Content Area */
.slide-item .content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slide-item .text-bg {
  /* Note: Your HTML has an inline style height:350px. 
       I recommend overriding it for better responsiveness: */
  height: auto !important;
  min-height: 180px;
  margin-bottom: 25px;
  position: relative;
}

.slide-item .quote-icon {
  font-size: 32px;
  color: #7fb401;
  margin-bottom: 15px;
  opacity: 0.3;
}

.slide-item .text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
}

/* Author Info Section */
.slide-item .info {
  display: flex;
  align-items: center;
  margin-top: auto;
  /* Pushes info to the bottom */
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.slide-item .author-thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid #7fb401;
  flex-shrink: 0;
}

.slide-item .author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-item .author {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 2px;
  display: block;
}

.slide-item .author-title {
  font-size: 14px;
  color: #888;
  display: block;
}

/* Clearfix helper */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .slide-item {
    flex: 0 1 calc(50% - 15px);
    /* 2 columns */
  }
}

@media (max-width: 767px) {
  .testimonials-section .theme_title h2 {
    font-size: 28px;
  }

  .slide-item {
    flex: 0 1 100%;
    /* 1 column */
  }
}

/* --- CTA Banner Section --- */
.cta-banner {
  background-color: #81ba00;
  /* Bright green background to match the image */
  padding: 40px 20px;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
  gap: 20px;
}

/* --- CTA Text Content --- */
.cta-content h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.cta-content p {
  color: #ffffff;
  font-size: 16px;
  font-style: italic;
  margin: 0;
}

/* --- Outline Button --- */
.btn-outline {
  display: inline-block;
  padding: 12px 35px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #81ba00;
  /* Text turns green on hover */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 24px;
  }
}

/* Container for the 3 boxes */
.special-card-boxes {
  padding: 40px 0;
}

/* The Blue Bordered Card */
.service-card {
  border: 4px solid #2ab0dd;
  /* Bright Blue Border */
  background-color: #1a1a1a;
  /* Dark background */
  margin-bottom: 30px;
  overflow: hidden;
  /* Keeps image corners sharp inside border */
}

/* Force side-by-side layout */
.card-inner {
  display: flex;
  height: 180px;
  /* Adjust height as needed */
}

/* LEFT SIDE: The Image Container */
.card-visuals {
  flex: 0 0 45%;
  /* Image takes 45% of the box width */
  border-right: 2px solid #2ab0dd;
  /* Blue line divider */
}

/* THE FIX: Make image fill the space */
.card-visuals img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  /* This prevents stretching while filling the box */
  display: block;
}

/* RIGHT SIDE: The Text Content */
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
}

.card-content h3 {
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
}

.card-content h3 span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #2ab0dd;
}

.card-content p {
  color: #ccc;
  font-size: 11px;
  font-style: italic;
  margin: 5px 0 10px;
}

/* Button Styling */
.btn-quote {
  background-color: #2ab0dd;
  color: #fff !important;
  padding: 5px 12px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

/* Mobile: Stack them */
@media (max-width: 768px) {
  .card-inner {
    flex-direction: column;
    height: auto;
  }

  .card-visuals {
    border-right: none;
    border-bottom: 2px solid #2ab0dd;
    height: 150px;
  }
}

.care-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* The card is now an <a> tag */
.care-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  text-align: center;
  text-decoration: none;
  /* Removes underline from text */
  display: block;
  transition: all 0.3s ease;
}

.care-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.card-img-wrapper {
  overflow: hidden;
  height: 250px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Image zooms when the CARD is hovered */
.care-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.card-body {
  padding: 30px 20px;
}

.card-body h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 12px;
}

.card-body p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Styled as a span since it's inside an <a> */
.btn-care-primary {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0066cc;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

/* Button reacts when the CARD is hovered */
.care-card:hover .btn-care-primary {
  background-color: #004d99;
}

:root {
  --accent-blue: #58b4e9;
  --text-dark: #333;
  --text-light: #888;
  --bg-gray: #f9f9f9;
}

.testimonial-section {
  padding: 60px 20px;
  font-family: "Arial", sans-serif;
  text-align: center;
  background-color: #fff;
}

.section-title {
  font-size: 28px;
  margin-bottom: 50px;
  color: var(--text-dark);
  letter-spacing: 1px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border: 1px solid #eee;
  border-top: 10px solid var(--accent-blue);
  border-radius: 4px;
  padding: 40px 25px 30px;
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Floating Quote Icon */
.quote-icon {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon::after {
  content: "”";
  font-family: serif;
  font-size: 60px;
  color: var(--accent-blue);
  line-height: 1;
  margin-top: 25px;
  /* Adjusting visual center of the glyph */
}

.quote-text {
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 25px;
}

.client-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: var(--text-dark);
}

.client-location {
  font-size: 13px;
  color: #000000;
  margin-top: 5px;
  text-transform: uppercase;
}

/* Responsiveness */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
  }
}

/* =========================================
   COUPON SECTION
   ========================================= */

.latest-project-area {
  padding: 70px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay on top of background image */
.latest-project-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.latest-project-area .container {
  position: relative;
  z-index: 1;
}

/* --- Section Header Row --- */
.latest-project-area .row:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.latest-project-area .sec-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.latest-project-area .sec-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #40b3f1;
}

/* --- "More Coupons" Button --- */
.latest-project-area .thm-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.latest-project-area .thm-btn.yellow-bg {
  background-color: #f5a623;
  color: #ffffff;
  border: 2px solid #f5a623;
}

.latest-project-area .thm-btn.yellow-bg:hover {
  background-color: transparent;
  color: #f5a623;
}

/* --- Coupon Cards Grid --- */
.latest-project-area .row:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 -15px;
}

.latest-project-area .col-md-3 {
  padding: 0 15px;
  margin-bottom: 30px;
}

/* --- Individual Coupon Card --- */
.single-latest-project {
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.single-latest-project:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.single-latest-project .img-holder {
  width: 100%;
  overflow: visible;
  display: block;
  line-height: 0;
}

.single-latest-project .img-holder img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.single-latest-project:hover .img-holder img {
  transform: scale(1.03);
}

/* --- Anchor Wrapper --- */
.latest-project-area a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 991px) {
  .latest-project-area {
    padding: 50px 0;
  }

  .latest-project-area .sec-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .latest-project-area .row:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .latest-project-area .pull-right {
    float: none;
  }

  .latest-project-area .sec-title h2 {
    font-size: 22px;
  }
}

.coupons-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .latest-project-area {
    padding: 40px 0;
  }

  .single-latest-project {
    margin-bottom: 20px;
  }
}
.latest-project-area .row:last-child .col-md-3 {
  width: 25%;
}

@media (max-width: 991px) {
  .latest-project-area .row:last-child .col-md-3 {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .latest-project-area .row:last-child .col-md-3 {
    width: 100%;
  }
}


/* =============================================================
   REFERENCE SITE LAYOUT STYLES  (hs- prefix = home-site)
   ============================================================= */

/* ---- Shared Container ---- */
.hs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.hs-accent {
  color: #1f425d;
}

/* ============================================================
   1. SERVICES SECTION
   ============================================================ */
.hs-services-section {
  padding: 30px 0 50px;
  background: #fff;
}

.hs-services-header {
  text-align: center;
  margin-bottom: 30px;
}

.hs-services-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.hs-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hs-service-card {
  width: calc(16.666% - 9px);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.hs-card-image {
  overflow: hidden;
  flex: 1;
}

.hs-post-image {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.hs-service-card:hover .hs-post-image {
  transform: scale(1.04);
}

.hs-card-action {
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.hs-read-more {
  color: #1f425d;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hs-read-more:hover {
  color: #2b86b7;
}

/* ============================================================
   2. WHY CHOOSE US
   ============================================================ */
.hs-why-section {
  padding: 40px 0;
  background: #fff;
}

.hs-why-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 3px solid #1f425d;
  padding-bottom: 12px;
  margin-bottom: 30px;
}

.hs-why-grid {
  display: flex;
  gap: 20px;
}

.hs-icon-box {
  flex: 1;
  background: #E8F5FF;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 28px 22px;
  min-height: 120px;
}

.hs-icon-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f425d;
  margin: 0 0 10px 0;
}

.hs-icon-subtitle {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

/* ============================================================
   3. CTA SECTION
   ============================================================ */
.hs-cta-section {
  background-color: #1f425d;
  padding: 22px 0;
}

.hs-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hs-cta-text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.hs-cta-btn {
  display: inline-block;
  background-color: #2AB0DD;
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.hs-cta-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

/* ============================================================
   4. OFFERS SECTION
   ============================================================ */
.hs-offers-section {
  background-color: #ffffff;
  padding: 40px 0 30px;
}

.hs-offers-header {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.hs-offers-title {
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  padding-left: 10px;
  text-align: center;
}

.hs-offers-more {
  display: inline-block;
  background-color: #84b30d;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.hs-offers-more:hover {
  background-color: #6a9209;
  color: #fff;
}

.hs-offers-grid {
  display: flex;
  flex-wrap: wrap;
}

.hs-offer-col {
  width: 50%;
  padding: 5px;
  box-sizing: border-box;
}

.hs-offer-link {
  display: block;
  text-decoration: none;
}

.hs-offer-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.hs-offer-link:hover .hs-offer-img {
  opacity: 0.88;
}

.hs-offer-caption {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 8px 0 0;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ============================================================
   5. ABOUT + CONTACT SECTION
   ============================================================ */
.hs-about-section {
  padding: 60px 0;
  background: #fff;
}

.hs-about-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.hs-about-col {
  flex: 1;
}

.hs-about-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f425d;
  border-bottom: 3px solid #1f425d;
  padding-bottom: 8px;
  margin: 0 0 20px;
}

.hs-about-col p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 15px;
}

.hs-contact-link {
  color: #1f425d;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.hs-contact-link:hover {
  color: #2b86b7;
}

.hs-contact-col {
  flex: 1;
}

.hs-contact-widget {
  background: #f8f9fc;
  border: 1px solid #e0e6ef;
  padding: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hs-widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f425d;
  margin: 0 0 6px;
}

.hs-widget-subtitle {
  color: #666;
  font-size: 14px;
  margin: 0 0 18px;
}

.hs-form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
}

.hs-form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hs-form-group input,
.hs-form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  font-family: inherit;
  background: #fff;
}

.hs-form-group input:focus,
.hs-form-group textarea:focus {
  outline: none;
  border-color: #1f425d;
}

.hs-form-group textarea {
  min-height: 108px;
  resize: vertical;
}

.hs-form-submit-row {
  margin-top: 15px;
  text-align: right;
}

.hs-submit-btn {
  background-color: #1f425d;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
  font-family: inherit;
  transition: background 0.3s ease;
}

.hs-submit-btn:hover {
  background-color: #16364a;
}

.hs-alert {
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 14px;
}

.hs-alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.hs-alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.hs-alert ul {
  margin: 6px 0 0 20px;
  padding: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hs-service-card {
    width: calc(25% - 8px);
  }
}

@media (max-width: 768px) {
  .hs-services-title {
    font-size: 28px;
  }

  .hs-service-card {
    width: calc(50% - 6px);
  }

  .hs-post-image {
    height: 150px;
  }

  .hs-why-grid {
    flex-direction: column;
  }

  .hs-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .hs-offer-col {
    width: 100%;
  }

  .hs-offers-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hs-about-grid {
    flex-direction: column;
  }

  .hs-form-row {
    flex-direction: column;
  }

  .hs-form-submit-row {
    text-align: center;
  }

  .hs-submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hs-service-card {
    width: 100%;
  }

  .hs-services-title {
    font-size: 24px;
  }
}
