:root {
  --primary-color: #1781a0;
  --secondary-color: #ff6b00;
  --light-color: #f8f9fa;
  --dark-color: #212529;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  overflow-x: hidden;
}
.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}
.navbar-brand span {
  color: #ff6b00;
}

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

.nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ff6b00;
}

.nav-link.active:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ff6b00;
  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: 30px!important;
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .navbar-brand img {
    height: 35px!important;
  }
}

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

.dropdown-item {
  padding: 8px 20px;
  color: #333;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: #fff9f5;
  color: #ff6b00;
}

/* 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: #333;
  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: #333;
  text-decoration: none;
}

.mobile-nav-item:hover {
  background-color: #f9f9f9;
  color: #ff6b00;
}

.mobile-nav-item.active {
  color: #ff6b00;
  font-weight: 600;
}

/* 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: #333;
  text-decoration: none;
}

.mobile-dropdown-toggle:hover {
  background-color: #f9f9f9;
  color: #ff6b00;
}

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

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

.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
  background-color: #f9f9f9;
}

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

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

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

.mobile-dropdown-item:hover {
  color: #ff6b00;
  background-color: #fff;
}

.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: #fff !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) {

  /* Reduce horizontal spacing between nav links */
  .nav-link {
    margin: 0 6px;
    font-size: 0.7rem;
  }

  /* Slightly smaller dropdown items */
  .dropdown-item {
    padding: 6px 15px;
    font-size: 0.9rem;
  }

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

  /* Reduce navbar padding */
  .navbar {
    padding: 10px 0;
  }

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


.hero-section {
  background-color: #f8f9fa;
  /* Light gray background */
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.quote-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quote-form h2 {
  color: #ff6b00;
  /* Orange color */
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.form-control {
  height: 50px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ff6b00;
}

.submit-btn {
  background-color: #ff6b00;
  color: white;
  border: none;
  padding: 12px;
  font-weight: 600;
  width: 100%;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #e05d00;
}

.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 60px 0;
    text-align: center;
  }

  .quote-form {
    margin-bottom: 40px;
  }

  .hero-image-container {
    order: -1;
    /* Move image above form on mobile */
    margin-bottom: 30px;
  }
}

.services-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 20px;
  }
}

/* Special Services Section Styles */
.special-services-section .service-box {
  border-radius: 16px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.special-services-section .service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.special-services-section .service-icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
}

.special-services-section .service-title {
  font-size: 1.2rem;
}

.special-services-section .service-description {
  font-size: 0.95rem;
  color: #6c757d;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

/* .footer-links h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
} */

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}

/* why choose */
.company-name {
  color: var(--primary-color);
}

.section-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.theme-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--primary-color);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.theme-btn:hover {
  background: #e55f00;
}

.choose-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.choose-card p {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.choose-card p {
  color: #666;
  font-size: 1rem;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.our-process {
  padding: 60px 0;
  background: var(--light-color);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--dark-color);
  max-width: 600px;
  margin: 0 auto 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.process-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.process-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.process-card span {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.process-card p {
  color: #666;
  font-size: 0.95rem;
}

/* breadcrumb */
/* Page Title Section */
.page-title {
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* Overlay for readability */
}

.page-title .container {
  position: relative;
  z-index: 2;
}

.page-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb List */
.breadcrumb-list {
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.breadcrumb-list li {
  color: #fff;
  margin: 0;
  position: relative;
}

.breadcrumb-list li+li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.7);
  margin: 0 8px;
}

.breadcrumb-list a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: var(--primary-color);
}

/* Mobile */
@media (max-width: 768px) {
  .page-heading {
    font-size: 1.8rem;
  }

  .breadcrumb-list {
    font-size: 0.85rem;
  }
}

/* re css of navigation */

/* fallback visuals when stuck (native sticky gives no event, so class below is for JS) */
nav.navbar.is-fixed,
nav.navbar.stuck {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

/* nav links hover/active (theme colors used directly) */
nav.navbar .navbar-nav .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  transition: color .25s, background-color .25s;
}

/* hover */
nav.navbar .navbar-nav .nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(23, 129, 160, 0.06);
  border-radius: .375rem;
}

/* active state (use .active on server side) */
nav.navbar .navbar-nav .nav-link.active {
  color: var(--secondary-color);
  background-color: rgba(255, 107, 0, 0.08);
  border-radius: .375rem;
}

/* dropdown fixes */
nav.navbar .dropdown-menu {
  border-radius: .5rem;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

/* ===== Service Section ===== */
.service-section {
  padding: 3rem 0;
}

.service-section img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-section img:hover {
  transform: scale(1.02);
}

.service-section h2 {
  color: var(--primary-color);
  font-weight: 700;
}

.service-section p {
  color: var(--dark-color);
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Spacing */
@media (max-width: 992px) {
  .service-section {
    text-align: center;
  }

  .service-section img {
    margin-bottom: 1.5rem;
  }
}

/* home review */
.reviews-section {
  background-color: var(--light-color);
}

.review-slider {
  overflow: hidden;
  width: 100%;
  padding: 0 40px;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  background-color: white;
  transition: transform 0.3s ease;
  margin: 0 8px;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-prev,
.review-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.review-prev:hover,
.review-next:hover {
  background-color: var(--secondary-color);
}

.review-prev {
  left: 0;
}

.review-next {
  right: 0;
}

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 16px);
    min-width: calc(50% - 16px);
  }
}

@media (max-width: 576px) {
  .review-card {
    flex: 0 0 calc(100% - 16px);
    min-width: calc(100% - 16px);
  }
}

.branches-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 32px;
}

/* Card Style */
.location-card {
  display: block;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  padding: 10px;
  text-decoration: none;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.location-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.location-card:hover img {
  transform: scale(1.05);
}

.location-card span {
  margin-top: 12px;
  font-size: 16px;
  color: var(--secondary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.location-card:hover span {
  color: #c60101;
}

/* Responsive image fix for small screens */
@media (max-width: 576px) {
  .location-card img {
    height: 140px;
  }

  .location-card span {
    font-size: 15px;
  }
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact i {
  font-size: 45px;
}

.floating-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.floating-contact a:hover {
  transform: scale(1.1);
}

.whatsapp-float {
  background-color: #25D366;
  color: white;
}

.call-float {
  background-color: #c60101;
  color: white;
}

/* Responsive sizes */
@media (max-width: 768px) {
  .floating-contact a {
    width: 55px;
    height: 55px;
  }

  .floating-contact i {
    font-size: 35px;
  }
}

@media (max-width: 480px) {
  .floating-contact a {
    width: 50px;
    height: 50px;
  }

  .floating-contact i {
    font-size: 30px;
  }
}

.section-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.service-section {
  padding: 70px 0;
}

.service-text h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.service-img img {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  object-fit: cover;
}

.cta-section {
  background: var(--primary-color);
  color: white;
  padding: 50px 20px;
  text-align: center;
  margin-top: 50px;
  border-radius: 12px;
}

.stats-section {
  background: var(--secondary-color);
  padding: 60px 20px;
  color: var(--light-color);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box i {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
  color: var(--light-color);
}

.stat-number {
  display: flex;
  justify-content: center;
  align-items: baseline;
  /* aligns number + symbol */
}

.stat-number p.counter {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
  color: var(--light-color);
}

.stat-number span {
  font-size: 1.5rem;
  margin-left: 5px;
  font-weight: bold;
  color: var(--light-color);
}

.stat-label {
  font-size: 1.2rem;
  margin-top: 8px;
  color: var(--light-color);
}


.cty-list h3 {
  text-align: center;
  color: #1781a0;
  margin: 30px 0;
  font-weight: bold;
}

.city-list {
  column-count: 3; /* desktop */
  column-gap: 40px;
  padding: 0;
}

.city-list  li p {
  margin-bottom: 10px;
  list-style: none;
  break-inside: avoid;
}

.city-list p {
  margin: 0;
  color: #212529;
  font-size: 15px;
  display: inline-block;
  cursor: pointer; 
  transition: color 0.3s ease, transform 0.3s ease, letter-spacing 0.3s ease;
}

.city-list p:hover {
  color: #1781a0;
  transform: translateX(3px);
  letter-spacing: 0.5px;
}

/* Responsive Columns */
@media (max-width: 992px) {
  .city-list {
    column-count: 2; /* tablet */
  }
}

@media (max-width: 576px) {
  .city-list {
    column-count: 1; /* mobile */
  }
}

@media (max-width: 576px) {
  .city-list {
    column-count: 1;
    /* mobile */
  }

  h3 {
    font-size: 20px;
  }
}

.slider-img {
  object-fit: cover;
  height: 500px;
}

/* Centered caption */
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 800px;
  padding: 0 15px;
}

/* H1 and span heading */
.carousel-caption-custom h1,
.caption-heading {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.75);
  margin-bottom: 1rem;
  color: white;
  letter-spacing: 1px;
}

/* Paragraph text */
.carousel-caption-custom p {
  font-size: 1.2rem;
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Buttons styling */
.slider-buttons .btn {
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.slider-buttons .btn-primary {
  background-color: var(--secondary-color);
  border: none;
}

.slider-buttons .btn-primary:hover {
  background-color: #e15f00;
}

.slider-buttons .btn-outline-light {
  color: white;
  border: 2px solid white;
}

.slider-buttons .btn-outline-light:hover {
  background-color: white;
  color: var(--dark-color);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .slider-img {
    height: 400px;
  }

  .carousel-caption-custom h1,
  .caption-heading {
    font-size: 1.8rem;
  }

  .carousel-caption-custom p {
    font-size: 1rem;
  }

  .slider-buttons .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
    margin: 5px 4px;
  }
}

.domestic-header {
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.domestic-header h1 {
  font-size: 3rem;
  font-weight: 700;
}

.domestic-section {
  padding: 70px 0;
}

.domestic-section:nth-child(even) {
  background: var(--light-color);
}

.domestic-section:nth-child(odd) {
  background: #fff;
}

.domestic-section img {
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.domestic-section img:hover {
  transform: scale(1.05);
}

.domestic-content h2 {
  font-weight: 700;
  color: var(--primary-color);
}

.domestic-content p {
  margin: 15px 0;
  line-height: 1.7;
}

.btn-theme {
  background: var(--secondary-color);
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-theme:hover {
  background: var(--primary-color);
  color: #fff;
}

.our-service-page {
  background-attachment: fixed;
}

.city-card {
  border-radius: 12px;
  background-color: var(--light-color);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 2px solid var(--secondary-color);
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  border-color: var(--primary-color);
}

.city-card .card-body {
  padding: 15px;
}

.icon-container img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: hue-rotate(170deg) saturate(1.5);
  transition: transform 0.3s ease;
}

.city-card:hover .icon-container img {
  transform: scale(1.15);
}

.city-name h5 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: var(--dark-color);
}

.city-card:hover .city-name h5 {
  color: var(--primary-color);
}

@media (max-width: 576px) {
  .city-name h5 {
    font-size: 12px;
  }

  .icon-container img {
    width: 35px;
    height: 35px;
  }
}

.city-section {
  background-color: #fff;
  border-radius: 8px;
}

.city-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1781a0;
  /* Primary Orange */
  margin-bottom: 15px;
}

.city-subheading span{
  font-size: 1.5rem;
  color: #333;
  line-height: 1.6;
}

.city-content {
  padding: 20px;
}

.city-section iframe {
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(33, 37, 41, 0.2);
  /* Dark shadow */
}

.charges-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1781a0;
  /* Primary Orange */
}

.charges-table {
  background: #f8f9fa;
  /* Light */
  border: 1px solid #dee2e6;
}

.charges-table th {
  background-color: #333;
  /* Dark Gray */
  color: #fff;
  font-weight: 600;
}

.charges-table td {
  color: #212529;
  /* Dark Text */
  font-size: 1rem;
}

.charges-table tr:nth-child(even) {
  background-color: #fff;
}

.charges-table tr:hover {
  background-color: #ffe9d6;
  /* Light orange hover */
}