@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}
.hero-gradient {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.testimonial-card {
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: scale(1.02);
}
.faq-item {
    transition: all 0.3s ease;
}
.faq-item:hover {
    background-color: rgba(249, 250, 251, 0.8);
}
.scroll-down {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}
.city {
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.city:hover {
    transform: translateY(-2px);
    border-color: #3b82f6; /* Tailwind blue-500 */
}

.city.border-blue-500 {
    border-color: #3b82f6;
}
/* Container styling */
* {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.counter {
    font-variant-numeric: tabular-nums;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    position: absolute;
    left: -6px;
    top: 8px;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #3b82f6;
}

.timeline-line {
    position: absolute;
    left: -1px;
    top: 20px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #e5e7eb);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.8), rgba(147, 51, 234, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.pulse-ring {
    animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.interactive-card {
    position: relative;
    overflow: hidden;
}

.interactive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.interactive-card:hover::before {
    left: 100%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
  }
  .faq-answer.open {
    max-height: 500px; /* enough for content */
    padding-top: 1rem;
  }
  .faq-item i {
    transition: transform 0.3s ease;
  }
  .faq-item i.rotate {
    transform: rotate(180deg);
  }

.nav-blur {
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.95);
}

.nav-blur {
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.95);
}

/* Desktop menu styles */
.nav-item, .nav-item-active {
  color: #374151; /* text-gray-700 */
  padding-left: 0.75rem;  /* px-3 */
  padding-right: 0.75rem;
  padding-top: 0.5rem;    /* py-2 */
  padding-bottom: 0.5rem;
  font-weight: 500;       /* font-medium */
  transition: color 0.2s;
  position: relative;
  text-decoration: none;
}
.nav-item:hover, .nav-item:focus {
  color: #2563eb;         /* hover:text-blue-600 */
}
.nav-item-active {
  color: #2563eb;         /* text-blue-600 */
  font-weight: 600;
}

/* Dropdown trigger button */
.nav-btn-dropdown {
  color: #4b5563;                   /* text-gray-600 */
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.3s;
  padding: 0.5rem 1rem;
}

/* Dropdown menu */
.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 110%;
  min-width: 14rem;
  background: #fff;
  box-shadow: 0 12px 24px -4px rgba(30,64,175,.06);
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  opacity: 0;
  visibility: hidden;
  z-index: 60;
  transition: opacity 0.3s;
}
.group:hover .nav-dropdown-menu,
.group:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* Dropdown links */
.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: #4b5563;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.dropdown-link:hover, .dropdown-link:focus {
  background: #eff6ff;
  color: #2563eb;
}

/* Responsive conditions */
.only-desktop {
  display: block;
}
@media (max-width: 767px) {
  .only-desktop { display: none; }
}

/* Mobile menu styles */
.nav-mobile-menu {
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.nav-mobile-overlay {
  background: rgba(0,0,0,0.38);
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* style.css: Corrected Rule */
.nav-mobile-content {
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80%; /* Takes up 80% of the viewport width */
  max-width: 19rem; /* Ensures it never gets wider than the desktop size */
  box-shadow: -5px 0 24px -4px rgba(30,64,175,.09);
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.nav-mobile-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  color: #4b5563;
  transition: color 0.2s;
  cursor: pointer;
  border-radius: 0.375rem;
}

.mobile-link,
.mobile-link-active {
  display: block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  color: #374151;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.mobile-link-active {
  background: #eff6ff;
  color: #2563eb;
}
.mobile-link:hover, .mobile-link:focus {
  background: #f1f5f9;
  color: #2563eb;
}
.mobile-submenu {
  padding-left: 0.75rem;
  margin-left: 0;
  border-left: 2px solid #bfdbfe;
  background: none;
}

#google_translate_element_mobile {
  display: block;
  padding: 4px 6px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f8f8f8;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.goog-logo-link, .goog-te-gadget span {
  display: none !important;
}
.goog-te-combo {
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 12px;
  background-color: #fff;
  cursor: pointer;
}
.goog-te-combo:hover {
  border-color: #666;
}