/* ===== VARIABLES ===== */
:root {
  /* Colors */
  --clr-primary: #1E4DB7;
  --clr-primary-dark: #113f9e;
  --clr-dark: #101010;
  --clr-body: #303748;
  --clr-white: #ffffff;
  --clr-light: #e8eaee;
  --clr-overlay-dark: rgba(9, 18, 34, 0.62);
  --clr-overlay-blue: rgba(30, 77, 183, 0.62);
  --clr-side-label: #1E4DB71A;

  /* Fonts */
  --ff-heading: "Manrope", sans-serif;
  --ff-body: "Inter", sans-serif;
  --ff-kicker: "Gabarito", sans-serif;

  /* Font sizes */
  --fs-body: 16px;
  --fs-body-lg: 18px;
  --fs-kicker: 16px;
  --fs-btn: 18px;
  --fs-heading: 36px;
  --fs-card-title: 35px;
  --fs-hero-title: 64px;
  --fs-hero-subtitle: 56px;
  --fs-hero-bar: 18px;
  --fs-side-label: 60px;
  --fs-process-index: 18px;

  /* Spacing */
  --section-py: 100px;
}

/* ===== BASE ===== */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--clr-body);
  background: var(--clr-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  color: var(--clr-dark);
}

.bg-primary{
  background-color: var(--clr-primary) !important;
}
.text-primary{
  color: var(--clr-primary) !important;
}

/* ===== SECTION KICKER (span before headings) ===== */
.section-kicker {
  font-family: var(--ff-kicker);
  font-size: var(--fs-kicker);
  font-weight: 500;
  color: var(--clr-primary);
  letter-spacing: 0.04em;
}

/* ===== SECTION HEADING ===== */
.section-heading {
  font-size: var(--fs-heading);
  font-weight: 800;
  color: var(--clr-dark);
}

/* ===== SECTION SPACING ===== */
.section-padding {
  padding-top: var(--section-py);
  padding-bottom: 0;
}

/* ===== COMMON BUTTONS ===== */
.btn-action-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  border: 1.5px solid var(--clr-primary);
  border-radius: 12px;
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 14px 28px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-action-primary:hover,
.btn-action-primary:focus {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
  border-color: var(--clr-primary-dark);
}

.btn-action-outline {
  background: var(--clr-white);
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
  border-radius: 12px;
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 14px 28px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-action-outline:hover,
.btn-action-outline:focus {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn-action-white {
  background: var(--clr-white);
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-white);
  border-radius: 12px;
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 14px 28px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-action-white:hover,
.btn-action-white:focus {
  background: #f0f4ff;
  color: var(--clr-primary);
}

.btn-action-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  border: 1.5px solid var(--clr-white);
  border-radius: 12px;
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 14px 28px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.btn-action-outline-white:hover,
.btn-action-outline-white:focus {
  background: rgba(22, 31, 49, 0.76);
  color: var(--clr-white);
  border-color: var(--clr-white);
}

.btn-action-sm {
  padding: 8px 22px;
  font-size: var(--fs-body);
  border-radius: 11px;
}

/* ===== HERO ===== */
.hero-emergency-bar {
  background: var(--clr-primary);
  font-size: var(--fs-hero-bar);
  min-height: 42px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.hero-emergency-bar img{
  height: 50px;
  width: 50px;
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  min-height: 42px;
  animation: marqueeScroll 20s linear infinite;
  -webkit-animation: marqueeScroll 20s linear infinite;
}

.hero-marquee-item {
  padding: 0 48px;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
}

.hero-shell {
  border-radius: 30px;
  background: url("../img/banner.png") center / cover no-repeat;
}

/* .hero-video-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
} */

.about-hero-shell {
  background:  url("../img/about/banner.webp") center / cover no-repeat;
}

.contact-hero-shell {
  background: url("../img/contact-banner.webp") center / cover no-repeat;
}

.pricing-hero-shell {
  background: url("../img/banner-inner.webp") center / cover no-repeat;
}

.service-detail-hero-shell {
  background: url("../img/service-detail/banner.webp") center / cover no-repeat;
}

.safety-hero-shell {
  background: url("../img/safety/banner.webp") center / cover no-repeat;
}

/* ===== SAFETY PAGE ===== */
.safety-intro-text {
  color: var(--clr-body);
  font-size: var(--fs-body);
  line-height: 1.7;
}

.safety-images {
  align-items: center;
}

.safety-oval {
  overflow: hidden;
  flex-shrink: 0;
}

.safety-oval--tall {
  width: 280px;
  height: 420px;
  border-radius: 140px;
}

.safety-oval--short {
  width: 280px;
  height: 480px;
  border-radius: 140px;
  margin-top: 60px;
}

.safety-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== WRITE A LETTER SECTION ===== */
.safety-letter {
  background: var(--clr-white);
}

.safety-letter-lead {
  max-width: 780px;
}

.safety-letter-link {
  color: var(--clr-primary);
  text-decoration: underline;
  font-weight: 600;
}

.safety-letter-link:hover {
  color: var(--clr-primary-dark);
  text-decoration: none;
}

.safety-contact-card {
  background: #F8F8F8;
  border: 1.5px solid #e2e6ee;
  border-radius: 14px;
  padding: 28px 32px;
}

.safety-contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 12px;
}

.safety-contact-card-text {
  font-size: 0.9375rem;
  color: var(--clr-body);
  line-height: 1.6;
}

.safety-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.safety-bullet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.safety-bullet-icon {
  font-size: 8px;
  color: var(--clr-primary);
  flex-shrink: 0;
}

/* ===== SUB-SERVICE PAGE HEADER ===== */
.sub-service-header {
  background: var(--clr-white);
}


.sub-service-call-btn {
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: var(--fs-btn);
  font-weight: 600;
  border-radius: 12px;
  min-width: 240px;
  min-height: 56px;
  border: none;
}

.sub-service-call-btn:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
}

.sub-service-back {
  color: var(--clr-dark);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-body-lg);
}

.sub-service-back i {
  font-size: 18px;
}

.sub-service-back:hover {
  color: var(--clr-primary);
}

#sub-service-page .section-padding {
  padding-top: 50px;
}

#sub-service-page .faq-section.section-padding {
  padding-top: 60px;
}

/* ===== INNER PAGE BANNER ===== */
.inner-banner-content {
  padding: 70px 0px;
}

.inner-banner-title {
  font-size: var(--fs-hero-subtitle);
  font-family: var(--ff-heading);
}


.inner-banner-content .breadcrumb-item a:hover {
  opacity: 0.8;
}

.hero-shell .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-body);
  padding: 24px 6px;
}

.hero-shell .nav-link:hover,
.hero-shell .nav-link.active {
  color: var(--clr-white);
}

.hero-nav-pill {
  background: var(--clr-white);
  color: var(--clr-primary) !important;
  border-radius: 31px;
  padding: 3px 12px !important;
  font-weight: 600 !important;
}

.hero-call-btn {
  background: var(--clr-white);
  color: var(--clr-primary);
  font-size: var(--fs-btn);
  font-weight: 600;
  border-radius: 12px;
  min-width: 240px;
  min-height: 56px;
}

.hero-call-btn:hover {
  background: #f7f9ff;
  color: var(--clr-primary);
}

.hero-copy {
  padding: 110px 0;
}

.hero-title {
  font-size: var(--fs-hero-title);
  font-weight: 800;
}

.hero-subtitle {
  font-size: var(--fs-hero-subtitle);
  font-weight: 400;
}

.hero-description {
  font-size: var(--fs-body-lg);
}

/* ===== ABOUT ===== */
.about-section {
  position: relative;
}

.about-side-label {
  position: absolute;
  left: 7%;
  bottom: 9%;
  font-size: var(--fs-side-label);
  font-weight: 700;
  color: var(--clr-side-label);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 2;
}

.about-description {
  font-size: var(--fs-body-lg);
  color: var(--clr-body);
}

.about-copy {
  padding-left: calc((100vw - 1320px) / 2);
}

.about-media img {
  margin-top: -120px;
}

/* ===== PROCESS ===== */
.process-step {
  position: relative;
}

.process-index {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: var(--fs-process-index);
  font-weight: 600;
  box-shadow: 0 100px 80px 0 rgba(0, 0, 0, 0.07),    0 64.815px 46.852px 0 rgba(0, 0, 0, 0.05),    0 38.519px 25.481px 0 rgba(0, 0, 0, 0.04),    0 20px 13px 0 rgba(0, 0, 0, 0.04);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.process-step-text {
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--clr-dark);
  max-width: 156px;
}

.process-connector {
  position: absolute;
  top: 25px;
  right: -50px;
  width: 90px;
  opacity: 0.5;
  pointer-events: none;
}

.process-step-col:nth-child(odd) .process-connector {
  transform: rotate(180deg);
}


.cta-bg .content-area{
  background: url('../img/cta-bg.png') center / cover no-repeat;
  padding: 150px 0;
}
/* ===== VIDEO ===== */
.video-poster {
  border-radius: 20px;
}

.video-play-btn {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--clr-primary);
  box-shadow: 0 20px 35px rgba(13, 33, 79, 0.3);
}

.video-play-btn:hover {
  background: var(--clr-primary-dark);
}

.video-cta-btn {
  bottom: 0px;
  height: 56px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 6px solid var(--clr-white);
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: var(--fs-btn);
  font-weight: 600;
}

.video-cta-btn:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
}

/* ===== SERVICES ===== */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  color: var(--clr-white);
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 34, 0.24) 0%, var(--clr-overlay-dark) 100%);
  z-index: -1;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--clr-overlay-blue);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card-a {
  background: url("../img/3.webp") center/cover no-repeat;
  min-height: 314px;
}

.service-card-b {
  background: url("../img/4.webp") center/cover no-repeat;
  min-height: 314px;
}

.service-card-c {
  background: url("../img/5.webp") center/cover no-repeat;
  min-height: 232px;
}

.service-card-label {
  color: var(--clr-white);
  font-size: 30px;
  font-weight: 500;
}

.service-card-label:hover {
  color: var(--clr-white);
}

/* ===== WHY CHOOSE US ===== */
.choose-card {
  border-radius: 16px;
}

.choose-card-feature {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.choose-card-benefit {
  background: var(--clr-light);
}

.choose-card-title {
  font-size: var(--fs-card-title);
  font-weight: 500;
}

.choose-truck {
  width: 60%;
  max-width: 466px;
  align-self: flex-end;
  margin-bottom: -30px;
  pointer-events: none;
  overflow: hidden;
}

/* ===== TESTIMONIALS ===== */
.testimonials-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonials-carousel .owl-item {
  opacity: 0.38;
  transition: opacity 0.4s;
}

.testimonials-carousel .owl-item.active.center,
.testimonials-carousel .owl-item.active {
  opacity: 1;
}

.testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonials-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: var(--clr-light);
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: background 0.3s;
}

.testimonials-carousel .owl-dot.active span {
  background: var(--clr-primary);
}

.testimonial-card {
  background: var(--clr-white);
  border-radius: 16px;
  border: 1px solid var(--clr-light);
}

.testimonial-avatar {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: 20px;
  font-weight: 600;
}

.testimonial-quote-wrap {
  position: relative;
}

/* ===== ABOUT PAGE TESTIMONIALS ===== */
.about-testi-wrap {
  overflow: hidden;
}

.about-testi-img {
  height: 100%;
  min-height: 400px;
}

.about-testi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-testi-content {
  background: var(--clr-dark);
  min-height: 400px;
}

.about-testi-quote {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(1800%) hue-rotate(217deg) brightness(92%) contrast(92%);
}

.about-testi-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.about-testi-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  transition: background 0.3s;
}

.about-testi-carousel .owl-dot.active span {
  background: var(--clr-primary);
}

/* ===== SERVING AREAS & FLEET ===== */
.serving-img-wrap {
  height: 451px;
  overflow: hidden;
}

.serving-img-wrap--left {
  border-radius: 0 50px 50px 0;
}

.serving-img-wrap--right {
  border-radius: 50px 0 0 50px;
}

.serving-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serving-content {
  max-width: 708px;
}

.serving-subtitle {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--clr-body);
}

.serving-check-text {
  font-size: var(--fs-body-lg);
  color: var(--clr-body);
  white-space: nowrap;
}

/* ===== PROTECT BANNER ===== */
.protect-banner {
  background: url('../img/10.webp') center / cover no-repeat;
  margin-top: 100px;
  padding: 100px 0px;
}

.protect-check-text {
  font-size: var(--fs-body-lg);
  font-weight: 500;
  color: var(--clr-white);
  white-space: nowrap;
}

/* ===== PRICING ===== */
.pricing-subtitle {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--clr-body);
}

.pricing-card {
  background: var(--clr-white) url('../img/card.webp') center / cover no-repeat;
  border: 1px solid var(--clr-light);
  border-radius: 12px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  border-color: var(--clr-primary);
  box-shadow: 0 7px 29px rgba(100, 100, 111, 0.2);
}

.pricing-card-title {
  font-family: var(--ff-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--clr-dark);
}

.pricing-card-desc {
  font-size: 14px;
  line-height: 20px;
  color: var(--clr-body);
}

.pricing-item {
  font-weight: 500;
  font-size: var(--fs-body);
  color: var(--clr-dark);
  letter-spacing: -0.16px;
}

.pricing-price {
  font-weight: 600;
  font-size: var(--fs-body-lg);
  color: var(--clr-primary);
}

.pricing-divider {
  margin: 0;
  border-color: var(--clr-light);
  opacity: 1;
}

/* ===== MISSION & VISION ===== */

.mv-card {
  background: url('../img/about/about-bg.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 40px;
}

.mv-section .item{
  background: url('../img/about/about-bottom-bg.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 40px;
}

.mv-card-title {
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 12px;
}

.mv-card-text {
  font-size: var(--fs-body);
  color: var(--clr-body);
  line-height: 1.7;
  margin-bottom: 0;
}

.mv-value-card {
  background: var(--clr-white);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.mv-value-title {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-dark);
  margin-bottom: 10px;
}

.mv-value-text {
  font-size: var(--fs-body);
  color: var(--clr-body);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== FAQs ===== */
.faq-section .accordion-item {
  border: 1px solid var(--clr-light);
  border-radius: 10px !important;
  overflow: hidden;
}

.faq-section .accordion-button {
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--clr-dark);
  background: var(--clr-white);
  padding: 22px 25px;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--clr-dark);
  background: var(--clr-white);
  box-shadow: none;
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%231e4db7' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a.5.5 0 0 1 .5.5v5.5H14a.5.5 0 0 1 0 1H8.5V13.5a.5.5 0 0 1-1 0V8H2a.5.5 0 0 1 0-1h5.5V1.5A.5.5 0 0 1 8 1z'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-size: 20px;
  transition: transform 0.3s;
}

.faq-section .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.faq-section .accordion-body {
  padding: 0 25px 22px;
  color: var(--clr-body);
}

/* ===== BLOGS ===== */
.blog-card {
  border: 1px solid var(--clr-light);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #F9F9F9;
  padding: 15px;
}

.blog-card-img {
  width: 100%;
  border-radius: 12px;
}

.blog-date {
  font-size: 14px;
  color: var(--clr-primary);
  font-weight: 500;
}

.blog-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1.5;
}

/* ===== CONTACT ===== */
.contact-desc {
  color: var(--clr-body);
  line-height: 1.7;
}

.contact-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--clr-primary);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.contact-label {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--clr-dark);
}

.contact-value {
  font-size: 14px;
  color: var(--clr-body);
}

.contact-form-wrap {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 40px 35px;
}

.contact-form-title {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--clr-dark);
}

.contact-form-desc {
  font-size: 14px;
  color: var(--clr-body);
  line-height: 1.6;
}

.contact-input {
  border: 1px solid var(--clr-light);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: var(--fs-body);
  background: rgba(0, 0, 0, 0.02);
}

.contact-input:focus {
  border-color: var(--clr-primary);
}

textarea.contact-input {
  height: 120px;
}

/* ===== Blog Pagination ===== */
.blog-pagination .page-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--clr-light);
  color: var(--clr-body);
  font-size: var(--fs-body);
  font-weight: 500;
  background: var(--clr-white);
  padding: 0;
  transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

.blog-pagination .page-item.active .page-link {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

.blog-pagination .page-link:focus {
  box-shadow: none;
}

.blog-post .content-area{
  margin-top: 35px;
}
.blog-post .content-area h2, .blog-post .content-area h3,.blog-post .content-area h4{
  font-weight: 700;
}

.blog-post .content-area a{
  color: var(--clr-primary-dark);
  text-decoration: none;
}
/* ===== SERVICES LISTING ===== */
.svc-card {
  border: 1px solid var(--clr-light);
  background: #F8F8F8;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.svc-card:hover {
  border-color: var(--clr-light);
  box-shadow: 0 10px 40px rgba(30, 77, 183, 0.15);
}

.svc-card:hover .svc-card-title,
.svc-card:hover .svc-card-desc {
  color: inherit;
}

/* =========================================
   GALLERY PAGE
   ========================================= */

/* Tab Switcher */
.gallery-tab-switcher {
  background: #f0f0f2;
  border: none;
  border-radius: 50px;
  padding: 5px;
  display: inline-flex;
  gap: 4px;
  margin: 0 auto;
  width: fit-content;
}

.gallery-tab-btn {
  border: none;
  background: transparent;
  border-radius: 50px;
  padding: 12px 48px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-body);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-tab-btn + .gallery-tab-btn {
  border-left: none;
}

.gallery-tab-btn.active {
  background: #fff;
  color: var(--clr-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gallery-tab-btn:hover:not(.active) {
  color: var(--clr-primary);
}

/* Gallery Grid Images */
.gallery-item {
  margin-bottom: 8px;
}

.gallery-item img {
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.3s ease;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
}

.gallery-section #gallery-videos iframe{
  width: 100%;
  height: 300px;
  border-radius: 15px;
  margin-bottom: 24px;
}

/* Pagination */
.gallery-page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #d0d8ee;
  background: #fff;
  color: var(--clr-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.gallery-page-btn.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

.gallery-page-btn:hover:not(.active):not(:disabled) {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.gallery-page-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.gallery-page-arrow {
  font-size: 1.25rem;
  line-height: 1;
}

.svc-card:hover .svc-card-icon {
  filter: none;
}

.svc-card:hover .btn-action-outline {
  background: var(--clr-primary);
  color: var(--clr-white) !important;
  border-color: var(--clr-primary);
}

.svc-card-icon {
  box-shadow: 0 15.333px 46px 0 rgba(104, 117, 161, 0.20);
  border-radius: 7.667px 7.667px 30.667px 7.667px;
  transition: filter 0.3s;
  -webkit-border-radius: 7.667px 7.667px 30.667px 7.667px;
  -moz-border-radius: 7.667px 7.667px 30.667px 7.667px;
  -ms-border-radius: 7.667px 7.667px 30.667px 7.667px;
  -o-border-radius: 7.667px 7.667px 30.667px 7.667px;
}


.svc-card-title {
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--clr-dark);
  transition: color 0.3s;
}

.svc-card-desc {
  color: var(--clr-body);
  transition: color 0.3s;
}

.sub-service{
  margin-top: 100px;
  padding-bottom: 100px;
}

.sub-service .svc-card{
  background: #fff;
}
 

/* ===== CTA BANNER ===== */
.cta-banner {
  background: url('../img/about-cta.webp') center / cover no-repeat;
  padding: 70px 0;
  margin-top: 100px;
}

.cta-banner .section-kicker {
  color: rgba(255, 255, 255, 0.8);
}

.cta-heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-heading);
  font-weight: 700;
  line-height: 1.35;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-dark);
  padding-top: 80px;
}

.footer-logo {
  max-width: 180px;
}

.footer-desc {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social-label {
  font-family: var(--ff-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--clr-white);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--clr-primary-dark);
}

.footer-social-link i {
  font-size: 16px;
  color: var(--clr-white);
}

.footer-heading {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--clr-white);
}

.footer-info-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-info-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.footer-info-value {
  font-size: var(--fs-body);
  color: var(--clr-white);
  text-decoration: none;
  transition: color 0.3s;
}

a.footer-info-value:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-map iframe {
  width: 100%;
  border-radius: 12px;
}

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit img {
  width: 150px;
}

/* Dropdown hover on desktop */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .dropdown-menu .dropend:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    margin-left: 0;
  }
  .dropdown-menu .dropend > .dropdown-toggle::after {
    margin-left: auto;
  }
  .dropdown-menu .dropend > .dropdown-menu {
    top: 0;
    left: 100%;
  }
}

/* Prevent dropdown from being clipped on inner / sub-service pages */
.sub-service-header,
.sub-service-header .container,
.sub-service-header .navbar {
  overflow: visible !important;
}

.hero-shell,
.hero-shell .container,
.hero-shell .navbar {
  overflow: visible !important;
}

/* ===== Styled Services Dropdown ===== */
.dropdown-menu-services {
  max-height: none !important;
  overflow: visible !important;
  min-width: 260px;
  padding: 12px 0;
  border: none;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  animation: dropdownFadeIn 0.25s ease;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Dropdown items */
.dropdown-menu-services .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-dark);
  border-radius: 8px;
  margin: 2px 8px;
  width: auto;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu-services .dropdown-item:hover,
.dropdown-menu-services .dropdown-item:focus {
  background: rgba(30, 77, 183, 0.08);
  color: var(--clr-primary);
}

/* Category headings (dropend toggles) */
.dropdown-menu-services > li.dropend > .dropdown-item {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-menu-services > li.dropend > .dropdown-item::after {
  font-size: 10px;
  vertical-align: middle;
  margin-left: auto;
}

/* Nested sub-menus */
.dropdown-menu-services .dropdown-menu {
  max-height: none !important;
  overflow: visible !important;
  min-width: 220px;
  padding: 10px 0;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  animation: dropdownFadeIn 0.2s ease;
}

.dropdown-menu-services .dropdown-menu .dropdown-item {
  font-weight: 400;
}

/* Active state for dropdown items */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

/* Divider between categories */
.dropdown-menu-services > li.dropend + li.dropend {
  border-top: 1px solid #e8eaee;
  margin-top: 6px;
  padding-top: 6px;
}
