/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.skip-nav {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #1f2937;
  color: white;
  padding: 0.5rem 1rem;
  z-index: 100;
  transition: transform 0.3s;
}

.skip-nav:focus {
  left: 0;
  transform: translateY(0);
}

/* Navbar styling */
.navbar {
  background-color: #1f2937;
  padding: 1rem 2rem;
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
  font-weight: 500;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: #60a5fa;
  outline: none;
}

 

.nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #60a5fa;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #374151;
  top: 100%;
  left: 0;
  min-width: 200px;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 10;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content li {
  padding: 0;
}

.dropdown-content li a {
  display: block;
  padding: 0.75rem 1rem;
  color: white;
  transition: background-color 0.3s;
}

.dropdown-content li a:hover,
.dropdown-content li a:focus {
  background-color: #1f2937;
  color: #60a5fa;
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.3s;
}

.hamburger[aria-expanded="true"] {
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: #1f2937;
    margin-top: 1rem;
    gap: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
    opacity: 1;
    transform: none;
    transition: none;
    width: 100%;
    background-color: #2d3748;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }

  .nav-links li {
    border-bottom: 1px solid #374151;
  }

  .nav-links li a {
    padding: 1rem;
  }

  .dropdown-content li a {
    padding-left: 2rem;
  }
}

/* hero-section */
/* Add to your CSS */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-gradient {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 6rem 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #60a5fa;
  position: relative;
  display: inline-block;
}

.highlight:after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(96, 165, 250, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.platform-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.platform-item:hover {
  transform: translateY(-5px);
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
}

.platform-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}

.platform-item span {
  font-weight: 600;
  color: #e5e7eb;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary {
  background: #3B82F6;
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.cta-primary:hover {
  background: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.cta-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.909);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e5e7eb;
  font-weight: 500;
}

.trust-item svg {
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .hero-gradient {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .platform-grid {
    grid-template-columns: 1fr;
  }
}
/* Update these styles in your CSS */
.platform-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: #e5e7eb; /* Icon color */
  transition: all 0.3s ease;
}

.platform-item:hover .platform-icon {
  color: #60a5fa; /* Hover color */
  transform: scale(1.1);
}

/* feature-section */
/* Features Section */
.pva-features {
  padding: 5rem 0;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.25rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.highlight {
  color: #3b82f6;
}

.section-subtitle {
  color: #6b7280;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Platforms Grid */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.platform {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.platform:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.platform-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
}

.platform span {
  display: block;
  font-weight: 500;
  color: #4b5563;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

.feature-card p {
  color: #6b7280;
  text-align: center;
  margin-bottom: 1.5rem;
}

.feature-details {
  list-style: none;
  padding-left: 0;
}

.feature-details li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.feature-details li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.badge svg {
  width: 20px;
  height: 20px;
}

.badge span {
  font-weight: 500;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* footer section */
/* Footer Styles */
.pva-footer {
  background: #1f2937;
  color: #f9fafb;
  padding: 4rem 0 2rem;
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col {
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-about {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #3b82f6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #3b82f6;
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #d1d5db;
  line-height: 1.5;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #3b82f6;
}

/* Responsive */
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-legal {
    margin-top: 0;
  }
}


/* whatsapp section */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px; /* Changed from right to left */
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-icon {
  margin-top: 15px;
}

/* Blinking animation */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.blink {
  animation: blink 2s infinite;
}

/* Chatbot Widget Styles */
#chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#chatbot-icon {
  width: 60px;
  height: 60px;
  background: #25D366; /* WhatsApp green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

#chatbot-icon:hover {
  transform: scale(1.1);
}

#chatbot-icon span {
  font-size: 24px;
}

#chatbot-window {
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 70px;
  right: 0;
}

.hidden {
  display: none !important;
}

.chat-header {
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  margin: 0;
  font-size: 16px;
}

#close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bot-message, .user-message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
  margin: 5px 0;
}

.bot-message {
  background: #f1f1f1;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.user-message {
  background: #25D366;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

.chat-input {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

#user-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
}

#send-btn {
  background: #25D366;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

#send-btn:hover {
  background: #1da851;
}

.whatsapp-redirect {
  background: #25D366 !important;
  color: white !important;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
}

.whatsapp-redirect:hover {
  background: #1da851 !important;
}
.logo-text {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.4rem;
}

.logo-pva {
  color: #3B82F6;
  background: rgba(59, 130, 246, 0.1);
  padding: 8px 12px;
  border-radius: 8px 0 0 8px;
  border: 2px solid #3B82F6;
  border-right: none;
}

.logo-specialist {
  color: white;
  background: #3B82F6;
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  border: 2px solid #3B82F6;
  border-left: none;
}
