/* ===========================
   GLASSMORPHISM COMPONENTS
   =========================== */

.glass-card {
  background: rgba(26, 43, 79, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--spacing-lg);
  transition: all var(--transition-speed) ease;
}

.glass-card-hover {
  cursor: pointer;
}

.glass-card-hover:hover {
  background: rgba(26, 43, 79, 0.6);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.glass-card-strong {
  background: rgba(26, 43, 79, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Service Icon */
.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  margin: 0 auto var(--spacing-md);
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-orange);
}

/* Service Card */
.service-card {
  background: rgba(26, 43, 79, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  perspective: 1500px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

/* Service Cards in Our Services Section - Reduced Height by 70px */
.services-preview .service-card {
  min-height: 310px;
}

.service-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  will-change: transform;
}

/* When mouse cursor is on card - show description side (rotate to right) */
.service-card:hover .service-card-inner {
  transform: rotateY(180deg);
}

/* When mouse cursor is NOT on card - show image side */
.service-card:not(:hover) .service-card-inner {
  transform: rotateY(0deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card-front {
  background: rgba(26, 43, 79, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.service-card-front .service-card-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.service-card-front .service-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid rgba(255, 107, 53, 0.3);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
}

.service-card-front .service-icon i {
  font-size: 3.5rem;
  color: var(--primary-orange);
}

.service-card:hover .service-card-front .service-icon {
  background: rgba(255, 107, 53, 0.25);
  border-color: rgba(255, 107, 53, 0.5);
  transform: scale(1.1);
}

.service-card-front h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Stylish Fonts for Why Vista360 Section - Front Side */
.about-preview .service-card-front h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-card-back {
  background: linear-gradient(135deg, rgba(26, 43, 79, 0.9) 0%, rgba(26, 43, 79, 0.7) 100%);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: var(--spacing-lg);
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), #FFA07A, var(--primary-orange));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.service-card-back::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.service-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1;
}

.service-card-back .service-card-content {
  gap: var(--spacing-md);
}

.service-card-back-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  margin: 0 auto var(--spacing-sm);
  transition: all 0.3s ease;
}

.service-card-back-icon i {
  font-size: 2rem;
  color: var(--primary-orange);
}

/* Universal Font Styles for All Service Cards */
.service-card-back h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: var(--spacing-sm);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.service-card-back p {
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  color: var(--text-secondary);
  flex-grow: 1;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.service-card-back h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
  border-radius: 2px;
}


.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #FFA07A 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
}

.service-card-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.service-card-link:hover::before {
  left: 100%;
}

.service-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
  color: var(--white);
}

.service-card-link i {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.service-card-link:hover i {
  transform: translateX(5px);
}

/* Hero Title Card - Horizontal Animated */
.hero-title-card-wrapper {
  margin: var(--spacing-2xl) auto;
  max-width: 100%;
  overflow: visible;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title-card {
  background: none;
  border: none;
  padding: 0;
  position: relative;
  margin: 0 auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-title-card h1 {
  margin: 0;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(2rem, 4vw, 3.5rem);
  width: auto;
  overflow: visible;
  text-overflow: clip;
  padding: 0 var(--spacing-md);
  display: block;
}

/* Stat Card with Flip Animation */
.stat-card {
  background: rgba(26, 43, 79, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 0;
  text-align: center;
  transition: all var(--transition-speed) ease;
  position: relative;
  height: 100%;
  min-height: 180px;
  perspective: 1500px;
  cursor: pointer;
  transform-style: preserve-3d;
  overflow: hidden;
}

.stat-card:hover {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.stat-card .service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  will-change: transform;
}

.stat-card:hover .service-card-inner {
  transform: rotateY(180deg);
}

.stat-card .service-card-front,
.stat-card .service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  transform-style: preserve-3d;
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.stat-card .service-card-front {
  background: rgba(26, 43, 79, 0.5);
}

.stat-card .service-card-back {
  background: linear-gradient(135deg, rgba(26, 43, 79, 0.9) 0%, rgba(26, 43, 79, 0.7) 100%);
  transform: rotateY(180deg);
}

.stat-card .service-card-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), #FFA07A, var(--primary-orange));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 2;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.stat-card .service-card-back p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: var(--spacing-sm);
  text-align: center;
  position: relative;
  z-index: 2;
  font-family: 'Raleway', sans-serif;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(26, 43, 79, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: var(--spacing-xl);
  position: relative;
  height: 100%;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255, 107, 53, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--primary-orange);
  object-fit: cover;
}

.testimonial-info h5 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1.125rem;
}

.testimonial-info p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.testimonial-rating {
  color: var(--primary-orange);
  margin-bottom: var(--spacing-sm);
}

/* Portfolio Card */
.portfolio-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  height: 350px;
}

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

.portfolio-card:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0) 50%);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-lg);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  background: var(--primary-orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  width: fit-content;
}

.portfolio-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.portfolio-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-md);
}

/* Client Logo Card */
.client-card {
  background: rgba(26, 43, 79, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all var(--transition-speed) ease;
}

.client-card:hover {
  background: rgba(26, 43, 79, 0.5);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

/* Circular Client Card */
.client-card-circle {
  border-radius: 50% !important;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .client-card-circle {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .client-card-circle {
    width: 100px;
    height: 100px;
    padding: var(--spacing-sm);
  }
}

.client-logo {
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: grayscale(100%) brightness(1.5);
  transition: all var(--transition-speed) ease;
  display: block;
}

.client-card:hover .client-logo {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Clients Carousel Wrapper */
.clients-carousel-wrapper {
  padding: 0 70px;
  position: relative;
  max-width: 100%;
  overflow: visible;
}

.clients-carousel-wrapper .swiper {
  padding: 20px 0;
  overflow: hidden;
  width: 100%;
}

.clients-carousel-wrapper .swiper-wrapper {
  align-items: center;
  display: flex;
}

.clients-carousel-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Navigation Buttons */
.clients-nav-next,
.clients-nav-prev {
  color: var(--primary-orange) !important;
  background: rgba(26, 43, 79, 0.9) !important;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 107, 53, 0.5) !important;
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  margin-top: 0 !important;
  top: 50% !important;
  transform: translateY(-50%);
  z-index: 10 !important;
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  transition: all var(--transition-speed) ease;
}

.clients-nav-next::after,
.clients-nav-prev::after {
  font-size: 18px !important;
  font-weight: bold;
}

.clients-nav-next:hover,
.clients-nav-prev:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--primary-orange);
  transform: translateY(-50%) scale(1.1);
}

.clients-nav-next {
  right: 0 !important;
}

.clients-nav-prev {
  left: 0 !important;
}

/* Clients Page Navigation Buttons */
.clients-page-nav-next,
.clients-page-nav-prev {
  color: var(--primary-orange) !important;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 160, 122, 0.9)) !important;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 107, 53, 0.8) !important;
  border-radius: 50%;
  width: 60px !important;
  height: 60px !important;
  margin-top: 0 !important;
  top: 50% !important;
  transform: translateY(-50%);
  z-index: 10 !important;
  opacity: 1 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.clients-page-nav-next::after,
.clients-page-nav-prev::after {
  font-size: 22px !important;
  font-weight: bold;
  color: white !important;
}

.clients-page-nav-next:hover,
.clients-page-nav-prev:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 1), rgba(255, 160, 122, 1)) !important;
  border-color: var(--primary-orange) !important;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.clients-page-nav-next {
  right: -30px !important;
}

.clients-page-nav-prev {
  left: -30px !important;
}

@media (max-width: 768px) {
  .clients-page-nav-next,
  .clients-page-nav-prev {
    width: 50px !important;
    height: 50px !important;
  }
  
  .clients-page-nav-next::after,
  .clients-page-nav-prev::after {
    font-size: 18px !important;
  }
  
  .clients-page-nav-next {
    right: -20px !important;
  }
  
  .clients-page-nav-prev {
    left: -20px !important;
  }
}

@media (max-width: 768px) {
  .clients-carousel-wrapper {
    padding: 0 40px;
  }
  
  .clients-nav-next,
  .clients-nav-prev {
    width: 40px !important;
    height: 40px !important;
  }
  
  .clients-nav-next::after,
  .clients-nav-prev::after {
    font-size: 16px !important;
  }
}
/* Process Step Card */
.process-step {
  background: rgba(26, 43, 79, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--spacing-lg);
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B35 0%, #FFA07A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: var(--spacing-md) auto 0;
  box-shadow: var(--shadow-orange);
  flex-shrink: 0;
}

.service-card-front .process-number {
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
  margin-top: var(--spacing-sm);
}

.service-card-back .process-number {
  margin-bottom: var(--spacing-md);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--primary-orange), transparent);
  display: none;
}

@media (min-width: 992px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}

/* Team Card */
.team-card {
  width: 100%;
  position: relative;
}

.team-card .service-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.team-card .service-card-front .service-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  text-align: center;
}

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--primary-orange);
  object-fit: cover;
  margin: 0 auto var(--spacing-md);
  display: block;
  transition: transform 0.3s ease;
}

.team-card:hover .service-card-front .team-avatar {
  transform: scale(1.05);
}

.team-card .service-card-front h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.team-card .service-card-front .text-gradient {
  color: var(--primary-orange);
  font-size: 1rem;
  font-weight: 600;
  margin-top: var(--spacing-xs);
}

.team-card .service-card-back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.team-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  gap: var(--spacing-sm);
}

.team-card-content h4 {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-xs);
}

.team-card-content .text-gradient {
  color: var(--primary-orange);
  font-size: 1.1rem;
  font-weight: 600;
}

.team-card-content .small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
  font-family: 'Raleway', sans-serif;
}

.team-card-content .social-icons {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.team-card-content .social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  color: var(--primary-orange);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-card-content .social-icons a:hover {
  background: rgba(255, 107, 53, 0.25);
  border-color: var(--primary-orange);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Team Description */
.team-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.6;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}

/* Team Skills */
.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.skill-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  color: var(--primary-orange);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(255, 107, 53, 0.25);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

/* FAQ Item */
.faq-item {
  background: rgba(26, 43, 79, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.faq-item.active {
  border-color: rgba(255, 107, 53, 0.4);
}

.faq-question {
  padding: var(--spacing-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--white);
  transition: all var(--transition-speed) ease;
}

.faq-question:hover {
  color: var(--primary-orange);
}

.faq-question i {
  transition: transform var(--transition-speed) ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--spacing-md);
}

.faq-answer p {
  padding: var(--spacing-md) 0;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Contact Information Card - Modern Redesign */
.contact-info-card {
  background: rgba(26, 43, 79, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF8E53 20%, #FFA07A 40%, #FFB84D 60%, #FF6B9D 80%, #C44569 100%);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.4s ease;
}

.contact-info-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
  transform: translateY(-5px);
}

.contact-info-card:hover::after {
  width: 400px;
  height: 400px;
  top: -60%;
  right: -30%;
}

.contact-info-card h3 {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 20%, #FFA07A 40%, #FFB84D 60%, #FF6B9D 80%, #C44569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
  margin-bottom: 2.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

/* Contact Info Items */
.contact-info-item {
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100px;
}

.contact-info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

.contact-info-item:hover::before {
  left: 100%;
}

.contact-info-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.2);
}

.contact-info-item .d-flex {
  align-items: flex-start;
  position: relative;
  z-index: 1;
  width: 100%;
}

.contact-info-item .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 160, 122, 0.15) 100%);
  border: 2px solid rgba(255, 107, 53, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.contact-info-item .service-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.contact-info-item:hover .service-icon::after {
  width: 100px;
  height: 100px;
}

.contact-info-item .service-icon i {
  font-size: 1.6rem;
  color: #FF6B35;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.contact-info-item:hover .service-icon {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(255, 160, 122, 0.25) 100%);
  border-color: rgba(255, 107, 53, 0.5);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-info-item:hover .service-icon i {
  color: #FF8E53;
  transform: scale(1.1);
}

.contact-info-item > .d-flex > div:last-child {
  flex: 1;
  min-width: 0;
}

.contact-info-item h5 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.contact-info-item:hover h5 {
  color: #FFA07A;
}

.contact-info-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
}

.contact-info-item:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-info-item p span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.contact-info-item:hover p span {
  opacity: 1;
}

.contact-info-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
}

.contact-info-item a:hover {
  color: #FF6B35;
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Social Icons Section */
.contact-info-card > .mt-4 {
  margin-top: 2.5rem !important;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.contact-info-card .mt-4 h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

.contact-info-card .social-icons {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.contact-info-card .social-icons a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--white);
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.contact-info-card .social-icons a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.contact-info-card .social-icons a:hover::before {
  width: 100px;
  height: 100px;
}

.contact-info-card .social-icons a:hover {
  background: linear-gradient(135deg, #FF6B35 0%, #FFA07A 100%);
  border-color: #FF6B35;
  transform: translateY(-6px) scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  color: var(--white);
}

.contact-info-card .social-icons a i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.contact-info-card .social-icons a:hover i {
  transform: scale(1.2);
}

/* Responsive Design for Contact Info Card */
@media (max-width: 992px) {
  .contact-info-card {
    padding: 2rem;
    margin-top: 2rem;
  }
  
  .contact-info-card h3 {
    font-size: 1.625rem;
    margin-bottom: 2rem;
  }
  
  .contact-info-item {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .contact-info-item .service-icon {
    width: 56px;
    height: 56px;
    margin-right: 1rem;
  }
  
  .contact-info-item .service-icon i {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .contact-info-card {
    padding: 1.75rem;
  }
  
  .contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
  }
  
  .contact-info-item {
    padding: 1rem;
  }
  
  .contact-info-item h5 {
    font-size: 1rem;
  }
  
  .contact-info-item p {
    font-size: 0.9rem;
  }
  
  .contact-info-card .social-icons a {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .contact-info-card {
    padding: 1.5rem;
  }
  
  .contact-info-item .service-icon {
    width: 50px;
    height: 50px;
    margin-right: 0.875rem;
  }
  
  .contact-info-item .service-icon i {
    font-size: 1.3rem;
  }
}

/* ===========================
   MODERN CLIENTS PAGE DESIGN
   =========================== */

/* Modern Clients Section */
.modern-clients-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(26, 43, 79, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.modern-clients-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.modern-clients-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 160, 122, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

.modern-clients-section .section-heading-gradient {
  background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 20%, #FFA07A 40%, #FFB84D 60%, #FF6B9D 80%, #C44569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
  font-size: 2.5rem;
  font-weight: 800;
}

/* Modern Clients Carousel Wrapper */
.modern-clients-carousel-wrapper {
  position: relative;
  padding: 30px 0;
  margin-bottom: 30px;
  z-index: 1;
}

.modern-clients-carousel-wrapper:last-child {
  margin-bottom: 0;
}

.modern-clients-carousel-wrapper .swiper {
  padding: 30px 0;
  overflow: visible;
}

.modern-clients-carousel-wrapper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear;
}

/* Modern Client Card */
.modern-client-card {
  background: rgba(26, 43, 79, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 30px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modern-client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF8E53 20%, #FFA07A 40%, #FFB84D 60%, #FF6B9D 80%, #C44569 100%);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-client-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.modern-client-card:hover {
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
  background: rgba(26, 43, 79, 0.7);
}

.modern-client-card:hover::before {
  opacity: 1;
}

.modern-client-card:hover::after {
  width: 200px;
  height: 200px;
}

.modern-client-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.modern-client-card:hover .modern-client-logo {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.1);
}

/* Swiper Slide Styling */
.modern-clients-carousel-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .modern-client-card {
    height: 160px;
    padding: 25px;
  }
  
  .modern-clients-section .section-heading-gradient {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .modern-client-card {
    height: 140px;
    padding: 20px;
    border-radius: 16px;
  }
  
  .modern-clients-section {
    padding: 60px 0;
  }
  
  .modern-clients-section .section-heading-gradient {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .modern-client-card {
    height: 120px;
    padding: 15px;
  }
}

/* ===========================
   ALL CLIENTS PAGE STYLES
   =========================== */

.all-clients-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(26, 43, 79, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.all-clients-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.all-clients-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 160, 122, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

.all-client-card {
  background: rgba(26, 43, 79, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 30px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.all-client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF8E53 20%, #FFA07A 40%, #FFB84D 60%, #FF6B9D 80%, #C44569 100%);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.all-client-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.all-client-card:hover {
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
  background: rgba(26, 43, 79, 0.7);
}

.all-client-card:hover::before {
  opacity: 1;
}

.all-client-card:hover::after {
  width: 200px;
  height: 200px;
}

.all-client-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.all-client-card:hover .all-client-logo {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.1);
}

/* Responsive Design for All Clients */
@media (max-width: 992px) {
  .all-client-card {
    height: 180px;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .all-client-card {
    height: 160px;
    padding: 20px;
    border-radius: 16px;
  }
  
  .all-clients-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .all-client-card {
    height: 140px;
    padding: 15px;
  }
}

/* Clients Stats Section */
.clients-stats-section {
  padding: 80px 0;
  background: rgba(26, 43, 79, 0.3);
  position: relative;
}

.stat-card-modern {
  background: rgba(26, 43, 79, 0.5);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #FF8E53 20%, #FFA07A 40%, #FFB84D 60%, #FF6B9D 80%, #C44569 100%);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card-modern:hover {
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.stat-card-modern:hover::before {
  opacity: 1;
}

.stat-icon-modern {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 160, 122, 0.2) 100%);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.stat-icon-modern i {
  font-size: 2rem;
  background: linear-gradient(135deg, #FF6B35 0%, #FFA07A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-modern:hover .stat-icon-modern {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 160, 122, 0.3) 100%);
  border-color: rgba(255, 107, 53, 0.5);
  transform: scale(1.1) rotate(5deg);
}

.stat-value-modern {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 20%, #FFA07A 40%, #FFB84D 60%, #FF6B9D 80%, #C44569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
  margin: 1rem 0 0.5rem;
  line-height: 1;
}

.stat-label-modern {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stat-value-modern {
    font-size: 2.5rem;
  }
  
  .stat-card-modern {
    padding: 2rem 1rem;
  }
}

/* About Story Card - Custom Styling */
.about-story-card {
  width: 100%;
}

.about-story-card .service-card-back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
}

.about-story-card .about-story-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  gap: var(--spacing-lg);
}

.about-story-card .about-story-content h4 {
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.about-story-card .about-story-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.about-story-card .service-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story-card .service-card-front .service-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

/* About Story Image Card - Smaller Size */
.about-story-image-card {
  min-height: 430px !important;
  max-height: 430px !important;
  height: 430px !important;
}

@media (max-width: 992px) {
  .about-story-image-card {
    min-height: 400px !important;
    max-height: 400px !important;
    height: 400px !important;
  }
}

@media (max-width: 768px) {
  .about-story-image-card {
    min-height: 350px !important;
    max-height: 350px !important;
    height: 350px !important;
  }
}

@media (max-width: 576px) {
  .about-story-image-card {
    min-height: 300px !important;
    max-height: 300px !important;
    height: 300px !important;
  }
}

/* Mission & Values Cards - Flip Card Styling */
.mission-values-card {
  width: 100%;
}

.mission-values-card .service-card-back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
}

.mission-values-card .mission-values-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  gap: var(--spacing-lg);
}

.mission-values-card .mission-values-content h4 {
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.mission-values-card .mission-values-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.mission-values-card .service-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-values-card .service-card-front .service-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
}

/* Why Choose Us Cards - Flip Card Styling */
.why-choose-card {
  width: 100%;
}

.why-choose-card .service-card-back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
}

.why-choose-card .why-choose-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
  gap: var(--spacing-md);
  margin: 0 auto;
  padding: var(--spacing-md);
}

.why-choose-card .why-choose-content h4 {
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  margin: 0 auto;
  width: 100%;
}

.why-choose-card .why-choose-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  max-width: 100%;
  margin: 0;
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-card .service-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.why-choose-card .service-card-front .service-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  width: 100%;
  height: 100%;
  text-align: center;
}

.why-choose-card .service-card-front h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
}

.why-choose-card .service-card-front .service-icon {
  margin: 0 auto;
}



