/* Global */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #0d2c54;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff7a00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc;
  color: #334155;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Inter", sans-serif;
}

section {
  width: 100%;
}

.section-wrap {
  max-width: 1370px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* 404 Page Style */

.wp-404-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh; /* Adjust height based on your header/footer */
  padding: 40px 20px;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #ffffff;
}

.wp-404-content {
  text-align: center;
  max-width: 500px;
}

.wp-404-code {
  font-size: clamp(80px, 10vw, 120px); /* Responsive font size */
  font-weight: 800;
  color: #1e3a5f;
  margin: 0 0 10px 0;
  line-height: 1;
}

.wp-404-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.wp-404-text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Button Layout */
.wp-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.wp-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

/* Home Button (Solid) */
.wp-btn-filled {
  background-color: #1e3a5f;
  color: #ffffff !important;
  border: 2px solid #1e3a5f;
}

.wp-btn-filled:hover {
  background-color: #152a45;
  border-color: #152a45;
}

/* Back Button (Outline) */
.wp-btn-outline {
  background-color: transparent;
  color: #1e3a5f !important;
  border: 2px solid #1e3a5f;
}

.wp-btn-outline:hover {
  background-color: #f8fafc;
}

/* Responsive adjustment */
@media (max-width: 480px) {
  .wp-404-actions {
    flex-direction: column;
  }
  .wp-404-btn {
    justify-content: center;
  }
}

/* --- HEADER STYLES --- */

.app-shell {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.5;
  padding-top: 80px;
}

.site-header {
  background: #ffffff;
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed; /* Sticky se better fixed rahega */
  top: 0;
  left: 0;
  width: 100%; /* Full width ensure karne ke liye */
  z-index: 1000;
  border-bottom: 1px solid #edf2f7;
  padding: 0 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
  .app-shell {
    padding-top: 80px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-group {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* Search Bar Desktop */
.search-wrapper {
  flex-grow: 1;
  margin: 0 30px;
  position: relative;
}

.search-bar {
  width: 100%;
  background: #f4f6f9;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 18px 10px 45px;
  font-size: 14px;
  color: #1e293b;
  outline: none;
  transition: all 0.3s ease;
}

.search-bar:focus {
  background: #ffffff;
  border-color: #1a3d8b;
  box-shadow: 0 0 0 3px rgba(26, 61, 139, 0.08);
}

.search-icon-fixed {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 16px;
}

/* Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #edf2f7;
  display: none;
  z-index: 1002;
  overflow: hidden;
  padding: 8px 0;
}

.suggestion-item {
  padding: 10px 20px;
  font-size: 14px;
  color: #2c4263;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.suggestion-item:hover {
  background: #f8fafc;
  color: #ff7a1a;
}

.suggestion-item i {
  font-size: 14px;
  color: #64748b;
  opacity: 0.5;
}

/* Navigation Desktop */
.nav-items {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  text-decoration: none;
  color: #2c4263;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  position: relative;
  padding: 10px 0;
  cursor: pointer;
}

.nav-item:hover {
  color: #ff7a1a;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% - 5px);
  left: -10px;
  background: #ffffff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1001;
  padding: 12px 0;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link,
.view-all-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #2c4263;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  margin: 0 8px;
  border-radius: 8px;
}

.dropdown-link:hover {
  background: #f8fafc;
  color: #ff7a1a;
  padding-left: 24px;
}

.dropdown-footer {
  border-top: 1px solid #edf2f7;
  margin-top: 10px;
}

.view-all-link:hover {
  background: #f8fafc;
  color: #ff7a1a;
}

.view-all-link:hover i {
  transform: translateX(4px);
}

.btn-call-now {
  background: #ff7a1a;
  color: white;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(255, 122, 26, 0.2);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-call-now:hover {
  transform: translateY(-2px);
  background: #e66a13;
  box-shadow: 0 6px 16px rgba(255, 122, 26, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: #f8fafc;
  border: none;
  font-size: 22px;
  color: #2c4263;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  margin-left: auto;
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 95vh;
  background: white;
  z-index: 2000;
  padding: 24px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  display: none;
  backdrop-filter: blur(5px);
}

.drawer-overlay.active {
  display: block;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.close-btn {
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 20px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  flex-grow: 1;
}

.drawer-nav-item {
  text-decoration: none;
  color: #2c4263;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  transition: background 0.2s;
  cursor: pointer;
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #fafafa;
  border-radius: 10px;
}

.mobile-accordion-content.open {
  max-height: 300px;
  overflow: scroll;
  margin: 2px 0 8px 0;
  padding: 5px;
}

.mobile-sub-link {
  padding: 10px 14px;
  margin: 0 8px;
  font-size: 14px;
  color: #1e293b;
  text-decoration: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  transition: background 0.2s;
}

.mobile-search {
  margin-bottom: 24px;
  position: relative;
}

/* SEARCH LOADER */
#searchLoader {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e2e8f0;
  z-index: 1001;
}
#searchLoaderBar {
  height: 100%;
  width: 0;
  background: #ff7a1a;
  transition: width 0.4s ease;
}

@media (max-width: 1024px) {
  .search-wrapper,
  .nav-items {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-inner {
    padding: 0 10px;
  }
  .view-all-link {
    margin: 0;
  }
}

@media (max-width: 640px) {
  .logo-group {
    min-width: auto;
  }
  .logo-img {
    height: 80px;
  }
  .site-header {
    padding: 0 15px;
  }
}

.drawer-footer-btn {
  margin-top: auto;
  padding-top: 20px;
}
.drawer-footer-btn .btn-call-now {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  border-radius: 14px;
  display: flex !important;
  align-items: center;
}

/* Footer Section */

.site-footer {
  background: #1f3f63;
  color: #dbe7f3;
  padding: 80px 0 30px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: #dbe7f3;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff8c00;
  padding-left: 5px;
}

/* Brand */
.brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
  display: block;
}

.brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #cbd5e1;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  color: #cbd5e1;
  font-size: 18px;
  transition: 0.3s;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
}

.socials a:hover {
  color: #fff;
  background: #ff8c00;
  transform: translateY(-3px);
}

/* Contact */
.contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 14px;
  color: #cbd5e1;
}

.contact i {
  color: #ff8c00;
  margin-top: 3px;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  align-items: center; /* Vertical centering ke liye */
  gap: 5px; /* By aur Name ke bich fix 5px ka gap */
}

.footer-links p {
  margin: 0; /* Extra margin hatane ke liye */
  font-size: 14px;
  color: #cbd5e1;
}

.footer-links a {
  font-size: 14px;
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff8c00; /* Aapke theme ka orange color */
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
  }
  .footer-links {
    justify-content: center;
  }
}

/* Hero Slider */

.hero-slider-container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  text-align: left;
}

/* Slider Main Container */
.hero-slider-wrapper {
  position: relative;
  width: 100vw;
  height: 620px;
  overflow: hidden;
  text-align: left;
}

.hero-slider-main {
  width: 100%;
  height: 100%;
}

/* Individual Slide */
.hero-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease-in-out,
    visibility 0.8s;
  display: flex;
  align-items: center;
  text-align: left;
}

.hero-slider-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Overlay */
.hero-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(10, 40, 75, 0.95) 0%,
    rgba(10, 40, 75, 0.5) 100%
  );
}

/* Content */
.hero-slider-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-slider-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ff8a3d;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.hero-slider-badge-dot {
  width: 8px;
  height: 8px;
  background: #ff7a1a;
  border-radius: 50%;
  margin-right: 10px;
}

h1.hero-slider-animate-up {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-align: left;
}

p.hero-slider-animate-up {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3.5rem;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
}

/* Buttons */
.hero-slider-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: left;
}

.hero-slider-btn-primary {
  background: #ff7a1a;
  color: #ffffff;
  text-decoration: none;
  padding: 1.1rem 2.5rem;
  border-radius: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 122, 26, 0.2);
}

.hero-slider-btn-primary:hover {
  background: #e66a15;
  transform: translateY(-2px);
}

.hero-slider-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
  padding: 1.1rem 2.5rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.hero-slider-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* Navigation Arrows */
.hero-slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-slider-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-prev {
  left: 2.5rem;
}
.hero-slider-next {
  right: 2.5rem;
}

/* Pagination Dots */
.hero-slider-pagination {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 10;
  align-items: center;
}

.hero-slider-dot-nav {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-dot-nav.active {
  background: #ff7a1a;
  width: 32px;
  border-radius: 10px;
}

/* Counter */
.hero-slider-counter {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 10;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.hero-slider-counter #hero-slider-current {
  font-size: 1.3rem;
  color: #ffffff;
  margin-right: 2px;
}

/* Animations */
@keyframes heroSliderFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider-slide.active .hero-slider-animate-up {
  animation: heroSliderFadeInUp 0.8s ease forwards;
}

.hero-slider-delay-1 {
  animation-delay: 0.2s;
}
.hero-slider-delay-2 {
  animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1370px) {
  .hero-slider-container {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-slider-wrapper {
    height: 650px;
  }

  .hero-slider-nav-btn {
    display: flex; /* Ensure arrows are visible on tablet */
    width: 44px;
    height: 44px;
  }
  .hero-slider-prev {
    left: 1.5rem;
  }
  .hero-slider-next {
    right: 1.5rem;
  }

  h1.hero-slider-animate-up {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 1.5rem;
  }

  p.hero-slider-animate-up {
    margin-bottom: 2.5rem;
  }

  .hero-slider-badge {
    margin-bottom: 2rem;
  }

  .hero-slider-content {
    max-width: 85%;
  }

  .hero-slider-actions {
    flex-direction: row; /* Keep buttons side-by-side on tablet */
    gap: 1.5rem;
  }

  .hero-slider-btn-primary,
  .hero-slider-btn-outline {
    width: auto; /* Not full width on tablet */
  }
}

@media (max-width: 768px) {
  .hero-slider-wrapper {
    height: 600px;
  }

  .hero-slider-nav-btn {
    display: flex; /* Still visible on portrait tablet */
    width: 40px;
    height: 40px;
  }
  .hero-slider-prev {
    left: 1rem;
  }
  .hero-slider-next {
    right: 1rem;
  }

  .hero-slider-container {
    padding: 0 1.5rem;
  }

  .hero-slider-content {
    max-width: 90%;
  }

  h1.hero-slider-animate-up {
    font-size: 2.5rem;
  }

  .hero-slider-actions {
    flex-direction: row;
    width: auto;
  }

  .hero-slider-btn-primary,
  .hero-slider-btn-outline {
    width: auto;
  }
}

@media (max-width: 576px) {
  .hero-slider-wrapper {
    height: 550px;
  }

  .hero-slider-nav-btn {
    display: none;
  } /* Hide only on mobile */

  .hero-slider-content {
    max-width: 100%;
    padding-bottom: 2rem;
  }

  h1.hero-slider-animate-up {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
  }

  p.hero-slider-animate-up {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    br {
      display: none;
    }
  }

  .hero-slider-badge {
    margin-bottom: 1.5rem;
  }

  .hero-slider-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-slider-btn-primary,
  .hero-slider-btn-outline {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  .hero-slider-pagination {
    bottom: 1.5rem;
  }

  .hero-slider-counter {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-height: 600px) {
  .hero-slider-wrapper {
    height: auto;
    min-height: 600px;
  }
  .hero-slider-slide {
    padding: 4rem 0;
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .hero-slider-slide.active {
    display: flex;
  }
}

/* --- SERVICES SECTION STYLES --- */

.inactive {
  opacity: 0.4;
  cursor: not-allowed !important;
}

.section-wrap {
  max-width: 1370px;
  margin-inline: auto;
  padding-inline: 20px;
}

.services-intro {
  padding: 60px 0 40px 0;
}

.content-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background-color: #fff1e7;
  color: #ff8c42;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.content-container h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #0f172a;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.content-container p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
  max-width: 550px;
  margin-inline: auto;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 0 0 20px;
  position: relative;
}

.carousel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: nowrap;
}

.title-group {
  position: relative;
  padding-left: 14px;
}

.title-group::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background-color: #ff7a00;
  border-radius: 2px;
}

.title-group h1 {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 2px;
  line-height: 1.2;
}

.title-group p {
  font-size: 13px;
  color: #94a3b8;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  background: #eff6ff;
  border-radius: 99px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-all svg {
  transition: transform 0.2s ease;
}

.view-all:hover {
  background: #dbeafe;
  color: #1d4ed8;
}

.view-all:hover svg {
  transform: translateX(3px);
}

.carousel-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 5px 0 30px;
  scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 20px;
}

.card {
  flex: 0 0 calc(25% - 15px);
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.card:hover {
  border-color: #ff7a00;
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.book-now {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff7a00;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
}

.book-now svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.card:hover .book-now svg {
  transform: translateX(4px);
}

.controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.control-btn:hover:not(.disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: scale(1.05);
}

.control-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn-wrapper {
  width: 100%;
  padding: 40px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: #1e3a8a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
  transition: 0.3s ease;
}

.browse-btn i {
  transition: 0.3s ease;
}

.browse-btn:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.browse-btn:hover i {
  transform: translateX(6px);
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .card {
    flex: 0 0 100%;
  }

  .services-intro {
    padding: 50px 0 30px 0;
  }

  .carousel-title {
    align-items: center;
    margin-bottom: 20px;
  }

  .title-group h1 {
    font-size: 18px;
  }

  .controls {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 50px 20px 0 20px;
  }
}

/* Why Choose Section */

/* Section */
.why-choose-section {
  background: #f4f6f9;
  padding: 50px 0;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

/* Container */
.why-choose-container {
  width: 1240px;
  max-width: 95%;
  margin: 0 auto;
}

/* Heading */
.why-choose-sub-heading {
  color: #ff6b00;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.why-choose-heading {
  font-size: 42px;
  font-weight: 700;
  color: #0f2b46;
  margin-bottom: 50px;
}

/* Cards Wrapper */
.why-choose-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.why-choose-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
}

/* 🔥 Hover Style Like Screenshot */
.why-choose-card:hover {
  border: 1px solid #ff7d1a;
  transform: translateY(-5px);
}

/* Icon Box */
.why-choose-icon {
  width: 72px;
  height: 72px;
  background: #fef1e7;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.why-choose-icon i {
  font-size: 28px;
  color: #ff6b00;
}

/* Text */
.why-choose-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0f2b46;
}

.why-choose-card p {
  font-size: 15px;
  color: #6b7c93;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-choose-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose-wrapper {
    grid-template-columns: 1fr;
  }

  .why-choose-heading {
    font-size: 30px;
  }
}

/* --- REVIEWS SECTION --- */

.reviews-section {
  background: #f8fafc;
  padding: 50px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-intro {
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.intro-badge {
  display: inline-block;
  padding: 5px 15px;
  background: #ffeeda;
  color: #ff7d1a;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-intro h2 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
  color: #0f203b;
  margin-bottom: 15px;
}

.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.summary-stars {
  display: flex;
  gap: 4px;
}

.summary-stars i {
  color: #ffc107;
  font-size: 18px;
}

.rating-val {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.score {
  font-size: 24px;
  font-weight: 800;
  color: #0f203b;
}

.based-on {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #64748b;
  line-height: 1.2;
  font-weight: 500;
}

.reviews-slider-outer {
  max-width: 1240px;
  margin: 40px auto 0;
  position: relative;
  padding: 0 20px 80px 20px;
  width: 100%;
}

.reviews-slider-container {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  transition: transform 0.6s cubic-bezier(0.5, 0, 0, 1);
  will-change: transform;
  transform: translateX(-813px);
  align-items: stretch;
}

.review-card {
  width: calc(33.333% - 13.2px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 35px;
  position: relative;
  flex-shrink: 0;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.review-card .review-text {
  flex-grow: 1;
}

.review-card .review-footer {
  margin-top: auto;
}

.review-card:hover {
  border-color: #ff7d1a;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-badge {
  position: absolute;
  top: -16px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: #ff7d1a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(255, 125, 26, 0.3);
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-stars {
  display: flex;
  gap: 3px;
}

.card-stars i {
  color: #ffc107;
  font-size: 14px;
}

.card-score-val {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
}

.review-quote {
  font-size: 15px;
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.7;
  min-height: 85px;
}

.review-divider {
  border: none;
  border-top: 1px solid #f1f5f9;
  margin-bottom: 20px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #0f203b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-meta {
  flex: 1;
}

.review-meta h5 {
  font-size: 14px;
  color: #0f203b;
  font-weight: 700;
  margin-bottom: 2px;
}

.review-meta span {
  font-size: 12px;
  color: #94a3b8;
}

.review-badge {
  font-size: 11px;
  color: #ff7d1a;
  background: #ffeeda;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;
}

.reviews-nav {
  position: absolute;
  bottom: 0;
  right: 20px;
  display: flex;
  gap: 12px;
}

.track-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.track-btn:hover:not(:disabled) {
  border-color: #ff7d1a;
  color: #ff7d1a;
}

.track-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #f1f5f9;
  border-color: #e2e8f0;
  color: #cbd5e1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .review-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .review-card {
    width: 100%;
  }
  .reviews-nav {
    right: 50%;
    transform: translateX(50%);
  }
  .reviews-slider-outer {
    padding-bottom: 100px;
  }
}

/* --- GLOBAL COMPONENTS --- */
.badge {
  display: inline-block;
  background-color: #fff7ed;
  color: #ea580c;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* --- FAQ SECTION STYLES --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0px 0px 50px 20px;
}

.FAQ-Section {
  text-align: center;
  margin-bottom: 48px;
}

.FAQ-Section .title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .FAQ-Section .title {
    font-size: 42px;
  }
}

.FAQ-Section .description {
  font-size: 16px;
  color: #64748b;
  max-width: 550px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-item.active {
  border-color: #f97316;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
}

@media (min-width: 768px) {
  .faq-toggle {
    padding: 24px;
  }
}

.faq-header-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.number-badge {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff7ed;
  color: #ea580c;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .number-badge {
  background-color: #f97316;
  color: #ffffff;
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  padding-right: 10px;
}

.chevron {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
  color: #f97316;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-inner-content {
  overflow: hidden;
}

.faq-answer-wrapper {
  padding: 0 20px 24px 20px;
  border-top: 1px solid #f8fafc;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .faq-answer-wrapper {
    padding: 0 76px 28px 76px;
  }
}

.faq-answer {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
}

.contact-section {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
}

.contact-text {
  font-size: 15px;
  color: #475569;
  font-weight: 500;
}

.contact-link {
  color: #f97316;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(249, 115, 22, 0.2);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.contact-link:hover {
  color: #ea580c;
  border-color: #ea580c;
}

.help-icon {
  width: 22px;
  height: 22px;
  color: #f97316;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 60px 20px;
  }
}

/* SEO/INFO SECTION */
.info-content-section {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  padding: clamp(40px, 8vw, 80px) 24px;
  display: flex;
  justify-content: center;
}

.info-container {
  max-width: 900px;
  width: 100%;
}

.info-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #334155;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.info-subtitle {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 600;
  color: #475569;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.info-text {
  font-size: clamp(15px, 2vw, 16px);
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.7;
}

.info-text strong {
  color: #1e293b;
  font-weight: 600;
}

@media (max-width: 768px) {
  .info-content-section {
    padding: 40px 20px;
  }
}

/* Services Main Page */

.service-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.services-page-heading {
  text-align: center;
}

/* Hero Section */
.service-banner {
  background:
    linear-gradient(rgba(14, 46, 80, 0.92), rgba(14, 46, 80, 0.92)),
    url("https://images.unsplash.com/photo-1581092921461-7d157a1a7f18?auto=format&fit=crop&q=80&w=1920")
      center/cover;
  padding: 80px 5%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
}

.breadcrumbs span {
  margin: 0 10px;
  color: #94a3b8;
  font-size: 11px;
}

.breadcrumbs a {
  color: inherit; /* Parent text color use karega */
  text-decoration: none; /* Underline remove */
}

.breadcrumbs a:hover {
  text-decoration: none; /* Hover me bhi underline na aaye */
  opacity: 0.8; /* Optional subtle hover effect */
}

.hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 18px;
  color: #e2e8f0;
  font-weight: 400;
}

.brand-section {
  padding: clamp(40px, 8vw, 80px) 5%;
}

.services-padding {
  padding: clamp(40px, 8vw, 80px) 5%;
}

.process-padding {
  padding-bottom: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.tagline {
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(24px, 4vw, 32px);
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto;
  color: #64748b;
}

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}

.brand-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: #f97316;
  transform: translateY(-5px);
}

.brand-logo {
  height: 100px;
}

.brand-name {
  font-weight: 600;
  font-size: 14px;
  color: #334155;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-image-box {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(14, 46, 80, 0.9));
  padding: 20px;
  color: white;
}

.service-label {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.light-icon {
  opacity: 0.7;
}

.service-content {
  padding: 20px;
  flex-grow: 1;
}

.service-text {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767px) {
  .service-text {
    -webkit-line-clamp: 3;
  }
}

.book-link {
  color: #0e2e50;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.book-link i {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .book-link {
  color: #f97316;
}

.service-card:hover .book-link i {
  transform: translateX(12px);
}

/* How It Works Section */
.how-it-works-bg {
  background-color: #f1f5f9;
}

.process-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid transparent;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:hover {
  transform: translateY(-5px);
  border: 1px solid #f97316;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: #f97316;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
  border: 3px solid #f1f5f9;
}

.step-icon-box {
  background-color: #e9eff6;
  width: 65px;
  height: 65px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
  color: #0e2e50;
  font-size: 24px;
  transition: all 0.3s ease;
}

.process-step:hover .step-icon-box {
  color: #f97316;
  background-color: #fff7ed;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0e2e50;
}

.step-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.process-divider {
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.divider-line {
  height: 2px;
  width: 100%;
  border-top: 2px dashed #cbd5e1;
}

/* CTA Section */
.cta-section {
  background-color: #f97316;
  text-align: center;
  padding: 80px 5%;
  color: white;
}

.cta-title {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 35px;
  opacity: 0.95;
}

.btn-cta {
  background-color: #0e2e50;
  color: white;
  padding: 20px 45px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  background-color: #1a3a5f;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Breakpoints */

/* Tablet & Mobile: Process Section (2 per row on tablet) */
@media (max-width: 1024px) {
  .process-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }
  .process-divider {
    display: none;
  }
  .process-step {
    width: 100%;
  }
}

/* Small Mobile: Brands (2 per row) and Process (1 per row if too cramped) */
@media (max-width: 600px) {
  .brands-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-container {
    grid-template-columns: 1fr;
  }
  .hero-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* --- SERVICES CONTACT FORM SECTION STYLES --- */

.service-contact-page-wrapper {
  background-color: #f8fafc;
  color: #1e293b;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.booking-wrapper {
  width: 100%;
  max-width: 830px;
  padding-top: 50px;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

/* Stepper Styles */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-weight: 500;
  transition: all 0.3s ease;
}

.step-indicator.active {
  color: #1e3a5f;
  transform: scale(1.05);
}

.step-indicator .circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #edf2f7;
  color: #64748b;
  font-size: 14px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.step-indicator.active .circle {
  background-color: #1e3a5f;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(30, 58, 95, 0.2);
}

.step-indicator.completed .circle {
  background-color: #1e3a5f;
  color: #ffffff;
}

.stepper-line {
  width: 60px;
  height: 3px;
  background-color: #e2e8f0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.stepper-line.active {
  background-color: #1e3a5f;
}

/* Card Styles */
.service-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-contact-page-wrapper h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1e293b;
}

.subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 32px;
}

/* Step 1: Services Grid */
.form-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  .form-services-grid {
    grid-template-columns: 1fr;
  }

  .service-form-card {
    padding: 20px;
  }
}

.service-from-service-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.service-from-service-card:hover {
  border-color: #1e3a5f;
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-from-service-card.selected {
  border: 2px solid #1e3a5f;
  background-color: #f0f7ff;
  padding: 19px;
}

.radio-circle {
  min-width: 22px;
  height: 22px;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background: white;
  transition: all 0.2s ease;
}

.service-from-service-card.selected .radio-circle {
  background-color: #1e3a5f;
  border-color: #1e3a5f;
}

.service-item .radio-circle svg {
  opacity: 0;
  width: 14px;
  height: 14px;
  fill: white;
  transition: opacity 0.2s ease;
}

.service-item.selected .radio-circle svg {
  opacity: 1;
}

.service-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1e293b;
}

.service-info p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

/* Buttons */
.service-contact-btn,
.btn-orange,
.btn-primary {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #1e3a5f;
  color: #ffffff;
}

.btn-orange {
  background-color: #ff7a1a;
  color: #ffffff;
}

.service-contact-btn:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.service-contact-btn:active:not(:disabled) {
  transform: translateY(0);
}

.service-contact-btn:disabled {
  background-color: #cbd5e1;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Step 2 Form */
.service-form-group {
  margin-bottom: 24px;
}

.service-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #334155;
}

.service-form-group input,
.service-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  background-color: #ffffff;
  color: #1e293b;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.service-form-group input::placeholder,
.service-form-group textarea::placeholder {
  color: #94a3b8;
}

.service-form-group input:focus,
.service-form-group textarea:focus {
  border-color: #1e3a5f;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.08);
}

.back-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.back-link:hover {
  color: #1e3a5f;
  transform: translateX(-4px);
}

/* Step 3: Success */
.service-form-success-content {
  text-align: center;
  padding: 20px 0;
}

.service-form-success-icon {
  width: 80px;
  height: 80px;
  background: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.service-form-summary-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  margin-top: 30px;
  text-align: left;
}

.service-form-summary-item {
  margin-bottom: 12px;
  font-size: 14px;
}

.service-form-summary-label {
  font-weight: 600;
  color: #64748b;
  display: block;
  margin-bottom: 2px;
}

.summary-value {
  color: #1e293b;
  font-weight: 500;
}

.service-form-footer-call {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #64748b;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.service-form-footer-call a {
  color: #1e3a5f;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.service-form-footer-call a:hover {
  text-decoration: underline;
}

/* Utility */
.service-step-hidden {
  display: none !important;
}

/* --- CONTACT PAGE STYLES --- */

/* BANNER STYLES */
.contact-banner {
  width: 100%;
  height: 300px;
  background:
    linear-gradient(rgba(26, 61, 139, 0.85), rgba(26, 61, 139, 0.85)),
    url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&q=80&w=2070");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.contact-banner h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.contact-banner p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
}

@media (max-width: 768px) {
  .contact-banner {
    height: 220px;
  }
  .contact-banner h1 {
    font-size: 32px;
  }
  .contact-banner p {
    font-size: 15px;
  }
}

.main-content {
  width: 100%;
  max-width: 1240px;
  margin: 60px auto;
}

/* CONTACT PAGE STYLES */

/* Styled Success/Error Messages */
.form-message {
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  display: none; /* Initially Hidden */
}
.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
/* Spinner for button */
.fa-spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.contact-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
}

.contact-info-column h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact-info-column p.subtext {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 30px;
}

/* GRID FOR CONTACT CARDS */
.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* On tablets (when layout is full width), make cards 2 columns */
@media (min-width: 640px) and (max-width: 1024px) {
  .info-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  height: 100%;
  align-items: center;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: #ff7a1a;
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7a1a;
  font-size: 20px;
  flex-shrink: 0;
}

.info-card-content h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.info-card-content p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.5;
}

/* FORM STYLES */
.contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
  .contact-form-card {
    padding: 25px;
  }
}

.contact-form-card h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-form-card p.subtext {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 35px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  font-size: 15px;
  color: #1e293b;
  outline: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-input:focus {
  border-color: #ff7a1a;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.1);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

textarea.form-input {
  min-height: 160px;
  resize: vertical;
}

.btn-send {
  background-color: #ff7a1a;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 12px -2px rgba(255, 122, 26, 0.4);
  margin-top: 15px;
  transition: all 0.2s ease;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(255, 122, 26, 0.5);
  background-color: #f56d0d;
}

/* Success Message Styling */
.contact-status-success {
  background: #e8f5e9;
  border-left: 5px solid #f56d0d;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.success-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1b5e20;
}

.success-content i {
  font-size: 24px;
  color: #f56d0d;
}

.success-content span {
  font-size: 15px;
  font-weight: 500;
}

/* Smooth Fade-in Animation */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MAP SECTION */
.map-section {
  width: 100%;
  max-width: 1240px;
  margin: 60px auto 40px;
  padding: 0 20px;
  text-align: center;
}

.map-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 35px;
}

.map-frame-container {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.map-frame-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- ABOUT PAGE STYLES --- */

.about-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TYPOGRAPHY */
.section-tag {
  text-transform: uppercase;
  color: #ff7a1a;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.text-content p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 600px;
}

/* SECTION PADDING */
.story-section,
.values-section {
  padding: 80px 0;
}

/* STORY SECTION */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center; /* VERTICAL CENTERING OF STATS */
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background-color: #f1f5f9;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #1a3d8b; /* PRIMARY BLUE THEME */
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

/* MISSION & VISION SECTION */
.mission-vision-section {
  background-color: #f8fafc;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  border-color: #ff7d1a;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.mv-icon.mission {
  background-color: #1a3d8b;
  color: #ffffff;
}

.mv-icon.vision {
  background-color: #ff7a1a;
  color: #ffffff;
}

.mv-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.mv-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

/* VALUES SECTION */
.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-item {
  text-align: center;
}

.value-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #fff7ed;
  color: #ff7a1a;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}

.value-item:hover .value-icon-wrapper {
  transform: scale(1.1);
}

.value-item h4 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.value-item p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .story-grid,
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    font-size: 32px;
  }
  .stat-card {
    padding: 30px 15px;
  }
}

/* Floating Elements */

/* --- Desktop & Base Styling --- */
.raza-contact-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.contact-item {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floating-subtle 3s ease-in-out infinite;
}

/* Colors - Matching Raza Company Brand */
.wa-item {
  background: #25d366;
}
.call-item {
  background: #ff7f27; /* Theme Orange */
  animation-delay: 1.5s;
}

/* Desktop Hints (Tooltips) */
.contact-hint {
  position: absolute;
  right: 70px;
  background: #0c2b4b; /* Midnight Blue Theme */
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-item:hover .contact-hint {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive Breakpoints --- */

/* Tablets (iPad, etc.) */
@media (max-width: 1024px) {
  .raza-contact-fixed {
    bottom: 25px;
    right: 25px;
    gap: 12px;
  }
  .contact-item {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

/* Mobile Devices (iPhone, Android) */
@media (max-width: 768px) {
  .raza-contact-fixed {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .contact-item {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  /* Hide hints on mobile for a cleaner UI */
  .contact-hint {
    display: none;
  }
  /* Subtle scale to make touch easier */
  .contact-item:active {
    transform: scale(0.9);
  }
}

/* Very Small Devices */
@media (max-width: 380px) {
  .raza-contact-fixed {
    bottom: 15px;
    right: 15px;
  }
  .contact-item {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* --- Smooth Animations --- */

@keyframes floating-subtle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Gentle Pulse for Call Action */
.call-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #ff7f27;
  animation: ripple-soft 2.5s infinite;
}

@keyframes ripple-soft {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.contact-item:hover {
  transform: scale(1.1) rotate(5deg) !important;
}
