@import url("navgation.css");
@import url("footer.css");
@import url("slider.css");
@import url("home.css");

:root {
  --primary-color: #e30b0b;
  --secondary-color: #ff9c00;
  --dark-color: #222222;
  --light-color: #ffffff;
  --gray-color: #6c757d;
  --gray-light: #f8f9fa;
  --gray-border: #e9ecef;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== PREMIUM CITY HERO SECTION ========== */
.city-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
  overflow: hidden;
  margin: 0;
  padding: 4rem 0;
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.32) 50%,
      rgba(227, 11, 11, 0.1) 100%);
  z-index: 2;
}

/* Blur Shapes */
.blur-shape-city {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 11, 11, 0.12) 0%, rgba(255, 156, 0, 0.05) 100%);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -150px;
  right: -100px;
  animation: floatCityShape 14s ease-in-out infinite;
  z-index: 3;
}

.blur-shape-city-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 156, 0, 0.1) 0%, rgba(227, 11, 11, 0.03) 100%);
  border-radius: 50%;
  filter: blur(60px);
  top: -100px;
  left: -80px;
  animation: floatCityShapeAlt 16s ease-in-out infinite;
  z-index: 3;
}

@keyframes floatCityShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 30px) scale(1.08);
  }
}

@keyframes floatCityShapeAlt {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.1);
  }
}

/* Hero Content Container */
.hero-content-wrapper {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main Heading Animation */
.city-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--light-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: fadeSlideUp 0.6s ease-out forwards;
}

.city-heading span {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

/* Description Text */
.city-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeSlideUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Premium Breadcrumb */
.breadcrumb-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 60px;
  margin-bottom: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: fadeSlideUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.breadcrumb-wrapper:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.breadcrumb-link {
  color: #f6f3f0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-link i {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.breadcrumb-link:hover {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 600;
}

.breadcrumb-separator i {
  color: var(--secondary-color);
  font-size: 0.72rem;
}

.breadcrumb-current {
  color: #f8edea;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* Animations */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .city-hero {
    min-height: 340px;
    padding: 3.5rem 0;
  }

  .city-heading {
    font-size: 2.3rem;
  }

  .city-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .city-hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .city-heading {
    font-size: 1.8rem;
  }

  .city-description {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .breadcrumb-wrapper {
    padding: 6px 16px;
  }

  .blur-shape-city,
  .blur-shape-city-2 {
    opacity: 0.6;
  }
}

@media (max-width: 576px) {
  .city-heading {
    font-size: 1.5rem;
  }

  .city-description {
    font-size: 0.85rem;
  }
  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 0.75rem;
  }
}

html {
  scroll-behavior: smooth;
}

  .about-section {
    position: relative;
    
    background:
      radial-gradient(circle at 8% 15%, rgba(205, 3, 1, 0.08) 0%, rgba(205, 3, 1, 0) 42%),
      linear-gradient(180deg, #fffdfd 0%, #f8fafc 100%);
    overflow: hidden;
  }

  .about-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(10, 17, 40, 0.05);
    pointer-events: none;
  }

  .about-content-wrapper {
    position: relative;
    z-index: 2;
  }

  .about-kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #cd0301;
    background: rgba(205, 3, 1, 0.1);
    border: 1px solid rgba(205, 3, 1, 0.22);
    border-radius: 50px;
    padding: 0.45rem 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }

  .about-title {
    color: #0a1128;
    font-size: clamp(1.85rem, 2.8vw, 2.75rem);
    line-height: 1.2;
    font-weight: 800;
  }

  .about-title-icon {
    color: #cd0301;
    vertical-align: middle;
  }

  .brand-accent {
    color: #cd0301;
  }

  .about-desc {
    color: #4f5b77;
    font-size: 1.02rem;
    line-height: 1.8;
  }

  .about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0 1.6rem;
  }

  .about-point {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #1f2a44;
    font-size: 0.92rem;
    font-weight: 600;
  }

  .about-point i {
    color: #cd0301;
    font-size: 1.05rem;
  }

  .about-stats {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
  }

  .about-stat-card {
    min-width: 120px;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    border: 1px solid rgba(10, 17, 40, 0.08);
    box-shadow: 0 10px 22px rgba(10, 17, 40, 0.08);
  }

  .about-stat-number {
    display: block;
    color: #0a1128;
    font-size: 1.18rem;
    line-height: 1.1;
    font-weight: 800;
  }

  .about-stat-label {
    display: block;
    margin-top: 0.2rem;
    color: #5a647e;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  .about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.2rem;
    align-items: center;
  }

  .about-btn {
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #cd0301 0%, #ad0908 100%);
    box-shadow: 0 12px 28px rgba(205, 3, 1, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(205, 3, 1, 0.32);
  }

  .about-call-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 17, 40, 0.08);
    color: #0a1128;
    margin-right: 0.6rem;
  }

  .about-call-number {
    color: #0a1128;
    font-weight: 700;
    text-decoration: none;
  }

  .about-call-number:hover {
    color: #cd0301;
  }

  .about-img-wrapper {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(10, 17, 40, 0.1);
    box-shadow: 0 20px 42px rgba(10, 17, 40, 0.14);
  }

  .about-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10, 17, 40, 0) 45%, rgba(10, 17, 40, 0.2) 100%);
    pointer-events: none;
  }

  .about-img-rectangle-img {
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    transform: scale(1.01);
  }

  .about-proof-badge {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.68rem 0.9rem;
    border-radius: 12px;
    background: rgba(10, 17, 40, 0.88);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    box-shadow: 0 10px 24px rgba(10, 17, 40, 0.32);
    z-index: 3;
  }

  .about-proof-badge i {
    color: #ffce4b;
    font-size: 1.05rem;
  }

  .about-proof-badge strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .about-proof-badge span {
    display: block;
    margin-top: 0.08rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    letter-spacing: 0.2px;
  }

  @media (max-width: 991.98px) {
    .about-section {
      padding: 4rem 0;
    }

    .about-points {
      grid-template-columns: 1fr;
      margin: 1rem 0 1.35rem;
    }

    .about-point {
      padding: 0.68rem 0.72rem;
    }

    .about-img-rectangle-img {
      max-height: 420px;
    }
  }

  @media (max-width: 575.98px) {
    .about-section {
      padding: 3.4rem 0;
    }

    .about-title {
      font-size: 1.7rem;
    }

    .about-desc {
      font-size: 0.98rem;
    }

    .about-stats {
      gap: 0.65rem;
    }

    .about-stat-card {
      min-width: calc(50% - 0.4rem);
      padding: 0.72rem 0.8rem;
    }

    .about-actions {
      gap: 0.85rem 1rem;
    }

    .about-proof-badge {
      left: 0.85rem;
      bottom: 0.85rem;
      padding: 0.58rem 0.72rem;
    }

    .about-img-rectangle-img {
      max-height: 320px;
    }
  }
 .car-relocation-added-section {
    padding: 56px 0;
    background: var(--light-color);
  }

  .car-relocation-added-wrap {
    border: 1px solid var(--gray-border);
    background: var(--gray-light);
    border-radius: 12px;
    padding: 24px;
  }

  .car-relocation-added-kicker {
    display: inline-block;
    background: rgba(227, 11, 11, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(227, 11, 11, 0.18);
    border-radius: 30px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .car-relocation-added-wrap h3 {
    color: var(--dark-color);
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    margin-bottom: 14px;
    font-weight: 700;
  }

  .car-relocation-added-wrap p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
  }

  @media (max-width: 575.98px) {
    .car-relocation-added-section {
      padding: 44px 0;
    }

    .car-relocation-added-wrap {
      padding: 18px;
    }

    .car-relocation-added-wrap p {
      font-size: 14px;
      line-height: 1.72;
    }
  }
  .car-relocation-section {
    padding: 70px 0;
    background: var(--gray-light);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
  }

  .car-relocation-head {
    margin-bottom: 28px;
  }

  .car-relocation-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(227, 11, 11, 0.08);
    border: 1px solid rgba(227, 11, 11, 0.2);
    border-radius: 50px;
    padding: 7px 14px;
    margin-bottom: 12px;
  }

  .car-relocation-head h2 {
    color: var(--dark-color);
    font-size: clamp(1.55rem, 2.7vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0;
  }

  .car-relocation-card,
  .car-relocation-points {
    background: var(--light-color);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 10px 24px rgba(34, 34, 34, 0.06);
  }

  .car-relocation-card p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
  }

  .car-relocation-points {
    background: linear-gradient(180deg, #fff8eb 0%, var(--light-color) 100%);
  }

  .car-relocation-points h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 14px;
    font-weight: 700;
  }

  .car-relocation-points ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }

  .car-relocation-points li {
    display: flex;
    gap: 9px;
    color: #3f4a58;
    line-height: 1.55;
    font-size: 14px;
  }

  .car-relocation-points i {
    color: var(--secondary-color);
    margin-top: 2px;
    flex-shrink: 0;
  }

  @media (max-width: 991.98px) {
    .car-relocation-section {
      padding: 52px 0;
    }
  }

  @media (max-width: 575.98px) {
    .car-relocation-card,
    .car-relocation-points {
      padding: 18px;
    }

    .car-relocation-card p {
      font-size: 14px;
      line-height: 1.7;
    }
  }
 .packzia-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 30px 0;
  }

  .packzia-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
  }

  .packzia-table th {
    background: #2c7a7b;
    color: #fff;
    padding: 18px;
    font-size: 18px;
    text-align: center;
  }

  .packzia-table td {
    padding: 18px;
    font-size: 17px;
    text-align: center;
    border: 1px solid #e5e5e5;
  }

  .packzia-table tr:nth-child(even) {
    background: #fafafa;
  }

  .packzia-table tr:hover {
    background: #eef6f6;
    transition: 0.3s;
  }

/* Mobile overflow fixes for CodeIgniter views */
html,
body {
  max-width: 100%;
}

body {
  overflow-x: hidden;
  overflow-x: clip;
  padding-top: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

.row,
.row > [class*="col-"],
[class*="col-"] {
  min-width: 0;
}

@media (max-width: 767.98px) {
  body {
    padding-top: 0;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-top: 0;
  }

  .sticky-header .nav-main-wrap {
    flex-wrap: nowrap;
    gap: 0.45rem;
    padding-left: 0.55rem !important;
    padding-right: 0.55rem !important;
  }

  .sticky-header .logo-area,
  .sticky-header .logo-brand-link {
    min-width: 0;
    flex: 1 1 auto;
  }

  .sticky-header .logo-image {
    height: 64px !important;
    max-width: min(38vw, 138px);
  }

  .sticky-header .header-right-actions {
    flex: 0 0 auto;
    gap: 0.35rem;
  }

  .sticky-header .top-request-btn {
    padding: 0.48rem 0.62rem;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .sticky-header .hamburger-btn {
    width: 42px;
    height: 42px;
  }

  .portfolio-area .services-brand,
  .hero-split-title,
  .about-title {
    overflow-wrap: anywhere;
  }

  .portfolio-area .portfolio-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-area .portfolio-arrow {
    width: auto;
    max-width: 100%;
    min-width: 0;
    padding: 0 0.65rem;
  }

  .fab-wrapper a,
  .fab-wrappers a {
    max-width: calc(100vw - 18px);
  }
} 

 :root {
    --brand-primary: #cd0301;
    --brand-secondary: #0a1128
  }

  .hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start
  }

  .hero-left-content .breadcrumb-wrapper {
    justify-content: flex-start;
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
    padding: 6px 12px;
    gap: 6px
  }

  @media(max-width:767.98px) {
    .hero-left-content .breadcrumb-wrapper {
      padding: 6px 10px
    }
  }

  .process-section {
    position: relative;
    padding: 5rem 0;
    background: radial-gradient(circle at 10% 10%, rgba(205, 3, 1, .12) 0%, rgba(205, 3, 1, 0) 38%), linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
    overflow: hidden
  }

  .process-section::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(10, 17, 40, .06);
    pointer-events: none
  }

  .process-header {
    margin-bottom: 3rem
  }

  .process-badge {
    display: inline-block;
    padding: .45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(205, 3, 1, .3);
    color: var(--brand-primary, #cd0301);
    background: rgba(205, 3, 1, .12);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px
  }

  .process-title {
    margin-top: .9rem;
    color: var(--brand-secondary, #0a1128);
    font-size: clamp(1.75rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2
  }

  .process-title .text-red {
    color: var(--brand-primary, #cd0301)
  }

  .process-subtitle {
    margin: .75rem auto 0;
    max-width: 680px;
    color: #5a647e;
    font-size: 1.02rem;
    line-height: 1.7
  }

  .process-wrapper {
    padding: 1.5rem 0
  }

  .process-line {
    position: absolute;
    top: 2.7rem;
    left: 9%;
    right: 9%;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(10, 17, 40, .2), rgba(10, 17, 40, .2) 10px, transparent 10px, transparent 18px);
    z-index: 0
  }

  .process-item {
    position: relative;
    z-index: 1
  }

  .process-icon-wrapper {
    width: 96px;
    margin-bottom: 1rem
  }

  .process-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--brand-primary, #cd0301) 0%, #a10301 100%);
    box-shadow: 0 16px 28px rgba(205, 3, 1, .28);
    border: 4px solid #fff;
    transition: transform .25s ease, box-shadow .25s ease
  }

  .process-item:hover .process-icon {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(205, 3, 1, .34)
  }

  .process-step-number {
    margin-top: .7rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-secondary, #0a1128);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .3px;
    box-shadow: 0 8px 14px rgba(10, 17, 40, .22)
  }

  .process-step-title {
    color: var(--brand-secondary, #0a1128);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .55rem
  }

  .process-step-desc {
    color: #5a647e;
    font-size: .92rem;
    line-height: 1.65;
    margin-bottom: 0
  }

  .testimonial-section {
    position: relative;
    padding: 5rem 0;
    background-color: #0f1a33;
    background-image: linear-gradient(135deg, rgba(10, 17, 40, .78) 0%, rgba(161, 109, 108, .52) 100%), url('assets/images/about/why_choose_us.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden
  }

  .testimonial-section::before,
  .testimonial-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none
  }

  .testimonial-section::before {
    width: 280px;
    height: 280px;
    left: -120px;
    bottom: -120px;
    background: rgba(205, 3, 1, .25)
  }

  .testimonial-section::after {
    width: 180px;
    height: 180px;
    right: -40px;
    top: -40px;
    background: rgba(255, 255, 255, .1)
  }

  .testimonial-section .container {
    position: relative;
    z-index: 2
  }

  .testimonial-badge {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    border-radius: 999px;
    padding: .5rem 1rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase
  }

  .testimonial-title {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    font-weight: 800;
    margin-bottom: .7rem
  }

  .testimonial-subtitle {
    color: rgba(255, 255, 255, .8);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7
  }

  .testimonial-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: .35rem;
    scrollbar-width: none
  }

  .testimonial-scroll-wrapper::-webkit-scrollbar {
    display: none
  }

  .testimonial-scroll {
    margin: 0
  }

  .testimonial-scroll>[class*="col-"] {
    min-width: 320px
  }

  .testimonial-card {
    height: 100%;
    padding: 1.65rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(10, 17, 40, .08);
    box-shadow: 0 16px 30px rgba(7, 10, 26, .32);
    transition: transform .25s ease, box-shadow .25s ease
  }

  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 38px rgba(7, 10, 26, .4)
  }

  .testimonial-stars {
    color: #ffb703;
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: .9rem
  }

  .testimonial-text {
    color: #39445f;
    font-size: .98rem;
    line-height: 1.78;
    margin-bottom: 0
  }

  .testimonial-author h6 {
    margin: 0;
    color: var(--brand-secondary, #0a1128);
    font-weight: 700;
    font-size: 1rem
  }

  .testimonial-author small {
    color: #66708a
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-primary, #cd0301) 0%, #a10301 100%);
    box-shadow: 0 10px 18px rgba(205, 3, 1, .28)
  }

  .testimonial-nav {
    display: flex;
    justify-content: center;
    gap: .75rem
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    transition: all .22s ease
  }

  .nav-btn:hover {
    background: #fff;
    color: var(--brand-secondary, #0a1128);
    transform: translateY(-2px)
  }

  .trust-section {
    position: relative;
    padding: 4.8rem 0;
    background: radial-gradient(circle at 12% 16%, rgba(205, 3, 1, .08) 0%, rgba(205, 3, 1, 0) 36%), linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
    overflow: hidden
  }

  .trust-header {
    max-width: 760px;
    margin: 0 auto 2.3rem
  }

  .trust-badge {
    display: inline-block;
    padding: .42rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(205, 3, 1, .28);
    background: rgba(205, 3, 1, .1);
    color: var(--brand-primary, #cd0301);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px
  }

  .trust-title {
    margin-top: .85rem;
    color: var(--brand-secondary, #0a1128);
    font-size: clamp(1.7rem, 2.8vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2
  }

  .trust-title .text-red {
    color: var(--brand-primary, #cd0301)
  }

  .trust-subtitle {
    color: #5a647e;
    line-height: 1.7;
    margin-top: .7rem
  }

  .trust-grid {
    row-gap: 1.1rem
  }

  .trust-item {
    height: 100%
  }

  .trust-card {
    height: 100%;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(10, 17, 40, .08);
    box-shadow: 0 14px 26px rgba(10, 17, 40, .08);
    padding: 1.35rem 1.05rem 1.2rem;
    transition: transform .24s ease, box-shadow .24s ease
  }

  .trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 34px rgba(10, 17, 40, .14)
  }

  .trust-media {
    width: 122px;
    height: 122px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center
  }

  .trust-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block
  }

  .trust-card-title {
    color: var(--brand-secondary, #0a1128);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .65rem
  }

  .trust-card-desc {
    color: #3f4a65;
    font-size: .95rem;
    line-height: 1.62;
    margin-bottom: 0
  }

  .trust-emphasis {
    color: #111827;
    font-weight: 700
  }

  @media(max-width:991.98px) {

    .process-section,
    .testimonial-section,
    .faq-section {
      padding: 4rem 0
    }

    .process-line {
      display: none
    }

    .process-item {
      padding: .75rem;
      border-radius: 16px;
      background: #fff;
      border: 1px solid rgba(10, 17, 40, .08);
      box-shadow: 0 12px 24px rgba(10, 17, 40, .08)
    }

    .testimonial-scroll>[class*="col-"] {
      min-width: 290px
    }
  }

  @media(max-width:575.98px) {

    .process-section,
    .testimonial-section,
    .faq-section,
    .trust-section {
      padding: 3.4rem 0
    }

    .process-title,
    .testimonial-title {
      font-size: 1.65rem
    }

    .process-step-desc {
      font-size: .9rem
    }

    .testimonial-card {
      padding: 1.3rem
    }

    .testimonial-scroll>[class*="col-"] {
      min-width: 85vw
    }

    .faq-title {
      font-size: 1.62rem
    }

    .faq-answer {
      font-size: .92rem
    }

    .trust-card {
      padding: 1.2rem .9rem 1.05rem
    }

    .trust-media {
      width: 108px;
      height: 108px
    }

    .trust-card-title {
      font-size: 1.12rem
    }

    .trust-card-desc {
      font-size: .9rem
    }
  }

   .packzia-table-wrap {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch
    }

    .packzia-table {
      width: 100%;
      border-collapse: collapse;
      font-family: Arial, sans-serif;
      margin: 40px 0;
      min-width: 760px
    }

    .packzia-title {
      text-align: center;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 15px
    }

    .packzia-table th {
      background: #e30b0b;
      color: #fff;
      padding: 18px;
      font-size: 18px;
      text-align: center
    }

    .packzia-table td {
      padding: 18px;
      font-size: 17px;
      text-align: center;
      border: 1px solid #e5e5e5;
      white-space: nowrap
    }

    .packzia-table tr:nth-child(even) {
      background: #fafafa
    }

    .packzia-table tr:hover {
      background: #eef6f6;
      transition: .3s
    }

    @media(max-width:767.98px) {
      .packzia-table {
        min-width: 0;
        margin: 20px 0 30px
      }

      .packzia-table thead {
        display: none
      }

      .packzia-table,
      .packzia-table tbody,
      .packzia-table tr,
      .packzia-table td {
        display: block;
        width: 100%
      }

      .packzia-table tr {
        border: 1px solid #d8dee8;
        border-radius: 12px;
        background: #fff;
        margin-bottom: 14px;
        box-shadow: 0 4px 10px rgba(12, 34, 67, .06)
      }

      .packzia-table td {
        text-align: left;
        white-space: normal;
        border: 0;
        border-bottom: 1px solid #edf1f6;
        padding: 10px 14px;
        font-size: 15px
      }

      .packzia-table td:last-child {
        border-bottom: 0
      }

      .packzia-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        font-size: 12px;
        color: #cd0301;
        margin-bottom: 4px;
        letter-spacing: .2px
      }

      .packzia-title {
        font-size: 24px;
        margin-top: 12px
      }
    }

    .mv-split-hero {
    position: relative;
    overflow: hidden;
    min-height: auto !important
  }

  .mv-carousel-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none
  }

  .mv-split-hero .carousel-inner {
    height: 100%
  }

  /* .mv-split-hero .hero-bg {
    width: 100%;
    height: 100%;
    background-image: url('<?= base_url('assets/images/location/' . $st . '.webp') ?>');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed
  } */

  .hero-visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(7, 12, 28, .72) 0%, rgba(10, 17, 40, .58) 50%, rgba(205, 3, 1, .42) 100%)
  }

  .hero-stage,
  .hero-main,
  .hero-visual-col,
  .hero-form-col {
    position: relative;
    z-index: 2
  }

  .hero-stage {
    min-height: 0 !important;
    display: block !important;
    align-items: flex-start !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important
  }

  .hero-main {
    width: min(100%, 1460px);
    margin: 0 auto;
    overflow: hidden;
    background: transparent;
    padding: 8px clamp(12px, 4vw, 44px);
    text-align: center
  }

  .hero-left-content {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    max-width: 100%;
    min-width: 0
  }

  .hero-form-col {
    display: flex;
    justify-content: flex-end
  }

  .hero-form-col>* {
    width: 100%
  }

  @media(max-width:767.98px) {
    .mv-carousel-container {
      position: absolute;
      inset: 0
    }

    .mv-split-hero .hero-bg {
      height: 100%;
      background-attachment: scroll
    }

    .hero-visual-overlay {
      position: absolute;
      inset: 0
    }

    .hero-stage {
      min-height: 0 !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important
    }

    .hero-main {
      padding: 8px 10px !important;
      --bs-gutter-x: 0
    }

    .hero-main>[class*="col-"] {
      max-width: 100%;
      min-width: 0
    }

    .hero-left-content .breadcrumb-wrapper {
      max-width: 100%;
      flex-wrap: wrap;
      white-space: normal
    }
  }

  :root {
        --city-card-bg: #ffffff;
        --city-card-border: #e6e9ee;
        --city-card-hover-bg: #f8fafc;
        --city-text: #1f2937;
        --city-accent: #c0392b;
        --city-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
    }

    .our-service-page {
        background-attachment: fixed;
        padding: 40px 0;
    }

    .feature-content-section {
        padding: 6px 0 12px;
        overflow-x: clip;
    }

    .feature-content-section > .row {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .city-card-link {
        border-radius: 14px;
        max-width: 100%;
    }

    .city-card-link:focus-visible {
        outline: 2px solid rgba(192, 57, 43, 0.35);
        outline-offset: 3px;
        border-radius: 14px;
    }

    .city-card {
        border-radius: 14px;
        background: var(--city-card-bg);
        border: 1px solid var(--city-card-border);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
        box-shadow: 0 3px 10px rgba(16, 24, 40, 0.06);
        cursor: pointer;
        transform: translateY(0);
        max-width: 100%;
    }

    .city-card:hover {
        background-color: var(--city-card-hover-bg);
        border-color: #d8dde6;
        box-shadow: var(--city-shadow);
        transform: translateY(-5px);
    }

    .city-card .card-body {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 18px 16px;
    }


    .city-name h5 {
        font-size: 15px;
        font-weight: 600;
        color: var(--city-text);
        margin: 0;
        line-height: 1.45;
        letter-spacing: 0.1px;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .city-name h5 i {
        color: var(--city-accent);
        opacity: 0.9;
    }

    .city-card:hover .city-name h5 {
        color: #111827;
    }

    @media (max-width: 576px) {
        .city-card .card-body {
            padding: 14px 12px;
        }

        .city-name h5 {
            font-size: 13px;
            line-height: 1.35;
        }
    }
    .local-city:hover{color:#00f!important}.text-dec a{text-decoration:none}.text-dec span{line-height:2}

  
