:root {
  --primary-color: #ee553b;
  --secondary-color: #000000;
  --dark-color: #000000;
  --light-color: #f8f9fa;
}

/* Base body styling */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.875rem;
  /* Slightly smaller font size */
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ====== Top Header ====== */
.top-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  /* all text bold */
  line-height: 1.5;
}

.top-header a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  /* bold links */
  transition: opacity 0.3s ease;
}

.top-header a:hover {
  opacity: 0.8;
}

.payment-icons {
  height: 25px;
  width: auto;
  margin-left: 5px;
}

.btn-pay-online {
  background: #06430c;
  color: #fff;
  font-weight: 700;
  /* slightly bolder button */
  padding: 3px 10px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-pay-online:hover {
  background: #138a38;
}

.contact-item {
  color: #fff;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  /* bold text */
}

.contact-item i {
  font-size: 14px;
  color: #fff;
  margin-right: 5px;
}

.extra-links {
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 600;
  /* bold small text */
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .top-header {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .btn-pay-online {
    display: block;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
  }
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.social-links li b {
  color: var(--light-color);
  margin-right: 5px;
}

.social-links a i {
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-links a:hover i {
  color: var(--primary-color);
}

.navbar-brand span {
  color: var(--primary-color);
}

.navbar {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: var(--dark-color);
  font-weight: 600;
  margin: 0 10px;
  position: relative;
  font-size: 16px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
}

/* Desktop Dropdown Styles */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border: none;
    transition: transform 0.3s ease;
  }

  .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 10px;
  }
}

@media (max-width: 992px) {
  .navbar-brand img {
    height: 60px !important;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  .navbar-brand img {
    height: 100px !important;
  }
}

.navbar-brand img {
  height: 100px;
}

.dropdown-item {
  padding: 8px 20px;
  color: var(--dark-color);
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

/* Custom hamburger menu */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .icon-bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--dark-color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-toggler .icon-bar:nth-child(1) {
  top: 0;
}

.navbar-toggler .icon-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler .icon-bar:nth-child(3) {
  bottom: 0;
}

/* When navbar is open (show X icon) */
.navbar-toggler[aria-expanded="true"] .icon-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .icon-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Offcanvas Menu */
.offcanvas {
  width: 280px !important;
}

.offcanvas-end {
  right: 0;
  left: auto;
}

.offcanvas-header {
  justify-content: flex-end;
  padding: 15px;
}

.offcanvas-body {
  padding: 0;
}

/* Mobile Navigation Items */
.mobile-nav-item {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: block;
  color: var(--dark-color);
  text-decoration: none;
}

.mobile-nav-item:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--dark-color);
  text-decoration: none;
}

.mobile-dropdown-toggle:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
  background-color: var(--light-color);
}

.mobile-dropdown-menu.show {
  display: block;
}

.mobile-dropdown-item {
  padding: 10px 20px;
  border-bottom: 1px solid #e0e0e0;
  display: block;
  color: var(--dark-color);
  text-decoration: none;
}

.mobile-dropdown-item:last-child {
  border-bottom: none;
}

.mobile-dropdown-item:hover {
  color: var(--primary-color);
  background-color: var(--light-color);
}

.mobile-dropdown-item i {
  margin-right: 8px;
  width: 18px;
  text-align: center;
}

.quote-btn {
  display: inline-block;
  padding: 8px 18px;
  background-color: var(--primary-color);
  color: var(--light-color) !important;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Responsive tweaks for 991px to 1200px */
@media (min-width: 991px) and (max-width: 1200px) {
  .nav-link {
    margin: 0 6px;
    font-size: 0.7rem;
  }

  .dropdown-item {
    padding: 6px 15px;
    font-size: 0.9rem;
  }

  .quote-btn {
    padding: 6px 14px;
    font-size: 0.9rem;
    border-radius: 25px;
  }

  .navbar {
    padding: 10px 0;
  }

  .dropdown-menu {
    padding: 8px 0;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  color: white;
  text-align: center;
  overflow: hidden;
  padding: 4rem 0 6rem;
}

/* Background Image now as an <img> */
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  /* top:0; left:0; right:0; bottom:0; */
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
  /* replaces rgba overlay */
}

/* Text and content */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

/* Simple fade animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Mobile and Tablet Responsiveness */
@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    text-align: right;
  }

  .navbar-toggler {
    margin-left: auto;
    transition: var(--transition);
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.6rem;
    /* Even smaller on mobile */
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .quote-form {
    padding: 1.25rem;
  }
}

/* .site-breadcrumb {
  background-color: #746f6f;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  color: var(--light-color);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.breadcrumb-menu {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  margin: 0;
}

.breadcrumb-menu li {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.breadcrumb-menu li a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-menu li a:hover {
  color: var(--secondary-color);
}

.breadcrumb-menu li.active {
  color: var(--secondary-color);
  font-weight: 600;
}

.breadcrumb-menu li+li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--light-color);
  margin: 0 10px;
  font-size: 13px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb-title {
  animation: fadeUp 0.8s ease;
}

@media (max-width: 768px) {
  .site-breadcrumb {
    padding: 50px 0;
  }

  .breadcrumb-title {
    font-size: 24px;
  }

  .breadcrumb-menu {
    flex-wrap: wrap;
    padding: 6px 12px;
  }

  .breadcrumb-menu li {
    font-size: 14px;
  }
} */
.site-breadcrumb {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

/* Background image wrapper */
.breadcrumb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.breadcrumb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.site-breadcrumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7));
  z-index: 1;
}

/* Content above overlay */
.breadcrumb-content {
  position: relative;
  z-index: 2;
}

/* Title */
.breadcrumb-title {
  color: var(--light-color);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  animation: fadeUp 0.8s ease;
}

/* Paragraph */
.site-breadcrumb p {
  color: #fff;
  margin-bottom: 15px;
}

/* Breadcrumb menu */
.breadcrumb-menu {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  margin: 0;
}

.breadcrumb-menu li {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.breadcrumb-menu li a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-menu li a:hover {
  color: var(--secondary-color);
}

.breadcrumb-menu li.active {
  color: var(--secondary-color);
  font-weight: 600;
}

.breadcrumb-menu li+li::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--light-color);
  margin: 0 10px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-breadcrumb {
    padding: 50px 0;
  }

  .breadcrumb-title {
    font-size: 24px;
  }

  .breadcrumb-menu {
    flex-wrap: wrap;
    padding: 6px 12px;
  }

  .breadcrumb-menu li {
    font-size: 14px;
  }
}

.service-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

/* .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
} */

.service-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.service-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-text {
  flex: 1;
  color: #000;
}

.service-title {
  color: #ee553b;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-text p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.subheading {
  font-size: 22px;
  color: #000;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}

.reason-list {
  list-style: none;
  padding: 0;
}

.reason-list li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.reason-list i {
  color: #ee553b;
  font-size: 18px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
  }

  .service-image img {
    max-width: 100%;
  }

  .service-title {
    font-size: 24px;
  }
}

/* HOME PAGE CSS */
.about-section {
  background-color: var(--light-color);
  overflow: hidden;
}

.about-image {
  position: relative;
  border-radius: 25px 25px 25px 80px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(238, 85, 59, 0.5), rgba(0, 0, 0, 0.3));
  mix-blend-mode: multiply;
}

.about-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.about-content:hover {
  transform: translateY(-5px);
}

.about-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.about-subtitle {
  font-weight: 500;
  color: var(--primary-color);
}

.about-tag {
  background: var(--primary-color);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.about-text {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.mission-vision i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 10px;
}

.mission,
.vision {
  display: flex;
  align-items: flex-start;
}

.mission span,
.vision span {
  font-weight: 600;
  color: var(--secondary-color);
}

.read-more-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more-btn:hover {
  background: var(--secondary-color);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .about-content {
    text-align: center;
  }

  .mission,
  .vision {
    flex-direction: column;
    align-items: center;
  }

  .mission i,
  .vision i {
    margin-bottom: 8px;
  }
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.content-wrapper p {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 768px) {


  .section-title {
    font-size: 1.5rem;
  }
}

/* ====== 5 Columns for Large Screens ====== */
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* ====== Section Styling ====== */
.services-section {
  background: #f8f9fa;
}

.section-title {
  color: #000;
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: capitalize;
}

.section-subtitle {
  color: #ee553b;
  font-weight: 500;
  font-size: 1rem;
}

/* ====== Card Styling ====== */
.service-card {
  display: block;
  background: #fff;
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #000;
  transition: all 0.4s ease;
  position: relative;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #fff5f3;
  color: #ee553b;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(238, 85, 59, 0.15);
  transition: all 0.4s ease;
}

.service-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

/* ====== Hover Effects ====== */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(238, 85, 59, 0.15);
}

.service-card:hover .service-icon {
  background: #ee553b;
  color: #fff;
  box-shadow: 0 6px 15px rgba(238, 85, 59, 0.3);
}

/* ====== Responsive ====== */
@media (max-width: 767px) {
  .service-card {
    padding: 25px 15px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }
}

/* ========== STEP CIRCLE ========== */
.step-circle {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-circle:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 30px;
  height: 30px;
  background: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.step-icon {
  font-size: 2.2rem;
  color: #fff;
}

/* ========== CONNECTOR LINE ========== */
.connector-line {
  position: absolute;
  top: 45px;
  left: 50%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ee553b, #ff7b00);
  z-index: -1;
  border-radius: 2px;
}

/* ========== TRUCK ANIMATION ========== */
.truck {
  position: absolute;
  top: 35px;
  left: 0;
  font-size: 2.2rem;
  z-index: 10;
  animation: moveTruck 18s linear infinite;
}

@keyframes moveTruck {
  0% {
    left: 0%;
    color: #ee553b;
    transform: rotateY(0deg);
  }

  24% {
    left: 24%;
    color: #ee553b;
  }

  26% {
    color: #ff7b00;
  }

  49% {
    left: 49%;
    color: #ff7b00;
  }

  51% {
    color: #007bff;
  }

  74% {
    left: 74%;
    color: #007bff;
  }

  76% {
    color: #6f42c1;
  }

  100% {
    left: 100%;
    color: #6f42c1;
    transform: rotateY(0deg);
  }
}

/* ========== RESPONSIVE ========== */
@media(max-width:992px) {

  .connector-line,
  .truck {
    display: none;
  }
}

.testimonials-section {
  background: linear-gradient(180deg, #fdfdfd, #f8f9fa);
}

.section-title {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}



.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(238, 85, 59, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(238, 85, 59, 0.25);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary-color);
}

.testimonial-card p {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  line-height: 1.6;
}

.blockquote-footer {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.rating i {
  font-size: 1.1rem;
  margin: 0 2px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(38%) sepia(81%) saturate(3948%) hue-rotate(349deg) brightness(96%) contrast(101%);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .testimonial-card {
    padding: 22px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

.footer-section {
  background-color: var(--light-color);
  color: var(--secondary-color);
  font-size: 15px;
  line-height: 1.6;
}

/* Footer Titles */
.footer-title {
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

/* General Link Reset */
.footer-section a {
  text-decoration: none !important;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

/* Top City Links */
.flinks a {
  text-decoration: none !important;
  color: var(--secondary-color);
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 5px;
}

.flinks a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

/* Quick Links + Service Links */
.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.footer-links a i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* City Links (optional usage) */
.footer-city-link {
  display: flex;
  align-items: center;
  color: var(--secondary-color);
  text-decoration: none !important;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-city-link i {
  color: var(--primary-color);
  margin-right: 6px;
  font-size: 13px;
}

.footer-city-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* Contact Section */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.footer-contact-item a,
.footer-contact-item span {
  color: var(--secondary-color);
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--primary-color);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  text-decoration: none !important;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--secondary-color);
  color: var(--light-color);
  border-radius: 50%;
  font-size: 15px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: black;
  transform: scale(1.1);
}

/* Bottom Copyright */
.footer-bottom {
  background-color: var(--secondary-color);
  color: var(--light-color);
  font-size: 14px;
  text-align: center;
  padding: 12px 0;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }

  .flinks a {
    display: block;
  }
}

.headding {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.keyword-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword {
  background: #5f6874;
  color: #fff;
  padding: 7px 15px;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.keyword:hover {
  background: #3f4650;
}

.yt-testimonial-section {
  background: #f8f9fa;
}

.yt-header {
  text-align: center;
  margin-bottom: 30px;
}

.yt-header span {
  font-weight: 700;
  color: #c60000;
  font-size: 25px;
}

.yt-header p {
  color: #555;
  font-size: 15px;
}

.yt-slider-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
}

/* Hide scrollbar */
.yt-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.yt-slider-track {
  display: flex;
  gap: 20px;
  padding: 10px 20px;
  transition: transform 0.3s ease;
}

.yt-video-card {
  min-width: 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex-shrink: 0;
}

.yt-video {
  position: relative;
  padding-top: 56.25%;
}

.yt-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-info {
  padding: 12px;
  font-weight: 600;
  text-align: center;
  background: #211b20;
  color: #fff;
  font-size: 14px;
}

.yt-drag-text {
  text-align: center;
  margin: 20px 0;
  font-size: 13px;
  color: #777;
}

.yt-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #c60000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.yt-btn:hover {
  background: #a40000;
}
 .gw-blog-keyword-wrap {
        padding: 25px 0
    }

    .blog-section {
        padding-right: 10px
    }

    .blog-section-header {
        margin-bottom: 10px;
        position: relative;
        padding-left: 14px
    }

    .blog-section-header::before {
        content: "";
        position: absolute;
        left: 0;
        top: 3px;
        width: 4px;
        height: 22px;
        background: linear-gradient(180deg, #c60000, #960f0f);
        border-radius: 10px
    }

    .blog-section-header .section-title {
        font-size: 18px;
        font-weight: 700;
        color: #211b20;
        margin: 0
    }

    .blog-post-item {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 12px 35px rgb(0 0 0 / .06);
        transition: all 0.35s ease;
        overflow: hidden
    }

    .blog-post-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgb(0 0 0 / .12)
    }

    .post-image-container {
        border-radius: 12px;
        overflow: hidden;
        height: 100%
    }

    .post-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease
    }

    .blog-post-item .post-image-container {
        height: 140px;
        border-radius: 12px;
        overflow: hidden;
        position: relative
    }

    .blog-post-item .post-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

    .blog-post-item:hover .post-image {
        transform: scale(1.08)
    }

    .post-image-container .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgb(0 0 0 / .65), rgb(0 0 0 / .05));
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        padding: 10px;
        opacity: 0;
        transition: opacity 0.35s ease
    }

    .blog-post-item:hover .overlay {
        opacity: 1
    }

    .view-count {
        background: rgb(255 255 255 / .95);
        color: #000;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 20px
    }

    .post-content {
        padding-right: 10px
    }

    .post-title {
        font-size: 17px;
        font-weight: 700;
        line-height: 1.35;
        margin-bottom: 8px
    }

    .post-title a {
        color: #211b20;
        transition: color 0.3s ease
    }

    .post-title a:hover {
        color: #c60000
    }

    .post-excerpt {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 0
    }

    .keyword-section-gw {
        background: linear-gradient(180deg, #f8f9fa, #ffffff);
        border-radius: 14px;
        padding: 20px;
        box-shadow: 0 12px 35px rgb(0 0 0 / .05)
    }

    .keyword-section-gw .headding {
        display: block;
        font-size: 17px;
        font-weight: 700;
        color: #211b20;
        margin-bottom: 12px;
        position: relative;
        padding-left: 12px
    }

    .keyword-section-gw .headding::before {
        content: "";
        position: absolute;
        left: 0;
        top: 3px;
        width: 4px;
        height: 20px;
        background: #c60000;
        border-radius: 10px
    }

    .keyword-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 8px
    }

    .keyword-wrapper .keyword {
        background: #fff;
        border: 1px solid #e4e4e4;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
        color: #333;
        transition: all 0.3s ease;
        cursor: default
    }

    .keyword-wrapper .keyword:hover {
        background: #c60000;
        color: #fff;
        border-color: #c60000;
        transform: translateY(-2px)
    }

    @media (max-width:768px) {
        .blog-section {
            padding-right: 0
        }

        .post-title {
            font-size: 16px
        }

        .keyword-section-gw {
            margin-top: 20px
        }
    }