* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* full‑height layout so footer can be pushed to bottom when content is short */
html {
  height: 100%;
}
body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  color: #313131;
  --section-padding: 100px 0;
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

header {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

header.scrolled {
  transform: translateY(-40px); /* Adjust based on top-navbar height */
}

/* ===== TOP NAVBAR ===== */
.top-navbar {
  background-color: #0163be;
  color: white;
  font-size: 14px;
  height: 40px; /* Fixed height for consistent transform */
  display: flex;
  align-items: center;
}

.top-navbar .container {
  justify-content: space-between;
  align-items: center;
}

.top-nav-left,
.top-nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-nav-items {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}

.divider {
  opacity: 0.4;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
  opacity: 0.8;
}

/* ===== MAIN NAVBAR ===== */
.main-navbar {
  background-color: white;
}

.main-navbar .container {
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-text span {
  color: #0163be;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  text-decoration: none;
}

.footer-brand img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.footer-brand .brand-text {
  color: #ffffff;
  font-size: 20px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #313131;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
  color: #0163be;
}

.nav-menu .dropdown a i {
  font-size: 10px;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  display: flex !important;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border-radius: 8px;
  border-top: 3px solid #0163be;
}

/* Multi-column for large dropdowns */
.dropdown-menu:has(li:nth-child(10)) {
  min-width: 450px;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  padding: 15px;
  gap: 5px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 12px 20px !important;
  font-size: 14px !important;
  color: #313131 !important;
  display: block !important;
  transition: 0.3s !important;
  font-weight: 500 !important;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #f8f9fa;
  color: #0163be !important;
  padding-left: 25px !important;
}


/* ===== BUTTONS ===== */
.btn-quote {
  color: #0163be;
  border: 1.5px solid #0163be;
  border-radius: 50px;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-quote:hover {
  background-color: #0163be;
  color: white;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f3f9ff; /* Solid background from left */
}

.hero-bg-solid {
  position: absolute;
  top: 0;
  left: 0;
  width: 514px;
  height: 100%;
  background-color: #f3f9ff;
  z-index: 1;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 514px;
  width: 348px;
  height: 100%;
  background: linear-gradient(270deg, rgba(243, 249, 255, 0) 0%, #f3f9ff 100%);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0; /* Base image behind overlays */
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, #e2e2e2 1px, transparent 1px),
    linear-gradient(to bottom, #e2e2e2 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.15;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 558px;
}

.hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 58px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #0163be;
}

.hero-content p {
  font-size: 17px;
  color: #626262;
  line-height: 1.6;
  margin-bottom: 35px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-primary {
  background-color: #0163be;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #0152a1;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid #0163be;
  color: #313131;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: #0163be;
  color: white;
  transform: translateY(-2px);
}

/* ===== HERO BOTTOM BAR ===== */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #0163be;
  opacity: 1;
  z-index: 20;
}

/* ===== HERO DECORATIVE VECTOR ===== */
.hero-vector {
  position: absolute;
  top: 589px;
  left: -328px;
  width: 715px;
  height: 224px;
  opacity: 0.18;
  z-index: 5;
  pointer-events: none;
}

.hero-vector img {
  width: 100%;
  height: 100%;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 60px 0;
  position: relative;
  z-index: 30;
}

.features .container {
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Added flex-wrap */
}

.feature-card {
  background-color: #ffffff;
  border: 0.93px solid #e4e4e4;
  padding: 20px 15px;
  border-radius: 4.66px;
  flex: 1;
  min-width: 250px;
  max-width: 271px;
  height: 140px;
  text-align: center;
  box-shadow: 0px 3.73px 46.51px 0px rgba(186, 186, 186, 0.25); /* #BABABA40 is ~25% alpha */
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-color: #0163be;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 35px;
  height: 35px;
  background-color: #0163be;
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 14px;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.feature-card p {
  font-size: 11px;
  color: #626262;
  line-height: 1.4;
}

.about {
  /* padding: var(--section-padding); */
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.about .container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.about-image-col {
  flex: 1;
  position: relative;
}

.about-main-img {
  position: relative;
  z-index: 5;
  width: 528px;
  height: 495px;
  overflow: visible; /* Changed to visible for pseudo‑element border */
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main-img img {
  /* width: 100%; */
  /* height: 100%; */
  object-fit: contain;
  position: relative;
  /* z-index: 2; */
}


.about-content-col {
  flex: 1.2;
}

.about-content-col .sub-title {
  color: #0163be;
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}

.about-content-col h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-content-col h2 span {
  color: #0163be;
}

.about-content-col p {
  font-size: 16px;
  color: #626262;
  line-height: 1.7;
  margin-bottom: 40px;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  border-top: 1px solid #e4e4e4;
  padding-top: 20px;
}

.stat-item {
  text-align: left;
  flex: 1;
}

.stat-item h4 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.stat-item h4 span {
  color: #0163be;
}

.stat-item p {
  font-size: 12px;
  color: #626262;
  font-weight: 500;
  margin: 0;
}

.btn-outline-rounded {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #0163be;
  color: #0163be;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.btn-outline-rounded:hover {
  background-color: #0163be;
  color: white;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--section-padding);
  background-color: #ffffff;
}

.container-column {
  flex-direction: column;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.services-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.services-header h2 span {
  color: #0163be;
}

.services-header p {
  font-size: 16px;
  color: #626262;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 50px 0px rgba(186, 186, 186, 0.25);
  border-bottom: 6px solid #0163be;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 35px;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0163be;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card h3 span {
  color: #1a1a1a;
}

.service-card p {
  font-size: 13px;
  color: #626262;
  line-height: 1.6;
  margin-bottom: 0;
}

.service-card .view-more {
  color: #0163be;
  text-decoration: underline;
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  margin-left: 5px;
}

.services-footer {
  text-align: center;
}

.services-footer p {
  font-size: 15px;
  color: #626262;
}

.services-footer a {
  color: #0163be;
  font-weight: 700;
  text-decoration: underline;
}

/* Responsiveness for Services */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA BANNER SECTION ===== */
.cta-banner-sec {
  padding: 60px 0;
}

.cta-banner {
  background-color: #0163be;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-content {
  flex: 1;
  max-width: 550px;
  color: white;
  position: relative;
  z-index: 5;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-white {
  background: white;
  color: #0163be;
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cta-image {
  flex: 0.8;
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: flex-end;
}

.cta-image img {
  max-width: 120%;
  margin-right: -40px;
}

/* ===== WHY HIRE SECTION ===== */
.why-hire {
  padding: var(--section-padding);
}

.why-hire .container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.why-hire-content {
  flex: 1;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.section-title span {
  color: #0163be;
}

.section-desc {
  color: #626262;
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 15px;
}

.why-hire-list {
  list-style: none;
  margin-bottom: 40px;
}

.why-hire-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.list-icon {
  width: 24px;
  height: 24px;
  background-color: #0163be;
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 5px;
}

.list-text h3 {
  font-size: 18px;
  font-weight: 800;
  color: #313131;
  margin-bottom: 5px;
}

.list-text p {
  font-size: 14px;
  color: #626262;
  line-height: 1.4;
}

.why-hire-images {
  flex: 1;
  position: relative;
  padding-bottom: 100px;
}

.image-frame-outline {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90%;
  height: 90%;
  border: 1.5px solid #0163be;
  border-radius: 12px;
  z-index: 1;
}

.image-back {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-back img {
  width: 100%;
  display: block;
}

.image-front {
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 60%;
  z-index: 5;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 20px 50px rgba(0,0,0,0.15); */
  /* background: white; */
  padding: 0;
}

.image-front img {
  width: 100%;
  display: block;
}

/* Response for Why Hire */
@media (max-width: 992px) {
  .why-hire .container {
    flex-direction: column;
    gap: 60px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .cta-image {
    margin-top: 40px;
  }

  .cta-image img {
    margin-right: 0;
  }
}

/* ===== SOFTWARE USE SECTION ===== */
.software-use {
  padding: var(--section-padding);
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Background Vectors */
.section-vector {
  position: absolute;
  z-index: 0;
  opacity: 0.05; /* Very faint professional look */
  pointer-events: none;
}

.section-vector.left {
  left: -5%;
}

.section-vector.right {
  right: -5%;
}

.section-vector img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.software-vector {
  top: 10%;
  width: 500px;
  transform: rotate(-15deg);
}

.software-header {
  text-align: center;
  position: relative;
  z-index: 5;
}

.software-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.software-header h2 span {
  color: #0163be;
  position: relative;
}

.software-header h2 span::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='137' height='14' viewBox='0 0 137 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 12C35.5 4.5 98.5 2 135 12' stroke='%230163BE' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.software-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 30px 0;
}

.software-container::before,
.software-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.software-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.software-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-row {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  animation: slideInfinite 25s linear infinite;
}

.software-container:hover .logo-row {
  animation-play-state: paused;
}

.software-logo {
  max-height: 45px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.software-logo:hover {
  opacity: 1;
}

@keyframes slideInfinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.software-logo {
  object-fit: contain;
  filter: grayscale(0);
  transition: 0.3s;
}

.logo-row .software-logo:nth-child(2) {
  max-height: 55px;
}

.software-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Response for Software Use */
@media (max-width: 992px) {
  .logo-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .logo-row.second-row {
    gap: 40px;
  }

  .software-container {
    padding: 40px 20px;
  }
}

/* ===== TRADE SERVICES SECTION ===== */
.trade-services {
  padding: var(--section-padding);
  background-color: #fbfcff; /* Slightly cooler off-white */
  border-top: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.trade-vector-top {
  top: -10%;
  width: 400px;
  opacity: 0.04;
}

.trade-vector-bottom {
  bottom: -5%;
  width: 600px;
  opacity: 0.06;
}

.trade-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 5;
}

.trade-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.trade-header h2 span {
  color: #0163be;
}

.trade-header p {
  font-size: 16px;
  color: #626262;
  line-height: 1.6;
}

.trade-layout-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.trade-sidebar {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trade-item {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0px 4px 20px 0px rgba(186, 186, 186, 0.2);
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}

.trade-item:hover,
.trade-item.active {
  border-color: #0163be10;
  transform: translateX(10px);
}

.trade-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0163be;
}

.trade-item span {
  font-size: 16px;
  font-weight: 600;
  color: #626262;
}

.trade-item.active span {
  color: #1a1a1a;
}

.see-all-btn {
  margin-top: 15px;
  justify-content: center;
  width: 100%;
}

.trade-content-box {
  flex: 1;
  background-color: #f3f9ff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trade-details-text {
  padding: 50px 50px 30px;
}

.trade-details-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.trade-details-text h3 span {
  color: #0163be;
}

.trade-details-text p {
  font-size: 15px;
  color: #626262;
  line-height: 1.7;
  margin-bottom: 20px;
}

.trade-details-text .view-more {
  color: #0163be;
  font-weight: 700;
  text-decoration: underline;
}

.trade-image {
  width: 100%;
  border-top: 4px solid #00aaff;
}

.trade-image img {
  width: 100%;
  display: block;
  height: 350px;
  object-fit: cover;
}

/* Response for Trade Services */
@media (max-width: 992px) {
  .trade-layout-grid {
    flex-direction: column;
  }

  .trade-sidebar {
    flex: 1;
    width: 100%;
  }
}

/* ===== SECONDARY CTA BANNER ===== */
.cta-banner-slim-sec {
  padding: 60px 0;
}

.cta-banner-slim {
  background-color: #0163be;
  border-radius: 12px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-banner-slim::before,
.cta-banner-slim::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-banner-slim::before {
  width: 150px;
  height: 150px;
  top: -50px;
  left: -50px;
}

.cta-banner-slim::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -100px;
}

.cta-slim-content {
  color: white;
  max-width: 600px;
  position: relative;
  z-index: 5;
}

.cta-slim-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-slim-content p {
  font-size: 14px;
  opacity: 0.9;
}

.cta-slim-action {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
}

.cta-arrow-svg {
  position: absolute;
  left: -100px;
  top: -30px;
  width: 80px;
  opacity: 0.8;
}

/* ===== HOW TO GET STARTED ===== */
.get-started {
  padding: var(--section-padding);
}

.get-started-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.get-started-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.get-started-header h2 span {
  color: #0163be;
}

.get-started-header p {
  font-size: 16px;
  color: #626262;
}

.get-started-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 30px;
}

.step-card {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 120px;
  height: 120px;
  border: 2px dashed #0163be;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 35px;
  color: #0163be;
  background: white;
  position: relative;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.step-card p {
  font-size: 14px;
  color: #626262;
  line-height: 1.6;
  padding: 0 10px;
}

.step-connector {
  position: absolute;
  top: 60px;
  font-size: 25px;
  color: #0163be;
  opacity: 0.6;
  z-index: 1;
}

.connector-1 {
  left: 28%;
}

.connector-2 {
  right: 28%;
}

/* Response for Get Started */
@media (max-width: 992px) {
  .get-started-steps {
    flex-direction: column;
    gap: 60px;
  }

  .step-connector {
    display: none;
  }

  .cta-banner-slim {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 40px;
  }

  .cta-arrow-svg {
    display: none;
  }
}

/* ===== QUOTE FORM SECTION ===== */
.quote-form-sec {
  padding: var(--section-padding);
  background-color: #ffffff;
}

.quote-form-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.quote-form-content {
  flex: 1.2;
}

.quote-form-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.quote-form-content h2 span {
  color: #0163be;
}

.quote-form-content p {
  color: #626262;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.6;
}

.quote-main-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: flex;
  gap: 25px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 15px 20px;
  font-size: 14px;
  color: #313131;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0163be;
  outline: none;
  box-shadow: 0 0 10px rgba(1, 99, 190, 0.05);
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.custom-file-upload .file-label {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.upload-icon {
  width: 35px;
  height: 35px;
  background: #eaf4ff;
  color: #0163be;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.custom-file-upload span {
  color: #626262;
  font-size: 14px;
}

.quote-form-images {
  flex: 1;
}

.form-img-composition {
  position: relative;
  padding: 0 40px 40px 0;
}

.form-blue-bg {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 90%;
  height: 90%;
  background-color: #0163be;
  border-radius: 12px;
  z-index: 1;
}

.form-border-shape {
  position: absolute;
  top: 40px;
  left: 60px;
  width: 90%;
  height: 90%;
  border: 1.5px solid #0163be;
  border-radius: 12px 100px 12px 12px;
  z-index: 2;
}

.main-form-img {
  position: relative;
  z-index: 3;
  width: 100%;
  display: block;
}

/* Response for Quote Form */
@media (max-width: 1200px) {
  .quote-form-layout {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .quote-form-layout {
    flex-direction: column;
  }

  .quote-form-images {
    order: -1;
    width: 100%;
    max-width: 500px;
    margin-bottom: 60px;
  }

  .form-row {
    flex-direction: column;
    gap: 25px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-sec {
  padding: var(--section-padding);
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-sec::before {
  content: "";
  position: absolute;
  top: 50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg width='341' height='368' viewBox='0 0 341 368' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 366V155L65 142V56L158 35V110L233 93V155L339 178V366' stroke='%23F0F0F0' stroke-width='2'/%3E%3Cpath d='M2 200H339M2 250H339M2 300H339' stroke='%23F0F0F0' stroke-width='2'/%3E%3Cpath d='M40 200V366M100 200V366M160 200V366M220 200V366M280 200V366' stroke='%23F0F0F0' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 1;
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 5;
}

.faq-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.faq-header h2 span {
  color: #0163be;
}

.faq-header p {
  font-size: 16px;
  color: #626262;
  line-height: 1.6;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 5;
}

.faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: #313131;
  font-size: 18px;
  transition: 0.3s;
}

.faq-question i {
  font-size: 14px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 30px;
  background: transparent;
}

.faq-answer p {
  font-size: 15px;
  color: #626262;
  line-height: 1.7;
  padding-bottom: 30px;
}

/* Active State */
.faq-item.active {
  background-color: #0163be;
  box-shadow: 0 10px 30px rgba(1, 99, 190, 0.2);
}

.faq-item.active .faq-question {
  color: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Large enough for content */
}

.faq-item.active .faq-answer p {
  color: rgba(255, 255, 255, 0.9);
}

.faq-item.active i {
  transform: rotate(180deg);
}

.faq-footer {
  text-align: center;
  position: relative;
  z-index: 5;
}

.faq-footer p {
  font-size: 15px;
  color: #626262;
}

.faq-footer a {
  color: #0163be;
  font-weight: 700;
  text-decoration: underline;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 20px;
  }
}

/* ===== BLOG SECTION ===== */
.blogs-sec {
  padding: var(--section-padding);
  background-color: #ffffff;
}

.blogs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.blogs-title-area {
  max-width: 650px;
}

.blogs-title-area h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.blogs-title-area h2 span {
  color: #0163be;
}

.blogs-title-area p {
  font-size: 15px;
  color: #626262;
  line-height: 1.6;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #0163be;
}

.blog-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-date {
  display: block;
  color: #0163be;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 15px;
}

.blog-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
  color: #0163be;
}

.blog-content p {
  font-size: 14px;
  color: #626262;
  line-height: 1.6;
  margin-bottom: 25px;
}

.learn-more {
  font-weight: 700;
  color: #0163be;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  transition: gap 0.3s ease;
}

.learn-more:hover {
  gap: 12px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #0163be;
  color: #0163be;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #0163be;
  color: #ffffff;
}

/* Responsive Blogs */
@media (max-width: 1200px) {
  .blogs-grid {
    gap: 20px;
  }

  .blog-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .blogs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MAIN FOOTER ===== */
.main-footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  /* minimal top padding to tighten spacing further */
  padding: 20px 0 0;
  font-family: "Poppins", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col h3 {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: #0163be;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #b0b0b0;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: #0163be;
  transform: translateY(-3px);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #b0b0b0;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #0163be;
  padding-left: 5px;
}

.footer-contact .contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact .contact-info-item i {
  color: #0163be;
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact .contact-info-item span {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #111111;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #888888;
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col h3 {
    margin-bottom: 20px;
  }
}
.footer-bottom p a {
    color: white;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  height: 199px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.page-banner:not(.contact-page-banner):not(.get-quote-banner) {
  background-image: url('../images/aboutbanner.svg');
}

.contact-page-banner,
.get-quote-banner {
  background-image: url('../images/contactbanner.svg');
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 25, 49, 0.51);
  z-index: 2;
}

.page-banner-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.page-banner-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumbs a:hover {
  color: #0163be;
}

.breadcrumbs i {
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumbs span {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-banner {
    height: 200px;
  }
  
  .page-banner-content h1 {
    font-size: 36px;
  }
  
  .breadcrumbs {
    font-size: 14px;
    gap: 10px;
  }
}

/* ===== ABOUT PARTNER SECTION ===== */
.about-partner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-partner-vector {
    position: absolute;
    top: -50px;
    right: 0;
    width: 300px;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

.about-partner .flex-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.about-partner-image {
    flex: 1;
}

.about-partner-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: none;
}

.about-partner-content {
    flex: 1;
}

.about-partner-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #001931;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-partner-content h2 span {
    color: #0163be;
}

.about-partner-content p {
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: #0163be;
    font-size: 20px;
}

.feature-item span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 35px;
    border: 2px solid #0163be;
    border-radius: 50px;
    color: #001931;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-pill i {
    font-size: 14px;
}

.btn-pill:hover {
    background-color: #0163be;
    color: white;
}

@media (max-width: 991px) {
    .about-partner .flex-row {
        flex-direction: column;
        gap: 80px;
    }
    
    .about-partner-content {
        text-align: center;
    }
    
    .feature-grid {
        justify-items: center;
        text-align: left;
    }
    
    .image-stack {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-partner {
        padding: 60px 0;
    }
    
    .about-partner-content h2 {
        font-size: 28px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-pill {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* ===== MILESTONES SECTION ===== */
.milestones {
    padding: 100px 0 150px;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.milestones-vector {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 400px;
    opacity: 0.05;
    transform: translateY(-50%);
    pointer-events: none;
}

.milestones-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.milestones-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #001931;
    margin-bottom: 20px;
}

.milestones-header h2 span {
    color: #0163be;
}

.milestones-header p {
    color: #666;
    line-height: 1.6;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}

.milestone-card {
    background: white;
    padding: 60px 25px 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.milestone-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.milestone-icon i {
    color: #0163be;
    font-size: 30px;
}

.milestone-card h3 {
    font-size: 20px;
    color: #001931;
    margin-bottom: 15px;
    font-weight: 700;
}

.milestone-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Staggered Layout */
.card-up {
    transform: translateY(-20px);
}

.card-down {
    transform: translateY(40px);
}

@media (max-width: 1200px) {
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 30px;
    }
    
    .card-up, .card-down {
        transform: none;
    }
    
    .milestones {
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .milestones-header h2 {
        font-size: 28px;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

/* ===== WHY CHOOSE US (ABOUT) SECTION ===== */
.why-choose-about {
    padding: 100px 0;
    background-color: white;
}

.why-choose-about .flex-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-choose-content {
    flex: 1.2;
}

.why-choose-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #001931;
    margin-bottom: 25px;
}

.why-choose-content h2 span {
    color: #0163be;
}

.why-choose-content p {
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.why-choose-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.why-choose-list li i {
    color: #0163be;
    font-size: 20px;
    margin-top: 5px;
}

.list-item-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.list-item-content p {
    font-size: 14px;
    margin-bottom: 0;
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid #0163be;
    border-radius: 50px;
    color: #001931;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-pill:hover {
    background-color: #0163be;
    color: white;
}

.why-choose-image {
    flex: 1;
}

.why-choose-image img {
    width: 100%;
    display: block;
}

/* ===== CALL ACTION BANNER ===== */
.call-action-banner {
    background-color: #0163be;
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.call-action-banner h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.phone-number i {
    font-size: 40px;
}

.phone-number span {
    font-size: 48px;
    font-weight: 800;
}

.btn-white-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background-color: white;
    border-radius: 50px;
    color: #0163be;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    width: 267px;
    align-items: center;
    align-self: center;
}

.btn-white-pill:hover {
    background-color: #001931;
    color: white;
}

/* Decorative Circles */
.banner-circle {
    position: absolute;
    background-color: white;
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
}

.banner-circle-1 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

.banner-circle-2 {
    width: 250px;
    height: 250px;
    top: -100px;
    right: -50px;
}

@media (max-width: 991px) {
    .why-choose-about .flex-row {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-list li {
        text-align: left;
    }
    
    .phone-number span {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .why-choose-content h2 {
        font-size: 28px;
    }
    
    .phone-number {
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-number span {
        font-size: 28px;
    }
    
    .call-action-banner h2 {
        font-size: 24px;
    }
}

/* ===== TESTIMONIALS (ABOUT) SECTION ===== */
.testimonials-about {
    padding: 100px 0;
    background-color: white;
}

.testimonials-about .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-about h2 {
    font-size: 38px;
    font-weight: 800;
    color: #001931;
}

.testimonials-about h2 span {
    color: #0163be;
}

.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 60px;
}

.testimonials-viewport {
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 13.333px); /* 3 cards on desktop minus gap */
    background: white;
    border: 2px solid #0163be;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(1, 99, 190, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border: 2px solid #0163be;
    border-radius: 50%;
    overflow: hidden;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    text-align: left;
}

.client-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #001931;
    margin-bottom: 0;
}

.client-info span {
    font-size: 13px;
    color: #888;
}

.quote-icon {
    color: #0163be;
    font-size: 14px;
    opacity: 0.8;
}

.quote-right {
    text-align: right;
    margin-top: -10px;
}

.testimonial-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
    font-style: italic;
}

.client-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.client-rating i {
    color: #0163be;
    font-size: 14px;
}

/* Slider Controls */
.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
    z-index: 10;
}

.arrow-left {
    background-color: #e0e0e0;
    color: #888;
    position: absolute;
    left: 0;
}

.arrow-right {
    background-color: #0163be;
    color: white;
    position: absolute;
    right: 0;
    box-shadow: 0 5px 15px rgba(1, 99, 190, 0.3);
}

.arrow-right:hover {
    background-color: #001931;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    width: 25px;
    border-radius: 10px;
    background-color: #0163be;
}

@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px); /* 2 cards on tablet */
    }
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        padding: 0;
    }

    .testimonial-card {
        flex: 0 0 100%; /* 1 card on mobile */
    }
    
    .slider-arrow {
        display: none; /* Hide arrows on mobile */
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #0163be;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(1, 99, 190, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.back-to-top:hover {
  background-color: #014a90;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(1, 99, 190, 0.6);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top.show:hover {
  transform: translateY(-5px);
}

/* ========================================= */
/*               MEDIA QUERIES               */
/* ========================================= */

/* Mobile Menu Toggle Base */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  /* Prevent header from hiding top-navbar height on mobile, since top-navbar is hidden */
  header.scrolled {
    transform: translateY(0);
  }

  /* Hide Top Navbar on smaller screens */
  .top-navbar {
    display: none;
  }

  /* Main Navbar Mobile */
  .mobile-menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #0163be;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 80vh; /* Added max height for scrollability */
    overflow-y: auto; /* Enable vertical scroll */
    background-color: white;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: none !important; /* Hidden by default */
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #eee;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  /* Mobile Dropdown Logic */
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    padding: 0 0 0 20px !important;
    border: none !important;
    display: none !important; /* Hidden by default on mobile */
    min-width: unset !important;
    grid-template-columns: 1fr !important; /* Force single column */
  }

  .dropdown.active > .dropdown-menu {
    display: block !important;
  }

  .dropdown.active > a i {
    transform: rotate(180deg);
  }

  .main-navbar .container {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-brand img {
    height: 35px; /* Slightly smaller logo on mobile */
  }

  .brand-text {
    font-size: 16px; /* Smaller text on mobile */
  }

  .quote-area {
    display: none !important; /* Hide quote button on mobile nav */
  }

  /* Hero Section */
  .hero {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    order: 2; /* Place text after image */
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 46px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-bg-gradient, .hero-vector, .hero-bg-solid {
    display: none; /* Simplify hero background for mobile */
  }

  .hero-bg {
    position: relative;
    width: 100vw; /* Stretch full width */
    margin-left: calc(-50vw + 50%); /* Force full viewport width ignoring container padding */
    height: 350px;
    order: 1; /* Place image before text */
    margin-top: -60px; /* Pull up to negate container padding */
    margin-bottom: -40px; /* Pull text up into the blended area */
    border-radius: 0;
    overflow: hidden;
    z-index: 5;
  }

  .hero-bg img {
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    object-position: center top;
  }

  .hero .container {
    order: 1;
    display: flex;
    flex-direction: column;
  }

  /* About Us Section */
  .about .container {
    flex-direction: column;
    gap: 40px;
  }

  .about-image-col, .about-content-col {
    width: 100%;
  }

  .about-main-img {
    width: 100%;
    height: auto;
  }

  .about-main-img img {
    max-width: 100%;
    height: auto;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    flex: 1 1 40%;
  }

  /* Why Hire Section */
  .why-hire .container {
    flex-direction: column;
  }

  .why-hire-images {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 0;
  }

  .image-front {
    position: relative;
    bottom: 0;
    left: 0;
    width: 80%;
    margin: -40px auto 0;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .hero-content h1 {
    font-size: 28px;
    line-height: 38px;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Features */
  .features .container {
    flex-wrap: wrap;
  }

  .feature-card {
    min-width: calc(50% - 20px);
    max-width: none;
    flex: 1 1 calc(50% - 20px);
  }

  /* Trade Services Sidebar */
  .trade-layout-grid {
    flex-direction: column;
  }
  
  .trade-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #e4e4e4;
    padding-right: 0;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  
  .trade-item {
    margin-bottom: 10px;
  }

  /* Get Started Steps */
  .get-started-steps {
    flex-direction: column;
    gap: 30px;
  }
  
  .step-card {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .step-connector {
    display: none; /* Hide arrows on mobile */
  }

  /* Quote Form */
  .quote-form-layout {
    flex-direction: column;
  }

  .quote-form-content, .quote-form-images {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  /* Software Slider */
  .software-container {
    padding: 20px 0;
  }
  
  .logo-row {
    gap: 30px;
    animation: slideInfinite 15s linear infinite; /* Faster on smaller screens to appear fluid */
    display: inline-flex;
    flex-wrap: nowrap;
  }
  
  .software-logo {
    max-height: 35px;
    min-width: fit-content;
  }
  
  .logo-row .software-logo:nth-child(2) {
    max-height: 45px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* CTA Sections */
  .cta-banner, .cta-banner-slim {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .cta-content, .cta-slim-content {
    max-width: 100%;
  }
  
  .cta-image img, .cta-slim-action {
    display: none; /* Hide illustrative graphics on mobile to save space */
  }
}

@media (max-width: 480px) {
  .feature-card {
    min-width: 100%;
    flex: 1 1 100%;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 32px;
  }

  /* Software Slider adjustments for very small screens */
  .logo-row {
    gap: 20px;
    animation: slideInfinite 10s linear infinite;
    display: inline-flex;
    flex-wrap: nowrap;
  }
  
  .software-logo {
    max-height: 25px;
    min-width: fit-content;
  }
  
  .logo-row .software-logo:nth-child(2) {
    max-height: 30px;
  }
}

/* ===== CONTACT MAIN SECTION ===== */
.contact-main-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.contact-main-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-main-section .section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #001931;
    margin-bottom: 20px;
}

.contact-main-section .section-header h2 span {
    color: #0163be;
}

.contact-main-section .section-header p {
    color: #888;
    font-size: 16px;
    line-height: 1.6;
}

.contact-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* Left Side: Form */
.contact-side-form {
    flex: 1;
    padding: 50px;
}

.contact-side-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #001931;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #0163be;
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 99, 190, 0.05);
}

.btn-blue-pill {
    background-color: #0163be;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    text-decoration: none;
}

.btn-blue-pill:hover {
    background-color: #001931;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 99, 190, 0.3);
}

/* Right Side: Info */
.contact-side-info {
    flex: 1;
    background-color: #f0f8ff; /* Light sky blue */
    display: flex;
    flex-direction: column;
}

.map-container {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.info-details-panel {
    padding: 40px 50px;
    position: relative;
    flex-grow: 1;
    overflow: hidden;
}

.info-logo-watermark {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 250px;
    opacity: 0.05;
    pointer-events: none;
    filter: grayscale(1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    color: #333;
    font-size: 18px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.info-item span {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    text-transform: unset;
}

.info-item span a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.info-item span a:hover {
    color: #0163be;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .contact-side-form {
        padding: 40px 30px;
    }
    
    .info-details-panel {
        padding: 40px 30px;
    }
    
    .contact-main-section .section-header h2 {
        font-size: 32px;
    }
}

/* ===== GET QUOTE FORM SECTION STYLES ===== */
.get-quote-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.quote-header {
    text-align: center;
    margin-bottom: 50px;
}

.quote-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.quote-header h2 span {
    color: #0163be;
}

.quote-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #626262;
    line-height: 1.6;
    font-size: 15px;
}

.form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 60px 80px;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #313131;
    margin-bottom: 10px;
}

.form-header p {
    color: #626262;
    font-size: 14px;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #313131;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #313131;
    transition: 0.3s;
}

.form-group input::placeholder {
    color: #b1b1b1;
    font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0163be;
    box-shadow: 0 0 0 3px rgba(1, 99, 190, 0.05);
}

/* File Upload Styling */
.file-upload-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    overflow: hidden;
}

.file-label {
    background-color: #f5f5f5;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #313131;
    cursor: pointer;
    border-right: 1px solid #e4e4e4;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-name {
    padding: 0 15px;
    font-size: 13px;
    color: #b1b1b1;
    font-style: italic;
}

.hidden-input {
    display: none;
}

/* Select Styling */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #ffffff;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #313131;
    pointer-events: none;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.btn-submit {
    background-color: #0163be;
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-submit:hover {
    background-color: #0152a1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 99, 190, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .form-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-card {
        padding: 30px 20px;
    }
    .quote-header h2 {
        font-size: 28px;
    }
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */
.privacy-banner {
    background: url('../images/bannerprivacy.svg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    position: relative;
}

.privacy-banner .page-banner-content {
    text-align: center;
}

.privacy-banner .breadcrumbs {
    justify-content: center;
}

.privacy-content-sec {
    padding: 80px 0;
    background-color: #ffffff;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-content h3:first-child {
    margin-top: 0;
}

.privacy-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #313131;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content p {
    font-size: 16px;
    color: #626262;
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-content a {
    color: #0163be;
    font-weight: 600;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-content h3 {
        font-size: 20px;
    }
    .privacy-content h4 {
        font-size: 18px;
    }
    .privacy-content p {
        font-size: 15px;
    }
}

/* ===== TERMS AND CONDITIONS PAGE STYLES ===== */
.terms-banner {
    background: url('../images/termsbanner.svg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    position: relative;
}

.terms-banner .page-banner-content {
    text-align: center;
}

.terms-banner .breadcrumbs {
    justify-content: center;
}

.terms-content-sec {
    padding: 80px 0;
    background-color: #ffffff;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #0163be;
    padding-bottom: 10px;
    display: inline-block;
}

.terms-content h3:first-child {
    margin-top: 0;
}

.terms-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #313131;
    margin-top: 30px;
    margin-bottom: 15px;
}

.terms-content p {
    font-size: 16px;
    color: #626262;
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-content ul {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}

.terms-content ul li {
    font-size: 16px;
    color: #626262;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.terms-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0163be;
    font-size: 14px;
}

.terms-content a {
    color: #0163be;
    font-weight: 600;
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-content h3 {
        font-size: 20px;
    }
    .terms-content h4 {
        font-size: 18px;
    }
    .terms-content p, .terms-content ul li {
        font-size: 15px;
    }
}





/* ============================================================
   CUSTOM THEME ADDITIONS — Swift Takeoffs WordPress Theme
   ============================================================ */
   TRADE SINGLE PAGE — single-trade.php
   ============================================================ */

.trade-single-sec {
	padding: 70px 0 100px;
}

/* Two-column layout: main content + sidebar */
.trade-single-container {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* ── Main Content Column (left, ~65%) ── */
.trade-main-col {
	flex: 1;
	min-width: 0; /* prevent flex overflow */
}

.trade-main-image {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 35px;
	max-height: 420px;
}

.trade-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Intro text block */
.trade-intro-text {
	margin-bottom: 40px;
	color: #555;
	line-height: 1.8;
	font-size: 15px;
}

.trade-intro-text p {
	margin-bottom: 16px;
}

/* Section headings inside trade content */
.trade-section-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 20px;
}

/* Cost Factors list */
.trade-cost-factors {
	margin-bottom: 40px;
}

.trade-factors-list {
	list-style: disc;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.trade-factors-list li {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
}

.trade-factors-list li strong {
	color: #1a1a2e;
	font-weight: 700;
}

.trade-factors-list li strong a,
.trade-factors-list li a {
	color: #0163be;
	text-decoration: none;
	font-weight: 600;
}

/* Takeoff Services text block */
.trade-takeoff-text {
	margin-bottom: 40px;
	color: #555;
	line-height: 1.8;
	font-size: 15px;
}

.trade-takeoff-text p {
	margin-bottom: 14px;
}

/* Why Choose section */
.trade-why-choose {
	margin-bottom: 40px;
}

.trade-section-title span {
	color: #0163be;
}

.trade-why-layout {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.trade-why-list {
	flex: 1;
	list-style: disc;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.trade-why-list li {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
}

.trade-why-list li strong {
	color: #1a1a2e;
	font-weight: 700;
}

.trade-why-image {
	flex: 0 0 260px;
	border-radius: 10px;
	overflow: hidden;
	border: 3px solid #e8f0fb;
}

.trade-why-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Bottom CTA link */
.trade-bottom-cta {
	margin-top: 20px;
}

/* ── Sidebar Column (right, fixed width) ── */
.trade-sidebar-col {
	flex: 0 0 320px;
	width: 320px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: sticky;
	top: 100px; /* sticks below the sticky header */
}

/* Generic sidebar widget box */
.trade-sidebar-widget {
	background: #ffffff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 25px;
}

/* Search widget */
.trade-search-form {
	display: flex;
	align-items: center;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.trade-search-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 12px 16px;
	font-size: 14px;
	color: #313131;
	font-family: 'Poppins', sans-serif;
	background: transparent;
}

.trade-search-input::placeholder {
	color: #aaa;
}

.trade-search-btn {
	background: #0163be;
	color: #fff;
	border: none;
	padding: 12px 16px;
	cursor: pointer;
	font-size: 15px;
	transition: background 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trade-search-btn:hover {
	background: #0152a0;
}

/* Popular Trades widget */
.sidebar-widget-title {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid #e8f0fb;
}

.popular-trades-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.popular-trades-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #313131;
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 6px;
	transition: all 0.25s ease;
	font-weight: 500;
}

.popular-trades-list li a i {
	color: #0163be;
	font-size: 16px;
	flex-shrink: 0;
}

.popular-trades-list li a:hover {
	background: #eaf3ff;
	color: #0163be;
}

.popular-trades-list li.current-trade a {
	background: #0163be;
	color: #fff;
	font-weight: 600;
}

.popular-trades-list li.current-trade a i {
	color: #fff;
}

/* CTA Widget */
.trade-cta-widget {
	background: linear-gradient(135deg, #001931 0%, #0163be 100%);
	color: #fff;
	text-align: center;
	border: none;
}

.cta-widget-heading {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 16px;
	color: #fff;
}

.cta-widget-heading span {
	color: #5bb3ff;
	font-weight: 700;
}

.cta-widget-time {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 24px;
	font-style: italic;
	line-height: 1.3;
}

.cta-widget-btn {
	width: 100%;
	justify-content: center;
	border-radius: 50px;
	padding: 14px 20px;
	font-size: 15px;
}


/* ============================================================
   TRADE ARCHIVE PAGE — archive-trade.php
   ============================================================ */

.trade-archive-sec {
	padding: var(--section-padding);
}

.trade-archive-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
	color: #626262;
	font-size: 16px;
	line-height: 1.7;
}

.trade-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
}

.trade-archive-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.trade-archive-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	border-color: #0163be;
}

.trade-card-img {
	height: 220px;
	overflow: hidden;
}

.trade-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.trade-archive-card:hover .trade-card-img img {
	transform: scale(1.05);
}

.trade-card-body {
	padding: 25px;
}

.trade-card-body h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.4;
}

.trade-card-body h3 a {
	color: #1a1a2e;
	text-decoration: none;
	transition: color 0.3s;
}

.trade-archive-card:hover .trade-card-body h3 a {
	color: #0163be;
}

.trade-card-body p {
	font-size: 14px;
	color: #626262;
	line-height: 1.6;
	margin-bottom: 20px;
}


/* ============================================================
   TRADE RESPONSIVE — Mobile & Tablet
   ============================================================ */

@media (max-width: 1024px) {
	.trade-sidebar-col {
		flex: 0 0 270px;
		width: 270px;
		position: static; /* disable sticky on tablet */
	}

	.trade-single-container {
		gap: 30px;
	}
}

@media (max-width: 768px) {
	/* Stack main content above sidebar on mobile */
	.trade-single-container {
		flex-direction: column;
	}

	.trade-sidebar-col {
		flex: none;
		width: 100%;
	}

	.trade-main-image {
		max-height: 280px;
	}

	.trade-why-layout {
		flex-direction: column;
	}

	.trade-why-image {
		flex: none;
		width: 100%;
	}

	/* Archive grid: 2 columns on tablet */
	.trade-archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 580px) {
	/* Archive grid: 1 column on mobile */
	.trade-archive-grid {
		grid-template-columns: 1fr;
	}

	.trade-section-title {
		font-size: 20px;
	}
}



/* ============================================================
   MODERN TRADES DROPDOWN NAVIGATION
   ============================================================ */

/* Parent item that has a dropdown */
.nav-has-dropdown {
	position: static !important;
}

/* The trigger link */
.nav-dropdown-trigger {
	cursor: pointer;
	white-space: nowrap;
}

/* Chevron rotation on hover */
.nav-chevron {
	font-size: 10px !important;
	transition: transform 0.3s ease !important;
	display: inline-block;
}

.nav-has-dropdown:hover .nav-chevron {
	transform: rotate(180deg);
}

/* ── Dropdown Panel ── */
.nav-dropdown-panel {
	position: absolute;
	top: calc(100% + 1px);
	left: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	border-top: 3px solid #0163be;
	border-radius: 0 0 12px 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 999;
	pointer-events: none;
}

/* Show on hover */
.nav-has-dropdown:hover .nav-dropdown-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: all;
}

/* Inner two-column layout */
.nav-dropdown-inner {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	padding: 35px 20px;
	gap: 0;
}

/* ── Left Column: Trade Links ── */
.nav-dropdown-trades {
	flex: 1;
	padding-right: 40px;
	border-right: 1px solid #eef0f5;
}

.nav-dropdown-heading {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #0163be;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eef0f5;
}

.nav-dropdown-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px;
}

.nav-dropdown-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	text-decoration: none;
	color: #313131 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	transition: all 0.2s ease !important;
	line-height: 1.4;
}

.nav-dropdown-list li a:hover,
.nav-dropdown-list li a.nav-trade-active {
	background: #eaf3ff;
	color: #0163be !important;
}

.nav-trade-icon {
	color: #0163be;
	font-size: 14px;
	flex-shrink: 0;
	line-height: 1;
}

.nav-trade-icon i {
	font-size: 14px !important;
	gap: 0 !important;
}

.nav-trade-label {
	line-height: 1.3;
}

/* ── Right Column: CTA ── */
.nav-dropdown-cta {
	flex: 0 0 280px;
	padding-left: 40px;
}

.nav-dropdown-cta-inner {
	background: linear-gradient(145deg, #001931 0%, #0163be 100%);
	border-radius: 12px;
	padding: 28px 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.nav-cta-icon {
	font-size: 28px;
	color: rgba(255, 255, 255, 0.5);
}

.nav-dropdown-cta-inner h4 {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin: 0;
}

.nav-dropdown-cta-inner p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.6;
	margin: 0;
}

.nav-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #0163be !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	padding: 10px 18px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.25s ease;
	margin-top: 4px;
	width: 100%;
	justify-content: center;
}

.nav-cta-btn:hover {
	background: #0163be;
	color: #fff !important;
	box-shadow: 0 4px 15px rgba(1, 99, 190, 0.4);
}

.nav-all-trades-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.75) !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	text-decoration: none;
	transition: color 0.2s ease;
	width: 100%;
	justify-content: center;
}

.nav-all-trades-link:hover {
	color: #fff !important;
}

.nav-all-trades-link i {
	font-size: 10px;
}

/* Make main-navbar position relative so dropdown is positioned against it */
.main-navbar {
	position: relative;
}


/* ============================================================
   MOBILE DROPDOWN — Trades accordion on mobile
   ============================================================ */

@media (max-width: 992px) {

	/* Hide the panel-based dropdown on mobile */
	.nav-dropdown-panel {
		position: static;
		box-shadow: none;
		border-top: none;
		border-radius: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: all;
		display: none; /* toggled by JS */
		background: #f7faff;
		border-left: 3px solid #0163be;
		margin: 8px 0 8px 10px;
		padding: 0;
	}

	/* Show when parent has mobile-open class */
	.nav-has-dropdown.mobile-open .nav-dropdown-panel {
		display: block;
	}

	/* Rotate chevron when open on mobile */
	.nav-has-dropdown.mobile-open .nav-chevron {
		transform: rotate(180deg);
	}

	/* Stack columns vertically on mobile */
	.nav-dropdown-inner {
		flex-direction: column;
		padding: 15px;
		gap: 15px;
	}

	.nav-dropdown-trades {
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid #e0e8f5;
		padding-bottom: 15px;
	}

	/* Single column list on mobile */
	.nav-dropdown-list {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.nav-dropdown-list li a {
		padding: 8px 10px;
		font-size: 13px !important;
	}

	/* Hide CTA panel on mobile to save space */
	.nav-dropdown-cta {
		display: none;
	}
}



/* ============================================================
   SERVICES ARCHIVE — archive-service.php
   ============================================================ */

.services-archive-sec {
	padding: 70px 0 50px;
}

/* Heading block */
.services-archive-heading {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.services-archive-heading h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 16px;
	line-height: 1.2;
}

.services-archive-heading h2 span {
	color: #0163be;
}

.services-archive-heading p {
	font-size: 15px;
	color: #626262;
	line-height: 1.7;
}

/* 4-column card grid */
.services-archive-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	width: 100%;
	margin-bottom: 40px;
}

/* Individual card */
.service-archive-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-bottom: 3px solid #0163be;
	border-radius: 8px;
	padding: 30px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: all 0.3s ease;
	position: relative;
}

.service-archive-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(1, 99, 190, 0.10);
	border-bottom-color: #0163be;
}

/* Icon */
.service-card-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-card-icon i {
	font-size: 32px;
	color: #1a1a2e;
}

/* Title */
.service-card-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.35;
	margin: 0;
}

.service-card-title a {
	color: #0163be;
	text-decoration: none;
	transition: color 0.3s;
}

.service-card-title a:hover {
	color: #0152a0;
}

/* Description */
.service-card-desc {
	font-size: 13px;
	color: #626262;
	line-height: 1.65;
	flex: 1;
	margin: 0;
}

/* Request Quote link */
.service-card-link {
	font-size: 13px;
	font-weight: 700;
	color: #1a1a2e;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.3s;
	display: inline-block;
}

.service-card-link:hover {
	color: #0163be;
}

/* Bottom note */
.services-archive-note {
	text-align: center;
	font-size: 15px;
	color: #626262;
	margin-top: 10px;
	padding-bottom: 20px;
}

.services-archive-note a {
	color: #0163be;
	font-weight: 700;
	text-decoration: underline;
}

/* ── Services Bottom CTA Banner ── */
.services-cta-banner {
	background: linear-gradient(135deg, #0163be 0%, #001931 100%);
	padding: 60px 0;
}

.services-cta-banner .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.services-cta-content h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 10px;
	max-width: 500px;
}

.services-cta-content p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	max-width: 460px;
}

.services-cta-btn {
	white-space: nowrap;
	flex-shrink: 0;
	background: #fff !important;
	color: #0163be !important;
	border: none !important;
	padding: 15px 32px !important;
	font-size: 15px !important;
	border-radius: 50px !important;
}

.services-cta-btn:hover {
	background: #f0f7ff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* ============================================================
   SERVICES RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
	.services-archive-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.services-archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-archive-heading h2 {
		font-size: 28px;
	}

	.services-cta-banner .container {
		flex-direction: column;
		text-align: center;
	}

	.services-cta-content h2 {
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.services-archive-grid {
		grid-template-columns: 1fr;
	}
}



/* ============================================================
   HEADER UPDATE — Logo + Services Dropdown + Mobile
   ============================================================ */

/* ── Logo: image + brand text ── */
.navbar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.navbar-brand img {
	height: 45px;
	width: auto;
	object-fit: contain;
}

.brand-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.brand-text span {
	color: #0163be;
}

/* Hide old .logo div */
.logo { display: none; }

/* ── Services standard dropdown ── */
.dropdown { position: relative; }

.dropdown-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	background-color: #fff;
	min-width: 260px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.10);
	padding: 10px 0;
	list-style: none;
	display: flex !important;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
	z-index: 1000;
	border-radius: 0 0 10px 10px;
	border-top: 3px solid #0163be;
	pointer-events: none;
}

.dropdown-menu:has(li:nth-child(7)) {
	min-width: 480px;
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	padding: 15px;
	gap: 4px;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: all;
}

/* Gap bridge so mouse can reach dropdown */
.dropdown::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 12px;
	background: transparent;
}

.dropdown-menu li { width: 100%; }

.dropdown-menu li a {
	padding: 10px 20px !important;
	font-size: 14px !important;
	color: #313131 !important;
	display: flex !important;
	align-items: center;
	transition: all 0.2s ease !important;
	font-weight: 500 !important;
	white-space: nowrap;
	text-decoration: none;
	border-radius: 6px;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
	background-color: #eaf3ff;
	color: #0163be !important;
	padding-left: 25px !important;
}

.dropdown > a i {
	font-size: 10px;
	transition: transform 0.3s ease;
}

.dropdown:hover > a i {
	transform: rotate(180deg);
}

/* ── Single post title (Trade & Service pages) ── */
.single-post-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1.3;
	margin-bottom: 20px;
}

.single-post-title span {
	color: #0163be;
}

/* ── Mobile header responsive ── */
@media (max-width: 992px) {

	.navbar-brand img { height: 35px; }
	.brand-text { font-size: 15px; }

	.dropdown-menu {
		position: static !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		box-shadow: none !important;
		border: none !important;
		border-left: 3px solid #0163be !important;
		border-radius: 0 !important;
		padding: 5px 0 5px 10px !important;
		margin: 8px 0 8px 10px !important;
		min-width: unset !important;
		display: none !important;
		pointer-events: all !important;
		grid-template-columns: 1fr !important;
		background: #f7faff !important;
	}

	.dropdown.active > .dropdown-menu {
		display: flex !important;
	}

	.dropdown.active > a i { transform: rotate(180deg); }

	.dropdown-menu li a {
		padding: 8px 12px !important;
		white-space: normal !important;
		font-size: 13px !important;
	}

	.dropdown-menu li a:hover { padding-left: 16px !important; }
}


/* ============================================================
   SPACING & LAYOUT FIX — Trade/Service Single Pages
   Matches reference design (compact banner, tighter layout)
   ============================================================ */

/* ── Page Banner — smaller, tighter ── */
.page-banner {
	height: 160px !important;
}

.page-banner-content h1 {
	font-size: 32px !important;
	margin-bottom: 6px !important;
	font-weight: 700 !important;
}

.breadcrumbs {
	font-size: 13px !important;
	gap: 10px !important;
}

/* ── Section padding — less vertical space ── */
.trade-single-sec {
	padding: 40px 0 60px !important;
}

/* ── Two-column gap — tighter ── */
.trade-single-container {
	gap: 24px !important;
}

/* ── Main image — shorter ── */
.trade-main-image {
	max-height: 320px !important;
	margin-bottom: 24px !important;
	border-radius: 8px !important;
}

/* ── Intro text — tighter ── */
.trade-intro-text {
	margin-bottom: 24px !important;
	font-size: 14px !important;
	line-height: 1.7 !important;
}

/* ── Section titles — smaller ── */
.trade-section-title {
	font-size: 20px !important;
	margin-bottom: 14px !important;
}

/* ── Cost factors & why list — tighter gaps ── */
.trade-cost-factors {
	margin-bottom: 24px !important;
}

.trade-factors-list {
	gap: 10px !important;
}

.trade-factors-list li {
	font-size: 13px !important;
	line-height: 1.65 !important;
}

.trade-why-choose {
	margin-bottom: 24px !important;
}

.trade-why-list {
	gap: 10px !important;
}

.trade-why-list li {
	font-size: 13px !important;
	line-height: 1.65 !important;
}

.trade-takeoff-text {
	margin-bottom: 24px !important;
	font-size: 14px !important;
}

/* ── Sidebar — narrower, matches reference ── */
.trade-sidebar-col {
	flex: 0 0 260px !important;
	width: 260px !important;
	gap: 20px !important;
	top: 80px !important;
}

/* ── Sidebar widget — less padding ── */
.trade-sidebar-widget {
	padding: 18px !important;
	border-radius: 8px !important;
}

/* ── Search widget — compact ── */
.trade-search-input {
	padding: 9px 12px !important;
	font-size: 13px !important;
}

.trade-search-btn {
	padding: 9px 14px !important;
	font-size: 14px !important;
}

/* ── Popular trades list — tighter ── */
.sidebar-widget-title {
	font-size: 15px !important;
	margin-bottom: 12px !important;
	padding-bottom: 10px !important;
}

.popular-trades-list {
	gap: 6px !important;
}

.popular-trades-list li a {
	font-size: 13px !important;
	padding: 6px 10px !important;
	gap: 8px !important;
}

.popular-trades-list li a i {
	font-size: 14px !important;
}

/* ── CTA widget — tighter ── */
.cta-widget-heading {
	font-size: 13px !important;
	margin-bottom: 10px !important;
}

.cta-widget-time {
	font-size: 18px !important;
	margin-bottom: 16px !important;
}

.cta-widget-btn {
	padding: 10px 16px !important;
	font-size: 13px !important;
}

/* ── Single post title ── */
.single-post-title {
	font-size: 22px !important;
	margin-bottom: 14px !important;
}

/* ── Tablet fix ── */
@media (max-width: 1024px) {
	.trade-sidebar-col {
		flex: 0 0 230px !important;
		width: 230px !important;
	}
}

/* ── Mobile fix ── */
@media (max-width: 768px) {
	.trade-sidebar-col {
		width: 100% !important;
		flex: none !important;
	}

	.page-banner {
		height: 130px !important;
	}

	.page-banner-content h1 {
		font-size: 24px !important;
	}
}



/* ============================================================
   FOOTER REDESIGN
   ============================================================ */

.main-footer {
	background-color: #111827 !important;
	color: #b0b0b0 !important;
	padding: 60px 0 0 !important;
	font-family: 'Poppins', sans-serif;
}

.footer-grid {
	display: grid !important;
	grid-template-columns: 1.6fr 0.8fr 1.2fr !important;
	gap: 50px !important;
	padding-bottom: 50px !important;
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── Column headings ── */
.footer-col h3 {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin-bottom: 22px !important;
	position: relative !important;
}

.footer-col h3::after {
	display: none !important;
}

/* ── Brand block ── */
.footer-brand {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	text-decoration: none !important;
	margin-bottom: 20px !important;
}

.footer-brand-text {
	display: flex;
	flex-direction: column;
}

.footer-brand-name {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-style: normal;
}

.footer-brand-name em {
	color: #038CFD;
	font-style: normal;
	display: block;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.footer-about-desc {
	font-size: 13px !important;
	line-height: 1.8 !important;
	color: #9ca3af !important;
	margin-bottom: 24px !important;
}

/* ── Social icons ── */
.footer-socials {
	display: flex !important;
	gap: 12px !important;
}

.footer-socials a {
	width: 36px !important;
	height: 36px !important;
	border-radius: 50% !important;
	background-color: rgba(255,255,255,0.08) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #ffffff !important;
	font-size: 14px !important;
	transition: all 0.3s ease !important;
	text-decoration: none !important;
}

.footer-socials a:hover {
	background-color: #0163be !important;
	transform: translateY(-3px) !important;
}

/* ── Quick Links list ── */
.footer-links ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.footer-links ul li {
	margin-bottom: 12px !important;
}

.footer-links ul li a {
	color: #9ca3af !important;
	font-size: 14px !important;
	text-decoration: none !important;
	transition: color 0.25s ease !important;
	display: inline-block !important;
}

.footer-links ul li a:hover {
	color: #ffffff !important;
	padding-left: 0 !important;
}

/* ── Contact Detail with icon boxes ── */
.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 20px;
}

.footer-contact-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #0163be;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 15px;
}

.footer-contact-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.footer-contact-text strong {
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
}

.footer-contact-text span {
	font-size: 13px;
	color: #9ca3af;
	line-height: 1.5;
}


/* ── Footer bottom bar ── */
.footer-bottom {
	background-color: #0163be !important;
	padding: 18px 0 !important;
	border-top: none !important;
	text-align: left !important;
}

.footer-bottom .container {
	justify-content: space-between !important;
	align-items: center !important;
}

.footer-copyright {
	font-size: 13px !important;
	color: rgba(255,255,255,0.9) !important;
	margin: 0 !important;
}

.footer-bottom-links {
	display: flex;
	gap: 24px;
}

.footer-bottom-links a {
	font-size: 13px;
	color: rgba(255,255,255,0.9);
	text-decoration: underline;
	transition: color 0.25s;
}

.footer-bottom-links a:hover {
	color: #ffffff;
}

/* ── Footer responsive ── */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr !important;
		gap: 40px !important;
	}
	.footer-about {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.footer-grid {
		grid-template-columns: 1fr !important;
		gap: 35px !important;
	}
	.footer-about {
		grid-column: auto;
	}
	.footer-bottom .container {
		flex-direction: column !important;
		gap: 10px !important;
		text-align: center !important;
	}
	.footer-bottom-links {
		gap: 16px;
	}
}
/* ============================================================
   TRADES MEGA DROPDOWN — Gap Bridge Fix
   ============================================================ */

.nav-has-dropdown::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 12px;
	background: transparent;
}

/*.nav-dropdown-panel {*/
/*	margin-top: 12px;*/
/*}*/

/* ── Standard dropdown gap bridge ── */
.dropdown::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 12px;
	background: transparent;
}


/* ============================================================
   BLOG ARCHIVE — Two-column layout with sidebar
   ============================================================ */

.blog-archive-sec {
	padding: 60px 0 80px;
}

.blog-archive-container {
	align-items: flex-start;
	gap: 35px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.blog-archive-main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.blog-archive-card {
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #e8e8e8;
}

.blog-archive-card:last-of-type {
	border-bottom: none;
}

.blog-archive-img {
	width: 100%;
	height: 280px;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 18px;
}

.blog-archive-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.blog-archive-card:hover .blog-archive-img img {
	transform: scale(1.03);
}

.blog-archive-meta {
	margin-bottom: 10px;
}

.blog-archive-date {
	font-size: 13px;
	color: #888;
	display: flex;
	align-items: center;
	gap: 6px;
}

.blog-archive-date i {
	color: #0163be;
	font-size: 13px;
}

.blog-archive-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1.4;
	margin-bottom: 12px;
}

.blog-archive-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s;
}

.blog-archive-title a:hover {
	color: #0163be;
}

.blog-archive-excerpt {
	font-size: 14px;
	color: #626262;
	line-height: 1.7;
	margin-bottom: 18px;
}

.blog-read-more {
	display: inline-block;
	padding: 9px 22px;
	border: 1.5px solid #1a1a2e;
	color: #1a1a2e;
	font-size: 13px;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.25s ease;
}

.blog-read-more:hover {
	background: #0163be;
	border-color: #0163be;
	color: #fff;
}

/* Pagination */
.blog-archive-pagination {
	margin-top: 20px;
}

.blog-archive-pagination .nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.blog-archive-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 6px;
	border: 1.5px solid #e0e0e0;
	color: #313131;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s;
}

.blog-archive-pagination .page-numbers.current,
.blog-archive-pagination .page-numbers:hover {
	background: #0163be;
	border-color: #0163be;
	color: #fff;
}

.blog-archive-pagination .page-numbers.dots {
	border: none;
	color: #888;
}

/* ── Blog Sidebar ── */
.blog-archive-sidebar {
	flex: 0 0 290px;
	width: 290px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 90px;
}

.blog-sidebar-widget {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	padding: 20px;
}

.blog-sidebar-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid #e8f0fb;
}

.blog-search-form {
	display: flex;
	align-items: center;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
}

.blog-search-input {
	flex: 1;
	border: none;
	outline: none;
	padding: 10px 14px;
	font-size: 13px;
	color: #313131;
	font-family: 'Poppins', sans-serif;
	background: transparent;
}

.blog-search-input::placeholder { color: #aaa; }

.blog-search-btn {
	background: #0163be;
	color: #fff;
	border: none;
	padding: 10px 14px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s;
}

.blog-search-btn:hover { background: #0152a0; }

/* Latest Posts */
.blog-latest-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.blog-latest-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.blog-latest-thumb {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 6px;
	overflow: hidden;
	display: block;
}

.blog-latest-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-latest-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.blog-latest-title {
	font-size: 13px;
	font-weight: 600;
	color: #1a1a2e;
	text-decoration: none;
	line-height: 1.4;
	transition: color 0.25s;
}

.blog-latest-title:hover { color: #0163be; }

.blog-latest-date {
	font-size: 12px;
	color: #999;
}

/* Post Categories */
.blog-cats-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.blog-cats-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 14px;
}

.blog-cats-list li:last-child { border-bottom: none; }

.blog-cats-list li a {
	color: #313131;
	text-decoration: none;
	transition: color 0.25s;
}

.blog-cats-list li a:hover { color: #0163be; }

.blog-cat-count {
	font-size: 13px;
	color: #888;
}

/* Popular Tags */
.blog-tags-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.blog-tag {
	display: inline-block;
	padding: 5px 14px;
	background: #f3f8ff;
	color: #0163be;
	border: 1px solid #d0e4ff;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s;
}

.blog-tag:hover {
	background: #0163be;
	color: #fff;
	border-color: #0163be;
}

/* ── Blog Archive Responsive ── */
@media (max-width: 1024px) {
	.blog-archive-sidebar {
		flex: 0 0 250px;
		width: 250px;
		position: static;
	}
}

@media (max-width: 768px) {
	.blog-archive-container {
		flex-direction: column !important;
	}
	.blog-archive-sidebar {
		width: 100%;
		flex: none;
		position: static;
	}
	.blog-archive-img {
		height: 220px;
	}
	.blog-archive-title {
		font-size: 18px;
	}
}



/* ============================================================
   TRADE ARCHIVE REDESIGN — 4-column icon card grid
   Paste at the BOTTOM of your style.css
   ============================================================ */

/* ── Section ── */
.trade-archive-sec {
	padding: 70px 0 40px !important;
}

/* ── Header ── */
.trade-archive-header {
	text-align: center !important;
	max-width: 680px !important;
	margin: 0 auto 50px !important;
}

.trade-archive-heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 16px;
	line-height: 1.3;
}

.trade-archive-heading span {
	color: #0163be;
}

.trade-archive-header p {
	font-size: 15px;
	color: #626262;
	line-height: 1.7;
}

/* ── 4-column icon card grid ── */
.trade-archive-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 24px !important;
	width: 100% !important;
}

/* ── Individual card ── */
.trade-archive-card {
	background: #fff !important;
	border: 1px solid #e8e8e8 !important;
	border-radius: 10px !important;
	padding: 28px 22px 22px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	transition: all 0.3s ease !important;
	overflow: visible !important;
	border-bottom: 3px solid #0163be !important;
}

.trade-archive-card:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 12px 35px rgba(0,0,0,0.08) !important;
	border-bottom-color: #0163be !important;
}

/* ── Icon ── */
.trade-card-icon {
	width: 52px;
	height: 52px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trade-card-icon i {
	font-size: 32px;
	color: #1a1a2e;
	transition: color 0.3s;
}

.trade-archive-card:hover .trade-card-icon i {
	color: #0163be;
}

/* ── Title ── */
.trade-card-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 10px;
}

.trade-card-title a {
	color: #0163be;
	text-decoration: none;
	transition: color 0.25s;
}

.trade-card-title a:hover {
	color: #014fa0;
}

/* ── Description ── */
.trade-card-desc {
	font-size: 13px;
	color: #626262;
	line-height: 1.6;
	margin-bottom: 18px;
	flex: 1;
}

/* ── Request Quote link ── */
.trade-card-cta {
	font-size: 13px;
	font-weight: 600;
	color: #0163be;
	text-decoration: underline;
	transition: color 0.25s;
	display: inline-block;
}

.trade-card-cta:hover {
	color: #014fa0;
}

/* ── Bottom note ── */
.trade-archive-note {
	text-align: center;
	margin-top: 40px;
	font-size: 14px;
	color: #626262;
}

.trade-archive-note a {
	color: #0163be;
	font-weight: 600;
	text-decoration: none;
}

.trade-archive-note a:hover {
	text-decoration: underline;
}

/* ── Bottom CTA Banner ── */
.trade-archive-cta-banner {
	background: linear-gradient(135deg, #0163be 0%, #014fa0 100%);
	padding: 60px 0;
	margin-top: 20px;
}

.trade-archive-cta-banner .container {
	align-items: center;
	gap: 40px;
	justify-content: space-between;
}

.trade-cta-banner-content {
	flex: 1;
}

.trade-cta-banner-content h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 14px;
}

.trade-cta-banner-content p {
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	line-height: 1.7;
	max-width: 560px;
}

.trade-cta-banner-action {
	flex-shrink: 0;
}

.btn-quote-white {
	background: transparent !important;
	border: 2px solid #fff !important;
	color: #fff !important;
	border-radius: 50px !important;
	padding: 12px 28px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	text-decoration: none !important;
	transition: all 0.3s ease !important;
	white-space: nowrap;
}

.btn-quote-white:hover {
	background: #fff !important;
	color: #0163be !important;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
	.trade-archive-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 900px) {
	.trade-archive-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.trade-archive-heading {
		font-size: 28px;
	}
	.trade-archive-cta-banner .container {
		flex-direction: column;
		text-align: center;
	}
	.trade-cta-banner-content p {
		max-width: 100%;
	}
}

@media (max-width: 520px) {
	.trade-archive-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ============================================================
   TRADE ARCHIVE CARD — Design fix to match 4-column reference
   Paste at the BOTTOM of your style.css
   ============================================================ */

/* Force 4 columns */
.trade-archive-grid {
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 20px !important;
}

/* Card reset */
.trade-archive-card {
	padding: 30px 24px 24px !important;
	border-radius: 14px !important;
	border: 1px solid #e8e8e8 !important;
	border-bottom: 3px solid #0163be !important;
	background: #fff !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	gap: 0 !important;
	transition: all 0.3s ease !important;
	box-shadow: none !important;
}

.trade-archive-card:hover {
	border-bottom-color: #0163be !important;
	box-shadow: 0 8px 30px rgba(0,0,0,0.07) !important;
	transform: translateY(-3px) !important;
}

/* Icon — small, left-aligned, dark */
.trade-card-icon {
	width: auto !important;
	height: auto !important;
	margin-bottom: 20px !important;
	display: block !important;
}

.trade-card-icon i {
	font-size: 28px !important;
	color: #1a1a2e !important;
}

.trade-archive-card:hover .trade-card-icon i {
	color: #1a1a2e !important;
}

/* Title — first word/line dark, rest blue */
.trade-card-title {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 16px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
	margin-bottom: 12px !important;
	color: #1a1a2e !important;
}

.trade-card-title a {
	color: #1a1a2e !important;
	text-decoration: none !important;
}

.trade-card-title a:hover {
	color: #0163be !important;
}

/* Description */
.trade-card-desc {
	font-size: 13px !important;
	color: #555 !important;
	line-height: 1.65 !important;
	margin-bottom: 16px !important;
	flex: 1 !important;
}

/* Request Quote link */
.trade-card-cta {
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #0163be !important;
	text-decoration: underline !important;
	display: inline-block !important;
	transition: color 0.25s !important;
}

.trade-card-cta:hover {
	color: #014fa0 !important;
}

/* Responsive */
@media (max-width: 1100px) {
	.trade-archive-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.trade-archive-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 480px) {
	.trade-archive-grid {
		grid-template-columns: 1fr !important;
	}
}