* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(59, 130, 246, 0.1) 0%, /* soft blue highlight */
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 20%
    ),
    linear-gradient(to bottom, #ffffff, #f8fafc, #f1f5f9);
  background-attachment: fixed;
  background-size: cover;
  color: #1e293b; /* dark text for contrast */
}

.dark-header {
  background: transparent;
  padding: 0rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  min-height: 70px;
}

.dark-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #0f172a; /* Solid dark color */
  z-index: -1;
  transition: none; /* Remove animation or transition */
}

.dark-header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1e293b; /* Optional: solid dark border */
}


@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: linear-gradient(90deg, transparent 0%, transparent 50%, #ffffff 50%, #f8fafc 100%);
  padding: 0 1rem;
  transition: all 0.3s ease;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: -10px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.logo-brand::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -20px;
  right: 20px;
  bottom: -10px;
  background: radial-gradient(circle at 30% 50%, rgba(30, 41, 59, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(51, 65, 85, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 70%, rgba(71, 85, 105, 0.06) 0%, transparent 40%);
  animation: particleFloat 6s ease-in-out infinite;
  z-index: -1;
  border-radius: 10px;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-5px) scale(1.05);
    opacity: 0.5;
  }
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-wrapper img {
  width: clamp(50px, 8vw, 80px);
  height: clamp(30px, 5vw, 50px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
  z-index: 1;
  filter: brightness(1.2) contrast(1.2);
  object-fit: contain;
}

.logo-wrapper:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(30, 41, 59, 0.4)) brightness(1.2) contrast(1.2);
}

.logo-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(30, 41, 59, 0.3) 0%,
    rgba(51, 65, 85, 0.2) 40%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.6s ease-out;
  z-index: 0;
  border-radius: 50%;
}

.logo-wrapper:hover::before {
  transform: translate(-50%, -50%) scale(1.8);
  opacity: 0.4;
}

.brand-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0; /* Allow shrinking */
}

.brand-name {
  width: clamp(100px, 12vw, 100px);
  height: auto;
  display: block;
  animation: float-smooth 3s ease-in-out infinite;
  max-width: 100%;
  margin-top: 10px;
}

@keyframes float-smooth {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.brand-tagline {
  color: #f1f5f9;
  font-size: clamp(0.55rem, 1.5vw, 0.85rem);
  font-weight: 500;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(245, 158, 11, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  display: block;
  padding: 2px 0 4px 0;
  margin-top: -2px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tagline::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #f59e0b,
    #f59e0b,
    transparent
  );
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.brand-tagline:hover {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(245, 158, 11, 0.4);
}

.brand-tagline:hover::before {
  width: 100%;
}

.brand-tagline {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

/* Navigation */
.navigation {
  display: block;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(1rem, 2vw, 1.8rem);
  margin: 0;
  padding: 0;
}

.nav-item {
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  padding: 0.6rem 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.nav-item:hover {
  color: #3b82f6;
}

.nav-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  transition: width 0.3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
  width: 100%;
}

.nav-item.active {
  color: #3b82f6;
  font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #374151;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  color: #3b82f6;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dark-header::before {
    width: 55%;
  }
  
  .container {
    background: linear-gradient(90deg, transparent 0%, transparent 55%, #ffffff 55%, #f8fafc 100%);
    padding: 0 1.5rem;
  }
  
  .logo-brand {
    gap: clamp(0.8rem, 3vw, 1rem);
  }
  
  .nav-menu {
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
  }
}

@media (max-width: 768px) {
  .dark-header {
    min-height: 60px;
  }
  
  .dark-header::before {
    width: 60%;
  }
  
  .container {
    background: linear-gradient(90deg, transparent 0%, transparent 60%, #ffffff 60%, #f8fafc 100%);
    min-height: 60px;
    padding: 0 1rem;
  }
  
  .logo-brand {
    gap: clamp(0.5rem, 2vw, 1rem);
  }
  
  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
  }

  .navigation.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .logo-wrapper:hover img {
    transform: scale(1.1);
  }
  
  .logo-wrapper:hover::before {
    transform: translate(-50%, -50%) scale(1.4);
  }
}

@media (max-width: 480px) {
  .dark-header {
    min-height: 55px;
  }
  
  .dark-header::before {
    width: 65%;
  }
  
  .container {
    background: linear-gradient(90deg, transparent 0%, transparent 65%, #ffffff 65%, #f8fafc 100%);
    min-height: 55px;
    padding: 0 0.75rem;
  }
  
  .logo-brand {
    gap: clamp(0.3rem, 1.5vw, 0.8rem);
  }
  
  .brand-tagline {
    font-size: clamp(0.5rem, 1.2vw, 0.65rem);
    max-width: 120px;
  }
}

@media (max-width: 360px) {
  .dark-header {
    min-height: 50px;
  }
  
  .container {
    min-height: 50px;
    padding: 0 0.5rem;
  }
  
  .logo-brand {
    gap: clamp(0.2rem, 1vw, 0.5rem);
  }
  
  .brand-tagline {
    font-size: 0.45rem;
    max-width: 100px;
  }
  
  .mobile-menu-btn {
    font-size: 1.2rem;
    padding: 0.3rem;
  }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
    padding: 0 2rem;
  }
  
  .logo-brand {
    gap: 4rem;
  }
  
  .nav-menu {
    gap: 2.2rem;
  }
}

/* Contact dropdown responsive fixes */
.nav-item-contact {
  position: relative;
}

.contact-dropdown {
  position: absolute;
  margin-top: 5px;
  top: 100%;
  right: -50px;
  width: 220px;
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .contact-dropdown {
    margin-top: 8px;
  }
}

@media (min-width: 1024px) {
  .contact-dropdown {
    margin-top: 12px;
  }
}

.contact-dropdown::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 35%;
  transform: translateX(50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
}

.nav-item-contact:hover .contact-dropdown {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .nav-item-contact {
    width: 100%;
    text-align: center;
  }
  
  .nav-item-contact .nav-item {
    display: block;
    padding: 1rem 0;
  }
  
  .contact-dropdown {
    position: static;
    margin-top: 0;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    right: auto;
    transform: none;
  }
  
  .contact-dropdown::before {
    display: none;
  }
  
  .nav-item-contact:hover .contact-dropdown {
    transform: none;
  }
}

.contact-card h4 {
  color: #3b82f6;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}

.contact-card p {
  color: #374151;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-card i {
  color: #f59e0b;
  width: 20px;
  text-align: center;
}

/* Content sections and other styles remain the same... */
.footer {
  background-color: #f8fafc;
  color: #374151;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
  font-weight: 500;
}

.content-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-container {
  flex: 1;
  min-width: 300px;
  padding: 0.85rem;
}

.welcome-container h2 {
  color: #3b82f6;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.welcome-text {
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.welcome-subtext {
  color: #d97706;
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.cta-button {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.video-container {
  flex: 1;
  min-width: 300px;
  margin-top: -10px;
}

.video-container video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    padding: 2rem 0;
  }

  .welcome-container {
    order: 1;
    text-align: center;
  }

  .video-container {
    order: 2;
  }

  .welcome-container h2 {
    font-size: 1.8rem;
  }
}

.welcome-container {
  margin-top: -60px;
  z-index: 10;
  transition: margin-top 0.3s ease;
}

@media (max-width: 768px) {
  .welcome-container {
    margin-top: -20px;
  }
}

.welcome-heading {
  margin-bottom: 2rem;
}

.welcome-greet {
  display: block;
  font-size: 1.2rem;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  animation: fadeIn 1s ease-out;
  position: relative;
  top: 10px;
}

.welcome-container h2 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  line-height: 1;
  text-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
  animation: slideIn 0.8s ease-out;
}

.seva-highlight {
  color: #f59e0b;
  background-clip: initial;
  -webkit-background-clip: initial;
  background: transparent;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.welcome-message {
  position: relative;
  font-size: 1.2rem;
  color: #1e293b;
  margin: 2rem 0;
  padding-left: 2rem;
  border-left: 3px solid #3b82f6;
  top: -10px;
  font-weight: 500;
}

.welcome-quote {
  color: #1e293b;
  font-style: italic;
  font-size: 1.1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: #ffffff;
  border-radius: 12px;
  display: inline-block;
  animation: fadeIn 1.5s ease-out, quoteGlow 3s ease-in-out infinite;
  position: relative;
  top: -5px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.welcome-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, #2563eb 0%, #5b21b6 100%);
  animation: fadeIn 1.5s ease-out;
}

@keyframes quoteGlow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
  }
  50% {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@media (max-width: 768px) {
  .welcome-container h2 {
    font-size: 2.5rem;
  }

  .welcome-message {
    font-size: 1.2rem;
  }
}

.whatsapp-contact {
  position: relative;
  width: 100%;
  text-align: right;
  margin: -3rem 0 -1.5rem;
  padding-right: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  animation: pulse 2s infinite;
  top: 20px;
}

.whatsapp-btn i {
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-btn i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover i {
  transform: rotate(15deg);
}

@keyframes pulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  }
}

.whatsapp-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.whatsapp-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.whatsapp-btn i {
  animation: bounce 2s infinite;
}

.whatsapp-btn:hover i {
  animation: none;
}

.faq-btn {
  display: inline-flex;
  position: relative;
  top: -20px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  animation: pulse 2s infinite;
}

.testimonials-btn {
  display: inline-flex;
  position: relative;
  top: -20px;
  left: -110px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  overflow: hidden;
  border: none;
  animation: pulse 2s infinite;
}

.faq-btn i,
.testimonials-btn i {
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

.faq-btn:hover,
.testimonials-btn:hover {
  transform: translateY(-5px) scale(1.05);
  animation: none;
}
.faq-btn:hover {
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}
.testimonials-btn:hover {
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
}

.buttons-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  margin: 1rem 0;
}
.testimonials-btn {
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .buttons-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin: 2rem 0;
  }

  .faq-btn,
  .testimonials-btn {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
    width: 80%;
    max-width: 300px;
  }

  .whatsapp-contact {
    margin: 1rem 0;
    text-align: center;
    padding-right: 0;
  }

  .whatsapp-btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .buttons-container {
    margin: 1.5rem 0;
  }

  .faq-btn,
  .testimonials-btn,
  .whatsapp-btn {
    width: 90%;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .faq-btn i,
  .testimonials-btn i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-btn,
  .testimonials-btn,
  .whatsapp-btn {
    width: 95%;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .faq-btn i,
  .testimonials-btn i,
  .whatsapp-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .buttons-container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 2rem 0;
    width: 100%;
  }

  .faq-btn,
  .testimonials-btn,
  .whatsapp-btn {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
    width: 80%;
    max-width: 300px;
  }

  .whatsapp-contact {
    margin: 0;
    text-align: center;
    padding-right: 0;
    width: 100%;
  }

  .whatsapp-btn {
    width: 85%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .buttons-container {
    gap: 12px;
    margin: 1.5rem 0;
  }

  .faq-btn,
  .testimonials-btn,
  .whatsapp-btn {
    width: 90%;
    padding: 12px 24px;
    font-size: 1rem;
  }
}

.faq-btn {
  margin-top: -10px;
}

@media (max-width: 480px) {
  .buttons-container {
    gap: 10px;
  }

  .faq-btn,
  .testimonials-btn,
  .whatsapp-btn {
    width: 95%;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.faq-container {
  max-width: 1000px;
  margin: 1.5rem auto;
  padding: 0 1.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-header h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.faq-header p {
  font-size: 1rem;
  color: #374151;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.search-container {
  display: flex;
  margin-bottom: 1.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#faq-search {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px 0 0 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #1e293b;
}

#faq-search:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

.search-btn {
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
  padding: 0 1.25rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.search-btn:hover {
  background-color: #2563eb;
}

.faq-accordion {
  margin-bottom: 2.5rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1rem 1.5rem;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(248, 250, 252, 0.8);
}

.faq-question h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.3s ease;
}

.faq-question .icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  color: #374151;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
}

.faq-answer-content {
  padding: 0 1.5rem;
  line-height: 1.6;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
}

.faq-item.active {
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.faq-item.active .faq-question {
  background-color: rgba(59, 130, 246, 0.05);
}

.faq-item.active .faq-question h3 {
  color: #3b82f6;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  color: #3b82f6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 0;
}

.faq-contact-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 10px;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}

.faq-contact-cta p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.no-results {
  text-align: center;
  padding: 1.5rem;
  font-size: 1rem;
  color: #374151;
  display: none;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-weight: 500;
}

.contact-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 1.75rem;
  }

  .faq-question {
    padding: 0.9rem 1.25rem;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 0 1rem;
  }

  .faq-question {
    padding: 0.8rem 1rem;
  }

  .faq-answer-content {
    padding: 0 1rem;
    font-size: 0.9rem;
  }

  .faq-item.active .faq-answer {
    padding: 0.8rem 0;
  }
}

/* How we Work section */
/* ===============================================
   ENHANCED VIDEO CONTAINER - WITH BORDERS
   Professional Blue/Teal with attractive borders
   =============================================== */

.video-inner-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e40af 0%, #0891b2 50%, #059669 100%);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  animation: containerPulse 4s infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(8, 145, 178, 0.3);
}

.video-header-overlay {
  background: rgba(15, 23, 42, 0.95);
  color: white;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid rgba(8, 145, 178, 0.4);
  position: relative;
  animation: headerGlow 3s infinite;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.3), transparent);
  animation: pulse-sweep 2s infinite;
}

.video-main-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 12px 10px 12px;
  position: relative;
}

.video-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  position: relative;
}

.video-step {
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(8, 145, 178, 0.3);
  position: relative;
  cursor: pointer;
  animation: stepSlideIn 0.6s ease-out forwards;
  animation-delay: calc(var(--step, 1) * 0.1s);
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-step[data-step="1"] { --step: 1; }
.video-step[data-step="2"] { --step: 2; }
.video-step[data-step="3"] { --step: 3; }
.video-step[data-step="4"] { --step: 4; }

.video-step:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(8, 145, 178, 0.8);
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.4);
}

.video-step.auto-highlight {
  background: rgba(255,255,255,0.3) !important;
  border-color: rgba(8, 145, 178, 1) !important;
  box-shadow: 0 0 25px rgba(8, 145, 178, 0.6) !important;
  transform: scale(1.05) !important;
}

.step-number {
  position: absolute;
  top: 4px;
  right: 6px;
  background: linear-gradient(45deg, #0891b2, #059669);
  color: white;
  font-size: 0.5rem;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.video-step-icon {
  font-size: 1rem;
  margin-bottom: 5px;
  display: block;
  animation: iconBounce 2s infinite;
  animation-delay: calc(var(--step, 1) * 0.3s);
}

.step-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  background: linear-gradient(45deg, rgba(8, 145, 178, 0.1), rgba(5, 150, 105, 0.1));
  opacity: 0;
  animation: stepGlow 3s infinite;
  animation-delay: calc(var(--step, 1) * 0.5s);
}

.step-connector-line {
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(100% - 16px);
  height: 2px;
  background: rgba(255,255,255,0.2);
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 1px;
  border: 1px solid rgba(8, 145, 178, 0.2);
}

.step-connector-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #0891b2, #059669);
  width: 0%;
  animation: progressFill 2s ease-in-out 1s forwards;
  border-radius: 1px;
}

.video-step-text {
  width: 100%;
  position: relative;
  z-index: 2;
}

.video-step-title {
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.1;
}

.video-step-desc {
  color: rgba(255,255,255,0.85);
  font-size: 0.5rem;
  line-height: 1.2;
  opacity: 0.9;
}

.video-cta-area {
  text-align: center;
  margin-top: 3px;
  position: relative;
}

.cta-highlight {
  color: #fbbf24;
  font-size: 0.55rem;
  font-weight: 600;
  margin-bottom: 5px;
  animation: sparkle 2s infinite;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.enhanced-btn {
  background: linear-gradient(45deg, #0891b2, #059669, #0891b2);
  background-size: 200% 100%;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 7px 15px;
  border-radius: 25px;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
  animation: buttonPulse 2s infinite;
}

.enhanced-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 30px rgba(8, 145, 178, 0.6);
  background-position: 100% 0;
  border-color: rgba(255, 255, 255, 0.8);
}

.enhanced-btn:active {
  border-color: rgba(8, 145, 178, 1);
  box-shadow: 0 4px 15px rgba(8, 145, 178, 0.8);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: btnShine 3s infinite;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.enhanced-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-countdown {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.4rem;
  color: #fbbf24;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.5);
  padding: 1px 6px;
  border-radius: 8px;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.urgency-text {
  color: #fbbf24;
  font-size: 0.45rem;
  font-weight: 600;
  margin-top: 8px;
  animation: urgencyBlink 1.5s infinite;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mouse Spotlight */
.mouse-spotlight {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.3) 0%, transparent 70%);
  pointer-events: none;
  transition: all 0.1s ease;
  z-index: 10;
  opacity: 0;
  border: 1px solid rgba(8, 145, 178, 0.2);
}

/* Enhanced Floating Elements - Better Visibility */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.float-element {
  position: absolute;
  font-size: 1rem;
  opacity: 0.8;
  animation: floatAround 6s infinite ease-in-out;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-1 {
  top: 10%;
  left: 8%;
  animation-delay: 0s;
  background: rgba(245, 158, 11, 0.3);
  border-color: rgba(245, 158, 11, 0.8);
}

.float-2 {
  top: 55%;
  right: 55%;
  animation-delay: 2s;
  background: rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.8);
}

.float-3 {
  bottom: 35%;
  left: 85%;
  animation-delay: 4s;
  background: rgba(16, 185, 129, 0.3);
  border-color: rgba(16, 185, 129, 0.8);
}

/* Enhanced float animation with glow */
@keyframes floatAround {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  33% { 
    transform: translateY(-15px) rotate(120deg) scale(1.1);
    opacity: 1;
  }
  66% { 
    transform: translateY(8px) rotate(240deg) scale(0.9);
    opacity: 0.9;
  }
}

/* Add glow effect on hover for container */
.video-inner-content:hover .float-element {
  opacity: 1;
  animation-duration: 4s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .float-element {
    font-size: 0.8rem;
    width: 25px;
    height: 25px;
    padding: 4px;
    opacity: 0.6;
  }
  
  .float-1 {
    top: 30%;
    left: 10%;
  }
  
  .float-2 {
    top: 50%;
    right: 10%;
  }
  
  .float-3 {
    bottom: 25%;
    left: 80%;
  }
}

/* Enhanced Animations */
@keyframes containerPulse {
  0%, 100% { 
    box-shadow: 0 0 30px rgba(8, 145, 178, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  50% { 
    box-shadow: 0 0 50px rgba(8, 145, 178, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

@keyframes stepSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerGlow {
  0%, 100% { 
    box-shadow: 0 0 5px rgba(8, 145, 178, 0.3);
    border-bottom-color: rgba(8, 145, 178, 0.4);
  }
  50% { 
    box-shadow: 0 0 15px rgba(8, 145, 178, 0.6);
    border-bottom-color: rgba(8, 145, 178, 0.8);
  }
}

@keyframes pulse-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes stepGlow {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@keyframes progressFill {
  to { width: 100%; }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes buttonPulse {
  0%, 100% { 
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
  }
  50% { 
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
  }
}

@keyframes btnShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

@keyframes urgencyBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes floatAround {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(120deg); }
  66% { transform: translateY(5px) rotate(240deg); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .video-steps-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .video-main-area {
    padding: 12px 10px 8px 10px;
  }
  
  .video-step {
    padding: 6px;
    text-align: center;
    border-width: 1px;
  }
  
  .video-step-icon {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  
  .video-step-title {
    font-size: 0.6rem;
  }
  
  .video-step-desc {
    font-size: 0.45rem;
  }
  
  .video-header-overlay {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
  
  .enhanced-btn {
    padding: 6px 12px;
    font-size: 0.6rem;
    border-width: 1px;
  }
  
  .cta-highlight {
    font-size: 0.5rem;
  }
  
  .urgency-text {
    font-size: 0.4rem;
  }
  
  .step-connector-line {
    display: none;
  }
  
  .video-inner-content {
    border-width: 1px;
  }
}

