* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #2d3748;
  line-height: 1.6;
}

/* Language Toggle Button */
.language-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
}

#langToggle {
  background: linear-gradient(135deg, #ff6b9d, #c44569);
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

#langToggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
  padding: 0 2rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.hero-text {
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;

}

.btn-primary {
  background: #ff6b9d;
  color: white;
  border: 2px solid #ff6b9d;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
  background: #c44569;
  border-color: #c44569;
  transform: translateY(-2px);
}

.btn-secondary {
  background: none;
  color: #ff6b9d;
  border: 2px solid #ff6b9d;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Common Section Styles */
section {
  padding: 4rem 2rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #4a5568;
}

/* Stats Section */
.stats {
  background-color: #f7fafc;
  padding: 1rem 2rem;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  background: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex: 1;
}


.stat-label {
  font-size: 0.9rem;
    text-align:center;
  font-weight: 600;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b9d;
}

/* About Section */
.about {
  background-color: #ffffff;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

/* Testimonials Section */

.testimonials {
  position: relative;
  background: url('https://img.freepik.com/free-vector/flat-design-geometric-pattern_23-2150010017.jpg') center/cover no-repeat;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}

.testimonials-container {
  position: relative;
  z-index: 2;
  max-width: 1800px;
  margin: 0 auto;
}

.testimonials h2 {
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.testimonial {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial p {
  font-style: italic;
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: #ff6b9d;
}

.testimonial-author div {
  font-weight: 400;
  color: #8d3653;
  font-size: 0.9rem;
}

/* Blog Section */
.blog {
  background-color: #ffffff;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.blog-post {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-post h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.blog-post p {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.blog-btn {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff6b9d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-btn:hover {
  color: #c44569;
}

/* Email Signup Section */
.email-signup {
  background: #ff6b9d;
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.signup-modal {
  max-width: 800px;
  margin: 0 auto;
}

.signup-modal h2 {
  font-size: 2rem;
  color: white;
}

.signup-modal p {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.signup-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 1.5rem;
}


/* Footer */
.footer {
  background: #1a202c;
  color: #a0aec0;
  padding: 2rem;
  text-align: center;
}
.footer p{
 font-size: 0.7rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-link {
  color: #a0aec0;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: white;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Chatbot styles */
.chatbot-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chatbot-toggle {
  background: #ff6b9d;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.05);
}

.chatbot-toggle svg {
  width: 28px;
  height: 28px;
}

.chatbot-window {
  width: 350px;
  height: 500px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 1rem;
}

.chatbot-header {
  background: #ff6b9d;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chatbot-close:hover {
  transform: rotate(90deg);
}

.chatbot-messages {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.bot-message,
.user-message {
  max-width: 85%;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.bot-message {
  align-self: flex-start;
  background-color: #f1f1f1;
  padding: 0.75rem 1rem;
  border-radius: 0;
}

.initial-message {
  background-color: transparent !important;
  font-size: 1rem;
  color: #4a5568 !important;
  border-left: 4px solid #ff6b9d;
  padding: 0.5rem 1rem;
}

.user-message {
  align-self: flex-end;
  background: linear-gradient(135deg, #ff6b9d, #c44569);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0;
}

.chatbot-options {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: white;
  border-top: 1px solid #e2e8f0;
}

.option-btn {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  padding: 0.8rem;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: #2d3748;
  text-align: left;
}

.option-btn:hover {
  background: #ff6b9d;
  color: white;
  border-color: #ff6b9d;
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 0;
  }
  .about-content p {
    font-size: 0.9rem;
  }
.stats-container {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0.5rem;
  }

  .signup-modal h2 {
  font-size: 1.5rem;
  color: white;
}
  .hero-content {
    flex-direction: column;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .btn-primary, .btn-secondary {
    width: 90%;
    text-align: center;
  }
  
  section {
    padding: 2rem 1rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .stats-container, 
  .testimonials-grid, 
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }

  .stat-item,
  .testimonial,
  .blog-post {
    padding: 1rem 1rem; /* Proper spacing for mobile items */
  }

  .stat-number {
    font-size: 1.5rem; /* Smaller number for mobile */
  }
  
  .stat-label,
  .stat-sublabel {
    font-size: 0.7rem; /* Smaller text for better fit */
  }

  .testimonial p {
    font-size: 0.6rem; /* Adjust testimonial font size */
    margin-bottom: 0.3rem;
    font-weight: 450;
  }
  .testimonial-author {
    font-size: 0.7rem;
    font-weight: 900;
  }
  .testimonial-author div {
  font-size:0.7rem;
      font-weight: 900;
}

  .blog-post h3 {
    font-size: 0.9rem;
      margin-bottom:0.2rem;
  }

  .blog-post p {
    font-size: 0.5rem;
    margin-bottom: 0.1rem;
  }

  .signup-form {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .signup-form input,
  .signup-btn {
    width: 100%;
    max-width: none;
  }
}
.chatbotMessages {
  overflow-y: auto;
}
#privacy-policy-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 20px;
  font-family: sans-serif;
  line-height: 1.5;
}

