:root {
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  /* Color Palette */
  --color-primary: #2563eb;
  --color-secondary: #64748b;
  --color-accent: #14ad4c;
  --color-background: #f1f5f9;
  --color-dark: #1e293b;
  --color-light: #ffffff;
  --color-muted: #94a3b8;
  --color-reddish: #e63946;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.home-page {
  padding-top: 73px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s ease;
}

/* Utility */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-muted);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* === TOP CONTACT BAR === */
.top-contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  color: var(--color-light);
  font-size: 0.8rem;
  z-index: 1002;
  /* highest */
  padding: 6px 20px;
  /* add padding for height */
  display: flex;
  justify-content: space-between;
  /* this makes items go to corners */
  align-items: center;
  gap: 50px;
  /* increased gap */
  box-sizing: border-box;
}

.container span a {
  display: inline;
  /* important */
  color: inherit;
  /* keeps same color */
  text-decoration: none;
  /* remove underline if needed */
}

.top-contact-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  /* to keep in one line */
  width: 100%;
}


/* === HEADER === */
.header {
  position: fixed;
  top: 42px;
  /* Adjust based on height of .top-contact-bar */
  left: 0;
  right: 0;
  z-index: 1001;
  background-color: var(--color-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 60px;
  margin-left: 38px;
}

/* === NAVIGATION === */
.nav {
  flex: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.nav-links li a {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  text-decoration: none;
  color: var(--color-primary);
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* 👇 Half underline effect */
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links li a.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-links li a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(1);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {

  .nav-links li a::after,
  .nav-links li a.active::after {
    left: 28px;
    width: 10%;
  }
}

/* === ACTION BUTTONS === */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 12px;
}

.phone-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-primary);
}

.phone-btn:hover {
  color: var(--color-accent);
}

.contact-btn {
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 8px 15px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

.hamburger {
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
}

/* === SCROLLING BANNER === */
.banner {
  position: fixed;
  top: calc(24px + 106px);
  /* top-contact-bar height + header height */
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-primary);
  color: var(--color-light);
  font-weight: 500;
  padding: 0 10px;
  font-size: 12px;
  box-sizing: border-box;
}

.banner marquee {
  white-space: nowrap;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: var(--color-light);
    font-size: 0.7rem;
    /* or 10px */
    z-index: 1002;
    padding: 4px 12px;
    /* less padding for smaller screens */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    /* reduced gap */
    box-sizing: border-box;
  }

  .email-hidden {
    display: none;
    /* Hide email on mobile */
  }

  .header {
    position: fixed;
    top: 36px;
    /* Adjusted for smaller top-contact-bar height */
    left: 0;
    right: 40;
    z-index: 1001;
    background-color: var(--color-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    /* reduced padding */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
  }

  .banner {
    position: fixed;
    top: calc(28px + 60px);
    /* top-contact-bar height + header height */
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-primary);
    color: var(--color-light);
    font-weight: 500;
    padding: 10px 0 10px;
    font-size: 12px;
    box-sizing: border-box;
  }

  /* Keep your other mobile styles here */

  .logo img {
    width: 100%;
    height: 40px;
    /* smaller height */
    margin-left: 0;
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: var(--color-light);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 12px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
}


/* Hero section layout */
#hero {
  width: 100%;
  padding: 20px;
  margin-top: 4rem;
}

.hero {
  display: flex;
  flex-direction: column;
  /* Stack image on top, text below */
  align-items: center;
  padding: 0 4rem 4rem;
}

.cards-section.image-only {
  width: 80%;
  margin-bottom: 20px;
  animation: fadeInRight 1.2s ease-out forwards;
  opacity: 0;
  /* For animation */
}

.relocation-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Text Content Below Image */
.hero-content {
  width: 70%;
}

.text-section {
  text-align: left;
  animation: fadeInUp 1.5s ease-out forwards;
  opacity: 0;
  /* For animation */
}

.text-section h1 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: #1e293b;
}

.text-section p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #334155;
}

.text-section span {
  font-weight: bold;
  color: #ef4444;
}

/* Keyframe animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    padding: 0;
  }

  #hero {
    padding: 10px;
  }

  .cards-section.image-only {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 2rem;
  }

  .relocation-image {
    margin-bottom: 2rem;
  }

  .hero-content {
    width: 100%;
    padding: 0 1rem;
  }

  .floating-form {
    margin-top: 1rem;
    position: relative;
  }
}

/* ======== Quote selection (compact version) =============== */
.quote-widget {
  max-width: 1100px;
  margin: -20px auto 40px;
  background: var(--color-background);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  padding: 1.2rem;
  position: relative;
  z-index: 10;
  font-size: 0.85rem;
}

.quote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tabs {
  display: flex;
  gap: 0.3rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  background: var(--color-light);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 70px;
}

.tab i {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--color-dark);
}

.tab span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-dark);
}

.tab.active {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.tab.active i,
.tab.active span {
  color: white;
}

.quote-contact {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: bold;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.animated-icon {
  font-size: 1.2rem;
  animation: pulse 1.8s infinite;
  filter: drop-shadow(0 0 6px var(--color-primary));
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-wrapper h3 {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.text-highlight {
  color: var(--color-primary);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.form-grid input {
  padding: 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--color-muted);
  font-size: 0.8rem;
}

.form-wrapper button[type="submit"] {
  background-color: var(--color-primary);
  color: white;
  padding: 0.5rem 1.1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-wrapper button[type="submit"]:hover {
  background-color: var(--color-accent);
}

@media (max-width: 768px) {
  .quote-widget {
    border-radius: 0;
    box-shadow: none;
  }

  .quote-contact {
    display: none;
  }
}

/* === Get In Touch Section === */
.get-in-touch-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background-color: var(--color-background);
}

.carousel-container {
  flex: 1 1 50%;
  max-width: 500px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-images {
  display: flex;
  animation: slideImages 12s infinite ease-in-out;
}

.carousel-images img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  height: 300px;
}

@keyframes slideImages {

  0%,
  20% {
    transform: translateX(0);
  }

  25%,
  45% {
    transform: translateX(-100%);
  }

  50%,
  70% {
    transform: translateX(-200%);
  }

  75%,
  95% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(0);
  }
}

.contact-info-box {
  flex: 1 1 40%;
  padding: 2rem;
  background: var(--color-light);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.contact-info-box p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-secondary);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.contact-list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.contact-list i {
  margin-right: 10px;
  color: var(--color-primary);
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.2rem;
  color: var(--color-dark);
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--color-accent);
}

/* === Responsive === */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }

  .contact-form .form-group {
    flex: 1 1 100%;
  }
}


/* === Map Section === */
.contact-map-section {
  padding: 60px 20px;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
}

.contact-map-card {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
}

.map-container {
  flex: 1 1 50%;
  min-height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.address-container {
  flex: 1 1 50%;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
}

.address-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.address-container p {
  font-size: 16px;
  margin-bottom: 12px;
  color: #555;
}

.address-container i {
  color: var(--color-primary);
  margin-right: 10px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons i {
  color: var(--color-reddish);
}

.social-icons a {
  margin-right: 15px;
  color: var(--color-reddish);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .contact-map-section {
    padding: 0;
    margin: 0;
  }

  .contact-map-card {
    border-radius: 0;
    box-shadow: none;
  }

  .address-container {
    padding: 20px;
  }
}


/* === Achievements Carousel Styles === */
/* Flip Card Mosaic */

.section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}

.achievements-mosaic {
  padding: 0 0 40px;
}

.mosaic {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  justify-content: center;
  max-width: 800px;
  /* or any width that suits your design */
  margin: 0 auto;
}

.flip-front i {
  color: var(--color-primary);
  /* or any color like #007bff */
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}


.flip-card {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  transition: transform .6s;
  transform-style: preserve-3d;
  height: 180px;
}

.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 1rem;
  display: grid;
  place-content: center;
  padding: 1rem;
  text-align: center;
}

.flip-front {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
}

.flip-back {
  background: var(--color-primary);
  color: #fff;
  transform: rotateY(180deg);
}

.flip-front img {
  width: 48px;
  height: 48px;
  margin-bottom: .75rem;
}

/* === Customer Feedback Video Section === */
.feedback-video-section {
  padding: 4rem 2rem;
  margin: 0 auto;
  background-color: var(--color-light);
  text-align: center;
  font-family: var(--font-primary);
}

.feedback-heading {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.feedback-subtext {
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* apply only on phone screens */
@media (max-width: 600px) {
  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    /* adjust for phone */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    /* Shorts vertical ratio */
    aspect-ratio: 9 / 16;
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
  }
}

/* === Premium Services Section === */
.premium-services {
  padding: 4rem 2rem;
  background-color: var(--color-light);
  text-align: center;
}

.premium-services .section-title {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-secondary);
}

.premium-services .section-subtitle {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-family: var(--font-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.service-card {
  background-color: var(--color-background);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  transition: all 0.3s ease;
  cursor: default;
}

.service-card:hover {
  background-color: var(--color-primary);
  color: var(--color-light);
  transform: translateY(-4px);
}

/* === Trust Section === */
.trust-section {
  padding: 3rem 1rem;
  background-color: var(--color-light);
}

.trust-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-box {
  background-color: var(--color-background);
  border-radius: 12px;
  padding: 1rem;
  width: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  text-align: center;
}

.trust-box:hover {
  transform: translateY(-5px);
  background-color: var(--color-light);
}

.trust-box img {
  width: 40px;
  margin-bottom: 0.5rem;
}

/* === Cities Section === */
.cities-section {
  padding: 3rem 1rem;
  background-color: var(--color-background);
}

/* Trust icon styling */
.trust-box i {
  font-size: 2.5rem;
  /* adjust size as needed */
  color: var(--color-primary);
  margin-bottom: .5rem;
  display: block;
  /* keeps the icon above the text */
  transition: color .3s ease;
}

.trust-box:hover i {
  color: var(--color-accent);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.cities-grid a {
  background-color: var(--color-light);
  padding: 1rem;
  border-radius: 10px;
  color: var(--color-primary);
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s, color 0.3s;
}

/* === About Section === */
.about-section {
  padding: 3rem 2rem;
  /* balanced padding */
  background-color: var(--color-background);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  /* tighter gap */
  align-items: center;
  justify-content: center;
  max-width: 900px;
  /* narrower */
  margin: 0 auto;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  width: 260px;
  /* smaller image */
}

.about-text {
  flex: 1;
  min-width: 240px;
  padding: 0.8rem;
}

.about-text h2 {
  font-size: 1.2rem;
  /* smaller heading */
  margin-bottom: 0.6rem;
  color: var(--color-dark);
}

.about-text p {
  font-size: 0.8rem;
  /* smaller paragraph */
  margin-bottom: 0.8rem;
  line-height: 1.4;
  color: var(--color-secondary);
}

.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list li {
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  /* smaller list items */
  color: var(--color-dark);
}

.service-list a {
  color: var(--color-primary);
  font-size: 0.78rem;
}

.service-list a:hover {
  color: var(--color-accent);
}

/* 📱 Mobile (small screens) */
@media (max-width: 600px) {
  .about-section {
    padding: 2rem 1.2rem;
  }

  .about-container {
    flex-direction: column;
    gap: 0.8rem;
  }

  .about-image img {
    width: 180px;
    /* very compact image */
  }

  .about-text h2 {
    font-size: 1rem;
  }

  .about-text p {
    font-size: 0.75rem;
  }

  .service-list li,
  .service-list a {
    font-size: 0.72rem;
  }
}

/* =======reviews========= */
.review-section {
  background: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

.review-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Default: 2 columns */
  gap: 1.5rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.review-card {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #ddd;
  text-align: left;
  transition: all 0.3s ease;
}

.reviewer-name {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.review-title {
  font-weight: 500;
  color: #444;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.75rem;
}

.review-stars {
  color: #ffaa00;
  font-size: 1rem;
}

.reviews-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
}

/* Show only first 8 cards (2 cols × 4 rows) by default */
.reviews-cards-stack .review-card {
  display: none;
}

.reviews-cards-stack .review-card:nth-child(-n+8) {
  display: block;
}

/* Show all when class is added */
.reviews-cards-stack.show-all .review-card {
  display: block;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Adjust depending on total track width */
}

/* ===========FAQ================ */
.faq-section {
  background-color: #f8fafc;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  font-family: var(--font-primary);
  color: var(--color-dark, #1e293b);
}

/* FAQ container spacing */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Individual FAQ */
.faq-item {
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.faq-item:hover {
  background-color: #e2e8f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Toggle button */
.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f172a;
  cursor: pointer;
}

.faq-icon {
  font-size: 16px;
  color: var(--color-primary, #2563eb);
  transition: transform 0.3s ease;
}

/* FAQ answer */
.faq-answer {
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Show More Button */
.faq-show-more-wrapper {
  text-align: center;
  margin-top: 32px;
}

.show-more-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--color-primary, #2563eb);
  color: #fff;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.show-more-btn:hover {
  background-color: var(--color-accent, #14ad4c);
  transform: translateY(-2px);
}

/* Hide helper class */
.hidden {
  display: none !important;
}


@media (max-width: 768px) {
  .faq-section {
    border-radius: 0;
  }
}


/* ========locations========== */
.location-section {
  margin: 1.5rem;
  padding: 40px 20px;
  background-color: var(--color-light);
  font-family: var(--font-primary);
  color: var(--color-dark);
}

.location-heading {
  font-size: 20px;
  color: var(--color-secondary);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-muted);
  display: inline-block;
  padding-bottom: 4px;
}

.location-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.location-columns ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.location-columns li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.location-columns li:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .location-section {
    margin: 0;
  }
}



/* ==========footer=========== */
.footer {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: var(--color-light);
  font-family: var(--font-primary);
  font-size: 13px;
  padding: 40px 20px 10px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-address {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-light);
}

.footer-columns {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.footer-column h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--color-light);
  border-bottom: 1px solid var(--color-muted);
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul a {
  margin: 5px 0;
  color: var(--color-light);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-column ul a:hover {
  color: var(--color-primary);
}

/* Bottom footer */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--color-muted);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--color-light);
}

.footer-links {
  margin: 10px 0;
}

.footer-links a {
  font-size: 12px;
  color: var(--color-light);
  margin: 0 5px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.payments {
  margin-bottom: 10px;
}

.payments i {
  font-size: 20px;
  margin: 0 8px;
  color: white;
  opacity: 0.8;
}

.footer-social {
  margin-top: 8px;
}

.footer-social a {
  color: var(--color-light);
  margin: 0 6px;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    padding: 0 10px;
  }

  .footer-brand {
    align-self: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }

  .footer-column {
    padding: 0 5px;
  }

  .footer-column h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .footer-column ul li {
    font-size: 12px;
    margin: 4px 0;
  }

  .footer-logo {
    width: 80px;
  }

  .footer-bottom {
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
  }

  .payments i {
    font-size: 20px;
    margin: 0 6px;
  }

  .social-icons a {
    font-size: 14px;
    margin: 0 6px;
  }

  .footer-brand {
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

}


/* =============steps to get quote========== */
.marquee {
  position: fixed;
  top: 72px;
  /* Adjust depending on header height */
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--color-primary);
  color: var(--color-light);
  font-weight: 500;
  padding: 8px 0;
}

.steps-section {
  background-image: url('./images/banner1.jpeg');
  /* Update this path if needed */
  background-size: cover;
  background-position: center;
  position: relative;
  font-family: var(--font-primary);
  color: var(--color-light);
  overflow: hidden;
}

/* Moving banner */
.moving-banner {
  background-color: var(--color-primary);
  color: white;
  white-space: nowrap;
  overflow: hidden;
  font-size: 16px;
  padding: 8px 0;
}

.banner-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}

.banner-track span {
  display: inline-block;
  margin-right: 50px;
  font-weight: 500;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Content overlay */
.steps-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  text-align: center;
}

.steps-overlay h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

/* Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards */
.step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: left;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon-quote {
  font-size: 1.8rem;
  color: var(--color-reddish);
  margin-bottom: 15px;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--color-light);
}

.step-card p {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.6;
}


/* ==============about_page______ */
.about-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  /* CENTER vertically */
  padding: 40px 0;
  background-color: var(--color-light);
}

/* Static image box */
.photo-slider {
  max-width: 100%;
  overflow: hidden;
  animation: fadeInRight 1s ease-in-out;
}

.responsive-img {
  width: 80%;
  display: flex;
  margin: 0 auto;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.responsive-img:hover {
  transform: scale(1.03);
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  .about-content {
    padding-right: 0;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 13px;
  }

  .btn-enquire {
    width: 100%;
    text-align: center;
  }
}

.about-content {
  flex: 1;
  font-size: 15px;
  color: var(--color-secondary);
  padding-right: 2rem;
  animation: fadeInLeft 1s ease-in-out;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50%;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
  animation: underlineGrow 1s ease forwards;
}

.about-content p {
  margin-bottom: 14px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInText 1s ease-in-out forwards;
  animation-delay: 0.4s;
}

.key-points {
  margin: 18px 0;
  list-style: none;
  padding-left: 0;
}

.key-points li {
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.btn-enquire {
  display: inline-block;
  background-color: var(--color-accent);
  color: #fff;
  padding: 8px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
  font-size: 12px;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-enquire:hover {
  background-color: var(--color-primary);
  transform: scale(1.05);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGrow {
  from {
    width: 0;
  }

  to {
    width: 50%;
  }
}

/* Our Services */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--color-primary);
  margin: 1rem;
}

.service-scroll-wrapper {
  margin: 0 -10px;
  /* Pull to screen edge */
  overflow-x: auto;
  padding: 0 10px;
  /* Match your internal .service-boxes padding */
}

.service-boxes {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  scroll-snap-type: x mandatory;
  scroll-padding: 10px;
  /* So first item is not cut */
  padding: 20px 0;
  overflow-x: auto;
}

.service-boxes::-webkit-scrollbar {
  display: none;
}

.service-item {
  flex: 0 0 auto;
  width: 130px;
  height: 165px;
  text-align: center;
  font-size: 12px;
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
  padding: 10px;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent);
}

.service-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 8px;
}

.service-item a {
  display: block;
  font-weight: 500;
  color: var(--color-dark);
  font-size: 13px;
}

.service-item a:hover {
  text-decoration: underline var(--color-dark);
}

.service-boxes::-webkit-scrollbar {
  display: none;
}

.service-boxes {
  -ms-overflow-style: none;
  /* IE/Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Comparison table  */
.service-comparison-table {
  padding: 0 20px;
  background-color: var(--color-background);
  margin: 30px 0;
}

.section-title {
  text-align: center;
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.6fr;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  font-size: 13px;
  background-color: #fff;
}

.compare-head {
  background: var(--color-primary);
  color: white;
  padding: 10px 8px;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.compare-feature,
.compare-other,
.compare-gati {
  padding: 10px 8px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;

}

.compare-gati,
.compare-feature {
  background-color: var(--color-bg);
  font-weight: 500;
  color: var(--color-dark);
}

/* Font Awesome icon styles */
.compare-feature i {
  color: var(--color-primary);
}

.text-green {
  color: var(--color-accent);
}

.text-red {
  color: var(--color-reddish);
}

/* our partners */
.partners {
  background-color: var(--color-background);
  padding: 0 20px;
  padding-bottom: 40px;
  text-align: center;
}

.partners .section-title {
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.partner-logos::-webkit-scrollbar {
  display: none;
}

.partner-logos {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.partner-logos img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 200px;
  max-height: 100px;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.partner-logos img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nationwide {
  background-color: var(--color-background);
  margin: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* Scroll Wrapper (with hidden scrollbar) */
.states-scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.states-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.states-scroll-track {
  display: flex;
  animation: autoScroll 30s linear infinite;
  width: max-content;
}

.scroll-content {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(1, 1fr);
  /* 1 row for international layout */
  gap: 16px 20px;
}

.state-box {
  width: 120px;
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.state-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent);
}

.state-box img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.state-box span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 6px;
  color: var(--color-dark);
  background: var(--color-light);
}

@keyframes autoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.states-scroll-track {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(1, 1fr);
  gap: 16px 20px;
  padding: 10px 0;
  width: max-content;

  animation: autoScroll 40s linear infinite;
}


/* Responsive Tweak */
@media (max-width: 480px) {
  .state-box {
    width: 100px;
  }

  .state-box img {
    height: 70px;
  }

  .state-box span {
    font-size: 12px;
  }
}

/* why choose us  */
.why-choose {
  background: var(--color-light);
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 32px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.feature-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.5;
}


/* brands that trust us  */
.trusted-brands-banner {
  padding: 0px 20px 40px;
  background: var(--color-background);
  text-align: center;
}

.trusted-brands-banner .section-title {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease-in-out;
}

.brand-item img {
  height: 50px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.brand-item img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-divider {
  border: none;
  border-top: 1px solid var(--color-muted);
  margin: 40px auto;
  max-width: 80%;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--color-muted);
  margin: 40px auto;
  max-width: 80%;
}

/* get in touch  */

.get-in-touch-boxed {
  padding: 0 20px 40px 20px;
  background-color: var(--color-background);
  text-align: center;
}

.get-in-touch-boxed .section-title {
  color: var(--color-primary);
  font-size: 22px;
  margin-bottom: 4px;
}

.get-in-touch-boxed .subtitle {
  font-size: 13px;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

/* Contact card box */
.contact-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-light);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
}

/* Left info */
.contact-left {
  flex: 1 1 50%;
  background-color: #f9fafb;
  padding: 30px;
  font-size: 13px;
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.contact-left h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-left i {
  color: var(--color-accent);
  margin-right: 10px;
}

/* Right form */
.contact-right {
  flex: 1 1 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.contact-right .form-row {
  display: flex;
  gap: 10px;
}

.contact-right input,
.contact-right textarea {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--color-muted);
  border-radius: 4px;
  font-size: 13px;
  background-color: #fff;
  color: var(--color-dark);
}

.contact-right button {
  align-self: flex-start;
  padding: 8px 16px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-right button:hover {
  background-color: var(--color-accent);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
    padding: 20px;
  }
}

/* =======FAQ PAGE ======= */
/* reachout */
/* Section Container */
.reachout-container {
  padding: 40px 20px;
  background-color: var(--color-background);
  text-align: center;
}

/* Heading and Subtitle */
.reachout-header {
  color: var(--color-primary);
  font-size: 24px;
  margin-bottom: 6px;
}

.reachout-tagline {
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

/* Form Container */
.reachout-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

/* Input Row (2 fields) */
.input-pair {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Inputs & Textarea */
.input-element {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--color-muted);
  border-radius: 6px;
  font-size: 14px;
  background-color: #fff;
  color: var(--color-dark);
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s ease;
}

.input-element:focus {
  border-color: var(--color-primary);
  outline: none;
}

/* Submit Button */
.action-btn {
  align-self: flex-start;
  padding: 10px 20px;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.action-btn:hover {
  background-color: var(--color-accent);
}

/* Responsive Behavior */
@media (max-width: 600px) {
  .input-pair {
    flex-direction: column;
  }

  .action-btn {
    width: 100%;
    text-align: center;
  }
}

.faq-hero {
  width: 100%;
  height: 300px;
  background-image: url('./images/banner3.jpeg');
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(4px);
  /* Apply blur */
  background: rgba(0, 0, 0, 0.4);
  /* Optional dark overlay */
  z-index: 1;
}

.faq-hero-overlay {
  position: relative;
  z-index: 2;
  padding-left: 50px;
  max-width: 600px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.faq-hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-hero-overlay p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-cards-stack {
  position: absolute;
  right: 60px;
  top: 40%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 180px 180px;
  grid-template-rows: 110px 110px;
  gap: 16px;
  z-index: 2;
}

@media (max-width: 768px) {
  .faq-hero-overlay {
    padding-left: 20px;
  }
}

/* Card base */
.fcard {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hover effect */
.fcard:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Card positions */
.faq-cards-stack {
  display: grid;
  grid-template-columns: 180px 180px;
  grid-auto-rows: 130px;
  gap: 14px;
  margin-top: 44px;
  /* space below headline */
}


.fcard-one {
  grid-column: 1;
  grid-row: 1;
}

.fcard-two {
  grid-column: 1;
  grid-row: 2;
}

.fcard-three {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* Floating animation */
@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .faq-cards-stack {
    display: none;
  }
}

/* quick section overview  */
.split-info-section {
  display: flex;
  gap: 60px;
  padding: 60px 5%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
}

.info-left {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional hover effect */
.info-left:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.info-left h2 {
  font-size: 1.5rem;
  /* from 2.2rem */
}

.info-left p {
  font-size: 0.7rem;
  /* from 1rem */
}

.info-right h4 {
  font-size: 1rem;
  /* from 1.1rem */
}

.info-right p {
  font-size: 0.85rem;
  /* from 0.95rem */
}

.show-more-btn,
.faq-action-btn {
  margin-top: 20px;
  background-color: var(--color-primary);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.show-more-btn:hover,
.faq-action-btn:hover {
  background-color: var(--color-accent);
}

.info-right {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.info-right img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.info-right h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-right p {
  font-size: 0.95rem;
  color: #555;
}


/* Animation keyframes */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation */
.info-left,
.info-right {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}

.info-left {
  animation-name: fadeSlideUp;
  animation-delay: 0.2s;
}

.info-right {
  animation-name: fadeSlideUp;
  animation-delay: 0.5s;
}

/* Modal Overlay & Box */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(2px);
  animation: fadeIn 0.3s ease forwards;
}

.modal-boxed {
  background: #fff;
  max-width: 900px;
  width: 95%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: scaleIn 0.4s ease forwards;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--color-dark);
  cursor: pointer;
}

.hidden {
  display: none !important;
}


/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0.9);
    opacity: 0
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}


/* =============reviews============== */
.reviews-hero-img {
  background-image: url('./images/banner2.jpeg');
  /* Replace with your desired image path */
}

/* === Reviews Section === */
.reviews-hero {
  width: 100%;
  background: var(--color-background);
  padding: 40px 16px;
  font-family: 'Poppins', sans-serif;
}

.reviews-hero-overlay {
  max-width: 1100px;
  margin: 0 auto 32px;
  text-align: center;
  padding: 0 16px;
}

.reviews-hero-content h1 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.reviews-hero-content p {
  font-size: 0.95rem;
  color: var(--color-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Grid layout */
.reviews-cards-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Individual card */
.review-card {
  background-color: var(--color-light);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.review-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.review-text {
  font-size: 0.85rem;
  color: var(--color-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Rating Stars */
.review-stars {
  font-size: 0.85rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-stars i {
  font-size: 0.9rem;
  color: var(--color-primary);
}

.review-stars .rating {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-left: 6px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .reviews-hero-content h1 {
    font-size: 1.5rem;
  }

  .reviews-hero-content p {
    font-size: 0.9rem;
  }

  .review-card {
    padding: 14px 16px;
  }

  .review-text,
  .review-title,
  .reviewer-name {
    font-size: 0.83rem;
  }
}

@media (max-width: 480px) {
  .reviews-hero-content h1 {
    font-size: 1.3rem;
  }

  .reviews-hero-content p {
    font-size: 0.85rem;
  }

  .review-card {
    font-size: 0.8rem;
    padding: 12px 14px;
  }

  .review-stars i {
    font-size: 0.8rem;
  }

  .review-stars .rating {
    font-size: 0.75rem;
  }
}

.write-review-section {
  background: var(--color-background);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-form {
  background: var(--color-light);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--color-dark);
  text-align: center;
}

.section-subtext {
  font-size: 1rem;
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.5;
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.review-form input[type="text"],
.review-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 0.95rem;
  background: var(--color-light);
  color: var(--color-dark);
  transition: border-color 0.2s ease;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}

textarea {
  resize: vertical;
}

.star-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.star-input label {
  font-weight: 500;
  color: var(--color-dark);
}

.star-rating i {
  font-size: 1.5rem;
  color: var(--color-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.star-rating i.selected {
  color: var(--color-accent);
}

.submit-btn {
  background-color: var(--color-primary);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #1e40af;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .review-form {
    padding: 25px 18px;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .section-subtext {
    font-size: 0.95rem;
  }

  .star-rating i {
    font-size: 1.3rem;
  }
}


/* services page card  */

.service-highlights-section {
  position: relative;
  background: #f8f9fa;
  padding: 60px 20px;
  overflow: hidden;
}

.blob-shape-left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  /* adjust as needed */
  z-index: 0;
}

.blob-shape-left img {
  height: 100%;
  width: auto;
  object-fit: cover;
  opacity: 0.1;
  /* Optional: softer look */
}

.container {
  position: relative;
  z-index: 1;
  padding: 8px;
}

.container i {
  margin-right: 10px;
}

.section-title-page {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  color: #333;
}

.section-title-page::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  /* Start from center */
  transform: translateX(-50%);
  /* Move back by half of width */
  height: 3px;
  width: 30%;
  background-color: var(--color-primary);
  /* green or your theme color */
  border-radius: 2px;
}

.section-title-wrapper {
  text-align: center;
}

.service-layout {
  display: flex;
  padding-left: 100px;
  gap: 80px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

/* Left side (icon list) */
.service-grid {
  flex: 0 0 320px;
  margin-top: 40px;
}

/* Grid: always 3 icons per row inside the narrow column */
.service-grid ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 3 icons per row */
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-description h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}


/* Right side (description box) */
.service-description {
  flex: 1;
  background: #0066ff;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  min-height: 60px;
  max-width: 300px;
}

.service-grid li {
  background: #ffffff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-grid li i {
  font-size: 20px;
  color: #0066ff;
}

.service-grid li span {
  font-size: 10px;
  margin-top: 6px;
  color: #333;
}

.service-grid li:hover,
.service-grid li.active {
  background: #0066ff;
  color: #fff;
}

.service-grid li:hover i,
.service-grid li:hover span,
.service-grid li.active i,
.service-grid li.active span {
  color: #fff;
}

.service-description .desc {
  display: none;
}

.service-description .desc.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .service-grid ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 3 icons per row */
    gap: 16px;
    list-style: none;
  }

  .service-layout {
    padding-left: 0;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
  }
}


/* steps of booking */

.booking-process-vertical {
  background: #f9fafc;
  padding: 40px 15px;
  font-family: 'Poppins', sans-serif;
}

.booking-heading {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 35px;
  color: var(--color-dark);
}

.booking-step {
  display: flex;
  gap: 15px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 15px 20px;
  align-items: flex-start;
  margin-bottom: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.step-icon {
  font-size: 18px;
  color: var(--color-primary);
  background: #eef3f8;
  padding: 12px;
  border-radius: 50%;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--color-dark);
}

.step-content p {
  font-size: 0.85rem;
  color: var(--color-secondary);
  line-height: 1.4;
}

.step-content i {
  color: var(--color-accent);
  margin-right: 6px;
}

@media (max-width: 768px) {
  .booking-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .step-icon {
    margin-bottom: 10px;
  }

  .step-content p {
    text-align: center;
  }
}


.estimate-section {
  padding: 0 20px 40px;
  background-color: #f9fafc;
  font-family: 'Poppins', sans-serif;
}

.estimate-heading {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.estimate-subtext {
  font-size: 0.9rem;
  color: var(--color-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.estimate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.estimate-header {
  background-color: var(--color-primary);
  color: #fff;
  padding: 14px 12px;
  font-weight: 600;
  font-size: 0.9rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.estimate-header:last-child {
  border-right: none;
}

.estimate-cell {
  padding: 12px;
  font-size: 0.85rem;
  color: var(--color-dark);
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.estimate-cell:nth-child(3n+1) {
  background-color: #f9fbfd;
}


/* WHY GATI PAGE */
/* --- DESKTOP VIEW --- */
.why-hero {
  width: 100%;
  height: 300px;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-image-left,
.why-image {
  width: 50%;
  height: 100%;
  position: relative;
}

.why-image-left img,
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(44, 47, 63, 0.8), rgba(183, 160, 145, 0.8));
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeSlideIn 1s ease-out;
}

.why-text h1 {
  font-size: 2.2rem;
  margin: 10px 0;
}

.why-text h2 {
  font-size: 1.1rem;
  font-weight: normal;
}

.why-line {
  width: 50px;
  height: 4px;
  background-color: #ff3c3c;
  margin: 10px 0 20px 0;
}

.why-text p {
  font-size: 1rem;
  line-height: 1.5;
}

/* --- WHY US SECTION (Content + Image) --- */
.why-us-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}

.why-us-content h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
  animation: fadeSlideIn 0.8s ease-out;
}

.why-us-content p {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
  animation: fadeSlideIn 0.8s ease-out 0.2s;
}

.responsive-img {
  width: 80%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeZoomIn 0.8s ease-out;
}

/* --- RESPONSIVE FOR MOBILE --- */
@media (max-width: 768px) {
  .why-hero {
    flex-direction: column;
    height: auto;
  }

  .why-image-left {
    display: none;
  }

  .why-image {
    width: 100%;
    height: auto;
    position: relative;
  }

  .why-image img {
    display: none;
  }

  .why-text {
    position: relative;
    width: 100%;
    height: 300px;
    padding: 40px 20px;
    background-image: url('../images/banner1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(44, 47, 63, 0.85);
    animation: fadeSlideIn 1s ease-out;
  }

  .why-text h1 {
    font-size: 2rem;
  }

  .why-text h2 {
    font-size: 1rem;
  }

  .why-text p {
    font-size: 0.95rem;
  }
}

/* --- ANIMATIONS --- */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* Who we are page */
.who-we-are-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 40px;
  background: #f9f9f9;
  color: #222;
  font-family: 'Georgia', serif;
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s ease forwards;
  animation-delay: 0.3s;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
}

.accent-line {
  width: 5px;
  background-color: #007bff;
  border-radius: 3px;
  flex-shrink: 0;
}

.content-wrapper {
  flex-grow: 1;
}

.who-we-are-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1.2px;
  color: #004085;
}

.who-we-are-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* Animation */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Our team */
.our-team {
  text-align: center;
  padding: 60px 20px;
}

.our-team .container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-image {
  width: 80%;
  margin: 30px auto 0;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeZoomIn 1s ease-out;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up-delay {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Vision and mission */
.vision-mission-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.vm-container {
  max-width: 1000px;
  margin: 0 auto;
}

.vm-title-line {
  height: 4px;
  width: 60px;
  background-color: #f15a24;
  margin-bottom: 30px;
}

.vm-heading {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.vm-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vm-subheading {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.vm-vision,
.vm-mission {
  background-color: #fff;
  padding: 25px 30px;
  border-left: 5px solid #f15a24;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.vm-vision p,
.vm-mission p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .vm-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .vm-vision,
  .vm-mission {
    width: 48%;
  }
}


/* VIDEO GALLERY */

.video-gallery {
  padding: 60px 20px;
  background-color: #f4f4f4;
  font-family: 'Segoe UI', sans-serif;
}

.video-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.video-gallery-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.video-gallery-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

.video-card-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* PHOTO GALLERY */

.photo-gallery {
  background-color: #fafafa;
  font-family: 'Segoe UI', sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.filter-buttons {
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background-color: #e0e0e0;
  cursor: pointer;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #f15a24;
  color: #fff;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 20px;
}

.photo-card {
  height: 300px;
  /* Uniform height */
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.photo-card:hover img {
  transform: scale(1.05);
}

.gallery-heading {
  text-align: center;
  margin-top: 50px;
  font-size: 2.5rem;
  color: #333;
  animation: zoomIn 1s ease forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }

  .photo-card {
    height: 200px;
  }
}


/* support */

.container-support {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* ===================== HEADER ===================== */

.support-header {
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  margin-top: 2rem;
  position: relative;
  animation: slideDown 1s ease-out forwards;
  color: var(--color-primary);
}

.support-header::after {
  content: '';
  width: 50%;
  height: 3px;
  background-color: var(--color-accent);
  position: absolute;
  left: 25%;
  bottom: -10px;
  border-radius: 2px;
}

/* ===================== SUPPORT OPTIONS ===================== */

.support-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.support-card {
  background-color: var(--color-light);
  border: 1px solid var(--color-muted);
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(30, 41, 59, 0.15);
}

.support-card h3 {
  color: var(--color-primary);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.support-card p {
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.support-card a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.support-card a:hover {
  text-decoration: underline;
}

/* ===================== ANIMATIONS ===================== */

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== RESPONSIVE ===================== */

header.mg-head {
  text-align: center;
  padding: 40px 20px 20px;
}

header.mg-head h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-top: 2rem;
}

header.mg-head p {
  font-size: 1.1rem;
  color: #475569;
}

.mg-guide {
  display: flex;
  gap: 20px;
  padding-bottom: 60px;
}

nav.sidebar {
  position: sticky;
  top: 100px;
  flex: 0 0 220px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: fit-content;
}

nav.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav.sidebar li {
  margin-bottom: 15px;
}

nav.sidebar a {
  text-decoration: none;
  color: var(--color-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

nav.sidebar a:hover,
nav.sidebar a.active {
  color: var(--color-primary);
}

main.content {
  flex: 1;
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.mg-section {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.mg-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.mg-section h2 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  font-size: 1.5rem;
}

ul.checklist {
  list-style: disc inside;
  margin-left: 20px;
  color: var(--color-secondary);
}

.download-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--color-accent);
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: #0f7a2f;
}

@media (max-width: 900px) {
  .mg-guide {
    flex-direction: column;
  }

  nav.sidebar {
    position: relative;
    top: 0;
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .mg-page-wrapper {
    flex-direction: column;
  }

  .mg-sidebar {
    position: relative;
    top: 0;
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
}


/*  report issue */

.report-section {
  background-color: var(--color-background);
  padding: 40px 20px;
}

.report-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.report-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.report-form {
  flex: 1;
  background-color: var(--color-light);
  padding: 30px;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.report-form h2 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.report-subtitle {
  color: var(--color-muted);
  margin-bottom: 20px;
}

.report-form input,
.report-form select,
.report-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid var(--color-muted);
  border-radius: 8px;
  font-size: 0.8rem;
  outline: none;
}


.report-form button {
  width: 100%;
  background-color: var(--color-accent);
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.report-form button:hover {
  background-color: #0f9b3c;
}


/* FOOTER SERVICES */

/* -------- Services Accordion Container -------- */
.svc-accordion {
  max-width: 900px;
  margin: 40px auto;
}

.svc-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--color-primary);
  /* your primary color */
  margin-bottom: 0.25em;
}

.svc-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #64748b;
  /* your secondary color */
  margin-bottom: 2em;
}

/* -------- Accordion Items -------- */
.svc-item {
  border: 1px solid #d1d5db;
  /* light border */
  border-radius: 8px;
  margin-bottom: 1.5em;
  overflow: hidden;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}

.svc-header {
  background: #e0e7ff;
  /* light blue */
  cursor: pointer;
  padding: 1.25em 1.5em;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  /* dark text */
  display: flex;
  align-items: center;
  gap: 1em;
  user-select: none;
  border: none;
  width: 100%;
  text-align: left;
}

.svc-header .svc-icon {
  color: #2563eb;
  /* primary color */
  font-size: 1.6rem;
  min-width: 30px;
}

/* Plus/minus sign */
.svc-header::after {
  content: "\f068";
  /* FontAwesome minus icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: #2563eb;
}

.svc-header.collapsed::after {
  content: "\f067";
  /* FontAwesome plus icon */
}

/* Content Panel */
.svc-content {
  background: #f8fafc;
  /* very light */
  padding: 1.25em 3em;
  display: none;
  animation: fadeIn 0.35s ease forwards;
  line-height: 1.6;
  color: #334155;
}

.svc-content.active {
  display: block;
}

/* Sub-sections inside content */
.svc-section {
  margin-bottom: 1.25em;
}

.svc-section h4 {
  margin-bottom: 0.5em;
  color: #2563eb;
  font-weight: 700;
}

.svc-usps ul,
.svc-pricing ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
  color: #475569;
}

.svc-pricing table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5em;
}

.svc-pricing th,
.svc-pricing td {
  border: 1px solid #cbd5e1;
  padding: 0.5em 1em;
  text-align: center;
}

.svc-pricing th {
  background-color: #e0e7ff;
  color: #2563eb;
}

/* Simple fadeIn animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .svc-accordion {
    margin: 40px 20px;
  }
}

/*  safety standards */
/* Container */
.safe-container {
  max-width: 960px;
  margin: 50px auto;
  padding: 40px 20px;
  background-color: var(--color-background);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-dark);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(38, 55, 77, 0.1);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

/* Title */
.safe-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 15px;
}

/* Intro paragraph */
.safe-intro {
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

/* List container */
.safe-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Individual safety item */
.safe-item {
  background-color: var(--color-light);
  border-left: 6px solid var(--color-accent);
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(38, 55, 77, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.safe-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(38, 55, 77, 0.15);
}

/* Safety item headings */
.safe-item h2 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  user-select: none;
}

/* Safety item paragraphs */
.safe-item p {
  color: var(--color-secondary);
  line-height: 1.5;
  user-select: text;
}

/* End note */
.safe-end-note {
  margin-top: 40px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-reddish);
  user-select: none;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for smaller screens */
@media (max-width: 700px) {
  .safe-container {
    margin: 30px 15px;
    padding: 30px 15px;
  }

  .safe-title {
    font-size: 2rem;
  }

  .safe-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .safe-item {
    padding: 18px 20px;
  }

  .safe-item h2 {
    font-size: 1.2rem;
  }

  .safe-intro {
    font-size: 1rem;
    max-width: 100%;
  }

  .safe-end-note {
    font-size: 1.1rem;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.popup-box {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 700px;
  position: relative;
  padding: 30px;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #333;
}

.popup-title {
  color: var(--color-primary);
  font-size: 24px;
  margin-bottom: 6px;
  text-align: center;
}

.popup-subtitle {
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: 24px;
  text-align: center;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.popup-input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--color-muted);
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

.popup-submit {
  align-self: flex-start;
  padding: 10px 20px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-submit:hover {
  background-color: var(--color-accent);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .popup-row {
    flex-direction: column;
  }

  .popup-submit {
    width: 100%;
    text-align: center;
  }
}

/* Terms and conditions */


.tac-wrapper {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 20px;
  animation: tac-fadeIn 1s ease-in;
}

.tac-title {
  color: var(--color-primary);
  font-size: 36px;
  margin: 20px;
  text-align: center;
  animation: tac-slideDown 0.7s ease-in-out;
}

.tac-section {
  margin-bottom: 30px;
  background-color: var(--color-light);
  padding: 20px;
  border-left: 5px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: tac-fadeIn 0.8s ease-in;
}

.tac-section h2 {
  color: var(--color-primary);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--color-muted);
}

.tac-section p,
.tac-section li {
  color: var(--color-secondary);
}

.tac-section ul {
  padding-left: 20px;
  margin: 10px 0;
}

.tac-contact {
  background-color: var(--color-light);
  padding: 20px;
  border-left: 5px solid var(--color-primary);
  animation: tac-fadeIn 1s ease-in;
}

@keyframes tac-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tac-slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .tac-title {
    font-size: 28px;
  }
}

/* Privacy Policy */


.pp-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pp-card {
  background-color: var(--color-light);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  padding: 30px 35px;
  border-left: 6px solid var(--color-primary);
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.pp-card:hover {
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.pp-title {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.8rem;
  margin: 30px;
  text-align: center;
  letter-spacing: 0.05em;
}

.pp-subtitle {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--color-muted);
  padding-bottom: 4px;
}

.pp-text {
  color: var(--color-dark);
  font-size: 0.8rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .pp-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .pp-subtitle {
    font-size: 1.25rem;
  }

  .pp-card {
    padding: 20px 25px;
  }

  .pp-contact {
    padding: 25px 25px;
    font-size: 1rem;
  }
}

/* location by city */

.city-content-wrapper {
  max-width: 1000px;
  margin: 60px auto;
  background: var(--color-light);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 40px;
  padding: 30px 40px;
  animation: fadeIn 0.8s ease;
}

.city-info-left {
  flex: 1 1 60%;
}

.city-info-left h1 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.city-info-left p {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.city-info-left ul {
  padding-left: 20px;
}

.city-info-left ul li {
  margin-bottom: 10px;
  font-family: var(--font-secondary);
}

.city-image-right {
  flex: 1 1 40%;
}

.city-image-right img {
  width: 300px;
  /* Set your desired width */
  height: 300px;
  /* Set your desired height */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .city-content-wrapper {
    flex-direction: column;
  }
}

.floating-contact-bar {
  position: fixed;
  bottom: 20px;
  /* Give some breathing room from the bottom */
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  z-index: 9999;
  font-family: sans-serif;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-contact-bar .contact-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  /* Reduced font size */
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.floating-contact-bar .contact-link i {
  font-size: 16px;
  /* Slightly smaller icon */
}

@media (max-width: 768px) {
  .floating-contact-bar {
    width: 70%;
  }

  .floating-contact-bar .contact-link i {
    font-size: 14px;
  }
}

.service-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
  color: var(--color-accent);
}

.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  background: var(--color-light);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(30 41 59 / 0.1);
  padding: 1rem 1.5rem;
  transition: box-shadow 0.3s ease;
}

.service-block:hover {
  box-shadow: 0 4px 20px rgb(30 41 59 / 0.18);
}

.service-block__image {
  flex: 1 1 38%;
  min-width: 260px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgb(30 41 59 / 0.1);
  background-color: var(--color-light);
  transition: box-shadow 0.3s ease;
}

.service-block__image:hover {
  box-shadow: 0 6px 16px rgb(30 41 59 / 0.18);
}

.service-block__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-block__image img:hover {
  transform: scale(1.05);
}

.service-block__content {
  flex: 1 1 58%;
  min-width: 280px;
}

.service-block__content h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.6rem;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.service-block__content h3 i {
  color: var(--color-accent);
  font-size: 1.4rem;
}

.service-block__content p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-top: 0;
}

/* Alternate layout for even service blocks */
.service-block:nth-child(even) {
  flex-direction: row-reverse;
  background: #f1f5f9;
  /* Slightly different background on alternate blocks */
}

@media (max-width: 768px) {

  .service-block,
  .service-block:nth-child(even) {
    flex-direction: column;
  }

  .service-block__image,
  .service-block__content {
    flex: 1 1 100%;
    min-width: auto;
  }

  .service-block__image {
    margin-bottom: 1rem;
    height: auto;
  }

  .service-block__image img {
    height: 220px;
  }
}

.city-address {
  margin-top: 15px;
  padding: 10px;
  background-color: #f9f9f9;
  border-left: 4px solid #ff6600;
  font-size: 14px;
  line-height: 1.5;
}

.city-address strong {
  color: #333;
}

/* Background Overlay */
.popup-overlay-custom {
  display: none;
  /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Popup Box */
.popup-box-custom {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  width: 350px;
  max-width: 90%;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInScale 0.3s ease-in-out;
}

/* Title */
.popup-title-custom {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

/* Message */
.popup-message-custom {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/* Button */
.popup-close-custom {
  background: #007BFF;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.popup-close-custom:hover {
  background: #0056b3;
}

/* Animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Claim Container */
.claim-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  font-family: 'Poppins', sans-serif;
}

/* Two Column Layout */
.claim-service-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.claim-service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.claim-service-text {
  flex: 1;
}

.claim-service-text h2 {
  margin-top: 1rem;
  font-size: 1.8rem;
  color: #222;
}

/* Cards */
.claim-card-list {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.claim-card-list h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #444;
}

.claim-card-list ul,
.claim-card-list ol {
  margin-left: 1.2rem;
  line-height: 1.7;
}

.claim-card-list li {
  margin-bottom: 0.6rem;
}

/* Contact Table */
.claim-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.claim-table th,
.claim-table td {
  padding: 1rem;
  border: 1px solid #ddd;
  text-align: left;
}

.claim-table th {
  background: #f7f7f7;
  font-weight: 600;
}

/* Notes */
.claim-note {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #555;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .claim-service-block {
    flex-direction: column;
    text-align: center;
  }
  .claim-service-text {
    text-align: left;
  }
}
