
:root {
  /* Color Palette */
  --gold: #D4AF37;       /* Primary gold */
  --gold-light: #FFD700;  /* Brighter gold */
  --gold-dark: #B7950B;   /* Darker gold */
  --black: #000000;       /* Pure black */
  --black-soft: #121212;  /* Soft black */

  /* emojies */
   --rose-gold: #E0BFB8; 
  --rose-gold-dark: #CB9E9B;
  --rose-gold-light: #F5D7CC; 
  
  /* Theme Application */
  --primary: var(--gold);
  --secondary: var(--black);
  --text-on-gold: var(--black);
  --text-on-black: var(--gold);
  --bg-soft: #1A1A1A;
}

/* Base Styling */
body {
  background-color: var(--black-soft);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
}


/* Text Colors */
.text-gold { color: var(--gold) !important; }
.text-gold-light { color: var(--gold-light) !important; }
.text-black { color: var(--black) !important; }
.text-on-gold { color: var(--text-on-gold) !important; }
.text-on-black { color: var(--text-on-black) !important; }

/* Background Colors */
.bg-gold { background-color: var(--gold) !important; }
.bg-gold-light { background-color: var(--gold-light) !important; }
.bg-gold-dark { background-color: var(--gold-dark) !important; }
.bg-black { background-color: var(--black) !important; }
.bg-black-soft { background-color: var(--black-soft) !important; }

/* Borders */
.border-gold { border-color: var(--gold) !important; }
.border-gold-light { border-color: var(--gold-light) !important; }

/* Basics */
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

/* Navbar */
/* Navbar Container - Add to your style.css */
#navbar.navbar {
  min-height: 80px; /* Fixed height */
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center; /* Vertical centering */
}

/* Logo Container - Keeps size consistent */
.navbar-brand {
  height: 60px; /* Match logo height */
  display: flex;
  align-items: center;
  padding: 0; /* Remove default padding */
}

/* Logo Image - Now fully controllable */
.navbar-brand img {
  height: 100%; /* Fills container height */
  width: auto;
  max-width: 180px; /* Prevent over-expansion */
  object-fit: contain;
  transition: all 0.3s ease;
  animation: logoEntrance 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Mobile adjustments */
@media (max-width: 992px) {
  #navbar.navbar {
    min-height: 70px; /* Slightly smaller on mobile */
  }
  .navbar-brand {
    height: 50px;
  }
}

/* Toggler alignment */
.navbar-toggler {
  margin-left: auto; /* Push to right */
  align-self: center; /* Vertical center */
}

/* Add a wrapper to contain all main content and push it down */
.main-content-wrapper {
  padding-top: 80px;
}

/* Hero Section (Main Slider) */
.hero-section {
  /* No top margin needed here. The wrapper handles it. */
}

/* Set the height of the main carousel container. */
/* Hero Section (Main Slider) */
.carousel-inner {
  height: auto; /* Remove fixed height */
  max-height: 80vh; /* Optional: Set a maximum height */
  background-color: var(--bg-soft);
}

.carousel-image-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (adjust as needed) */
  height: 0;
  overflow: hidden;
}

.carousel-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Change from 'contain' to 'cover' */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .45));
}

.carousel-caption {
  bottom: 18%;
  text-align: left;
}

.carousel-caption h1,
.carousel-caption p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

@media (max-width: 991.98px) {
  .carousel-caption {
    bottom: 12%;
    text-align: center;
  }
}

/* Sections */
.section-padding {
  padding: 72px 0;
}

.section-title {
  font-weight: 700;
}

/* Cards */
.feature-card,
.service-card,
.testimonial-card,
.visa-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 12px;
  padding: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.visa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Services Animation Styles - Consolidated */
.service-item .animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
}

.service-item .animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

/* Sequential Animation Delays */
.service-item:nth-child(1) .animate-on-scroll {
  transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
}
.service-item:nth-child(2) .animate-on-scroll {
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
}
.service-item:nth-child(3) .animate-on-scroll {
  transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
}

/* Service Icon Styling */
.service-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
}

/* Visa Gallery (Success Visas) */
#success-carousel-container {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 20px 10px 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#success-carousel-container::-webkit-scrollbar {
  display: none;
}

#success-carousel-slider {
  display: inline-flex;
  gap: 15px;
  padding: 0 15px;
}

.carousel-item-custom {
  flex-shrink: 0;
  text-align: center;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  width: 280px; /* Fixed width for consistent sizing */
}

.carousel-item-custom img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.carousel-item-custom img:hover {
  transform: scale(1.05);
}

/* Text styling */
.carousel-item-custom p {
  color: var(--gold) !important;
  margin: 10px 0 0 0;
  font-size: 0.9rem;
}

/* Testimonials */
.avatar {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.stars i {
  margin-right: 2px;
}

/* Contact */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
}

.map-placeholder {
  height: 280px;
  background: rgba(255, 255, 255, .15);
}

/* WhatsApp FAB */
/* WhatsApp Float Button */
.whatsapp-float {
  /* Remove underline */
  text-decoration: none !important;
  
  /* Base styling */
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float i {
  font-size: 30px;
  transition: transform 0.3s ease;
}

/* Hover Animation */
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover i {
  transform: scale(1.2);
}

/* Pulse Animation */
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: whatsappPulse 2s infinite;
}

/* Click Effect */
.whatsapp-float:active {
  transform: scale(0.95);
}

/* Buttons */
.btn-gold {
  background-color: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  color: var(--black);
  border-color: var(--gold-dark);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* Forms */
.form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-light);
  color: var(--gold-light);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
  color: rgba(212, 175, 55, 0.6);
}

/* Accent Elements */
.accent-gold {
  position: relative;
}

.accent-gold::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--gold);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}
/* Testimonial Cards */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3) !important;
}

/* Form Styling */
.form-control {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: var(--gold-light);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Contact Icons */
.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

/* Add animation to existing heading without conflict */
.text-center.mb-5.text-gold {
  /* Initial state */
  filter: blur(6px);
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  
  /* Ultra-slow animation - 2.5s duration */
  transition: 
    filter 2.5s cubic-bezier(0.12, 0.82, 0.32, 1),
    opacity 2.5s ease-in-out,
    transform 2.5s cubic-bezier(0.12, 0.82, 0.32, 1);
  
  will-change: filter, opacity, transform;
  perspective: 1000px; /* Enhances 3D smoothness */
}

.text-center.mb-5.text-gold.animated {
  /* Final state */
  filter: blur(0);
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Share your experience */
/* Form Container - Elegant Entrance */
.share-experience-form {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.share-experience-form.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Field Animations - Subtle Stagger */
.share-experience-form .form-control {
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.7s ease-out;
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -ms-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
}

/* Perfectly Timed Sequence */
.share-experience-form.animated .form-control:nth-child(1) {
  transition-delay: 0.4s; /* Name field */
}
.share-experience-form.animated .form-control:nth-child(2) {
  transition-delay: 0.5s; /* Feedback field */
}
.share-experience-form.animated .btn {
  transition-delay: 1s; /* Buttons */
}

/* Final State */
.share-experience-form.animated .form-control,
.share-experience-form.animated .btn {
  opacity: 1;
  transform: translateX(0);
}

/* Focus/Hover Effects */
.form-control:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
  transform: scale(1.02);
  transition: all 0.3s ease; /* Faster interaction */
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

@media (prefers-reduced-motion) {
  .share-experience-form {
    transition: none !important;
    transform: none !important;
  }
}

/* emojies animation */ 
.rose-outline {
  color: var(--rose-gold);
  text-shadow: 
    -1px -1px 0 var(--black),
    1px -1px 0 var(--black),
    -1px 1px 0 var(--black),
    1px 1px 0 var(--black);
}

/* Pulse Animation */
@keyframes gold-pulse {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
  }
  50% { 
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7));
  }
}

.emoji-pulse {
  display: inline-block;
  animation: gold-pulse 3s infinite ease-in-out;
}

/* Make animations bidirectional */
.services-section,
.testimonials-section,
.share-experience-form {
  transition: all 0.8s cubic-bezier(0.16, 0.85, 0.3, 1.1);
  will-change: transform, opacity;
}

/* Reset state for scroll-up triggers */
.services-section:not(.animated) {
  opacity: 0;
  transform: translateY(30px);
}

/* Visa Section Styles */
.filter-btn.active {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.visa-card {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hover-grow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.processing-time {
  border-top: 1px dashed var(--gold-light);
  border-bottom: 1px dashed var(--gold-light);
}

.visa-types div {
  padding: 6px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Flag image styling */
.visa-card img {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 2px;
}

/* ===== Visa Services Section ===== */
#visas {
  scroll-margin-top: 100px;
  position: relative;
}

/* Visa Cards */
.visa-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.hover-grow:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.flag-icon {
  border: 1px solid var(--gold);
  border-radius: 4px;
  object-fit: contain;
  background-color: rgba(0,0,0,0.1);
  padding: 2px;
}

.flag-placeholder {
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.1);
  border-radius: 4px;
  border: 1px solid var(--gold);
}

/* Region Tabs */
.nav-pills .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--gold);
  margin: 0 5px;
  transition: all 0.3s ease;
  padding: 8px 20px;
}

.nav-pills .nav-link.active {
  background-color: var(--gold);
  color: var(--black);
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.nav-pills .nav-link:hover:not(.active) {
  background-color: rgba(212, 175, 55, 0.1);
}

/* Processing Time */
.processing-time {
  border-top: 1px dashed rgba(212, 175, 55, 0.3);
  border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
  margin: 15px 0;
}

/* Visa Types */
.visa-types div {
  transition: all 0.2s ease;
}

.visa-types div:hover {
  background-color: rgba(212, 175, 55, 0.05);
}

.visa-types div:last-child {
  border-bottom: none !important;
}

/* Empty State */
.alert-gold {
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  #visas {
    scroll-margin-top: 80px;
  }
  
  .nav-pills .nav-link {
    padding: 6px 12px;
    font-size: 0.9rem;
    margin: 0 3px 5px;
  }
}

@media (max-width: 767.98px) {
  .visa-card {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .flag-icon, .flag-placeholder {
    width: 50px;
    height: 35px;
  }
}

/* ===== Visa Services Scroll Animations ===== */
/* Building on your existing animation system */

/* Section Title Animation (matches your existing heading style) */
#visas h2.animate-on-scroll {
  filter: blur(6px);
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  transition: 
    filter 1.2s cubic-bezier(0.12, 0.82, 0.32, 1),
    opacity 1.2s ease-in-out,
    transform 1.2s cubic-bezier(0.12, 0.82, 0.32, 1);
  will-change: filter, opacity, transform;
  perspective: 1000px;
}

#visas h2.animate-on-scroll.visible {
  filter: blur(0);
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Region Tabs Animation */
#regionTabs.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#regionTabs.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Visa Cards Animation - Enhanced version */
.visa-card {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-property: opacity, transform, box-shadow;
  will-change: transform, opacity;
}

.visa-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation for cards */
.visa-card.visible:nth-child(1) { transition-delay: 0.1s; }
.visa-card.visible:nth-child(2) { transition-delay: 0.2s; }
.visa-card.visible:nth-child(3) { transition-delay: 0.3s; }
.visa-card.visible:nth-child(4) { transition-delay: 0.4s; }
.visa-card.visible:nth-child(5) { transition-delay: 0.5s; }
.visa-card.visible:nth-child(6) { transition-delay: 0.6s; }
.visa-card.visible:nth-child(7) { transition-delay: 0.7s; }
.visa-card.visible:nth-child(8) { transition-delay: 0.8s; }

/* Hover effects (building on your existing .hover-grow) */
.hover-grow:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2) !important;
}

/* Empty State Animation */
#visas .alert-gold {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease-out;
}

#visas .alert-gold.visible {
  opacity: 1;
  transform: scale(1);
}

/* Tab Content Transition */
.tab-content > .tab-pane {
  transition: opacity 0.4s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .visa-card {
    transform: translateY(20px) scale(0.98);
    transition-duration: 0.4s;
  }
  
  /* Reduce delay between cards on mobile */
  .visa-card.visible:nth-child(n) { 
    transition-delay: 0.1s !important; 
  }
}


  /* Contact Section Styles */
  .country-selector .btn {
    transition: all 0.3s ease;
  }
  
  .country-selector .btn:hover {
    transform: translateY(-2px);
  }
  
  .country-selector .btn.active {
    background-color: rgba(210, 180, 140, 0.2);
    transform: translateY(-2px);
  }
  
  .country-logo {
    transition: transform 0.3s ease;
  }
  
  .country-selector .btn:hover .country-logo {
    transform: scale(1.1);
  }
  
  .map-container {
    min-height: 300px;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Animation for contact cards */
  .contact-card {
    transition: all 0.5s ease;
  }
  
  /* Form styles */
  .form-control {
    color: #d2b48c;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #d2b48c;
  }
  
  .form-control:focus {
    background-color: rgba(0, 0, 0, 0.7);
    color: #d2b48c;
    border-color: #d2b48c;
    box-shadow: 0 0 0 0.25rem rgba(210, 180, 140, 0.25);
  }

/* Contact Section Animations */
#contact .container {
  overflow: hidden; /* Ensures animations stay contained */
}

#contact h2.animate-on-scroll {
  /* Building on your existing heading animation */
  filter: blur(6px);
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  transition: 
    filter 1.2s cubic-bezier(0.12, 0.82, 0.32, 1),
    opacity 1.2s ease-in-out,
    transform 1.2s cubic-bezier(0.12, 0.82, 0.32, 1);
}

#contact h2.animate-on-scroll.animated {
  filter: blur(0);
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Country Selector Animation */
.country-selector {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.country-selector.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Card Animation */
.contact-card {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-property: opacity, transform;
}

.contact-card.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Map Container Animation */
.map-container {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s ease-out;
}

.map-container.animated {
  opacity: 1;
  transform: scale(1);
}

/* Staggered Animations */
.country-selector.animated {
  transition-delay: 0.3s;
}

.contact-card.animated {
  transition-delay: 0.6s;
}

.map-container.animated {
  transition-delay: 0.9s;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;  
  min-height: 250px; /* make sure height fits cards */
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0; /* 🔥 hide by default */
  transform: translateY(20px); /* slide-up animation */
  filter: blur(5px); /* start blurred */
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  pointer-events: none; /* disable hidden cards */
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
  position: relative; /* keep active card in flow */
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .testimonial-slider {
    min-height: 300px;
  }
  .testimonial-card {
    padding: 0.5rem;
  }
}

#navbarNav .nav-link.active {
  color: #FFD700 !important;  /* gold highlight */
  font-weight: 600;
}
