:root {
    --primary-skyblue: #170b85;
    --secondary-skyblue: #87ceeb;
    --dark-skyblue: #1073b4;
    --accent-orange: #ff7f50;
    --accent-green: #2e8b57;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-text: #333333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: "Poppins", sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
    NAVIGATION
=============================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-skyblue);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    animation: slideDown 0.7s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
}

/* MODIFIED: New style for the logo image */
.logo-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}


.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    position: relative;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-orange);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================
    DROPDOWN FIX + ANIMATION
=============================== */
.login-btn {
  position: relative;
  margin-left: 25px;
  background: none;
  border: none;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.login-btn:hover {
  color: var(--accent-orange);
}

.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 20;
}

.dropdown li a {
  display: block;
  padding: 12px 16px;
  color: var(--dark-text);
  font-weight: 500;
  transition: var(--transition);
}

.dropdown li a:hover {
  background: var(--light-bg);
  color: var(--primary-skyblue);
  padding-left: 20px;
}

.login-btn:hover+.dropdown,
.dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================
    HERO SECTION
=============================== */
.hero {
  background: linear-gradient(135deg,
      rgba(16, 5, 170, 0.9) 0%,
      rgba(16, 0, 238, 0.9) 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--white);
  padding: 0 20px;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-content {
  max-width: 800px;
  animation: slideUp 1s ease 0.5s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--accent-orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: var(--transition);
}

.btn:hover {
  background: var(--accent-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover:after {
  left: 100%;
}

/* ============================
    SECTIONS
=============================== */
section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-skyblue);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--accent-orange);
  bottom: 0;
  left: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    width: 70px;
  }

  50% {
    width: 100px;
  }

  100% {
    width: 70px;
  }
}

/* ============================
    CATEGORIES
=============================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-skyblue);
  transition: var(--transition);
}

.category-card:hover .category-icon {
  color: var(--accent-orange);
  transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
  margin-bottom: 15px;
  color: var(--primary-skyblue);
}
/* ============================
    HOW IT WORKS - FIXED ALIGNMENT & ENHANCED ANIMATION
=============================== */
.how-it-works {
    /* Retained: Original background */
    background: linear-gradient(to bottom, var(--white), var(--secondary-skyblue));
}

.steps {
    /* Retained: Flex layout and centering */
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 900px;
    position: relative;
    margin: 0 auto;
}

.step {
    /* Retained: Sizing and positioning */
    flex: 0 1 250px;
    padding: 0 10px;
    text-align: center;
    position: relative;
    z-index: 1;

    /* ADDED: Base animation and staggered delay for sequential entry */
    animation: fadeInUp 1s ease both;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.3s;
}

.step:nth-child(3) {
    animation-delay: 0.5s;
}

.step-number {
    /* Retained: Basic styling */
    width: 60px;
    height: 60px;
    background: var(--primary-skyblue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    
    /* ADDED: Default glow and smooth transition for the hover effect */
    box-shadow: 0 0 0 0 rgba(23, 11, 133, 0.4);
    transition: var(--transition), box-shadow 0.6s ease;
}

/* Retained: The original ripple animation styling */
.step-number:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-skyblue);
    animation: ripple 1.5s infinite;
    opacity: 0;
}

/* Updated: Step hover effect */
.step:hover .step-number {
    background: var(--accent-orange);
    transform: scale(1.1);
    /* ADDED: Brighter box-shadow on hover */
    box-shadow: 0 0 15px 5px rgba(255, 127, 80, 0.8);
}

.step h3 {
    /* Retained: Heading color */
    margin-bottom: 15px;
    color: var(--primary-skyblue);
}

.steps-connector {
    /* Retained: Line connecting the steps */
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--primary-skyblue);
    opacity: 0.5;
    z-index: 0;
}

/* Retained: Responsive Video Embed Styles */
.how-it-works-video {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.how-it-works-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
/* ============================
    TESTIMONIALS
=============================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: fadeInUp 1s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30px;
  border-width: 15px 15px 0;
  border-style: solid;
  border-color: var(--light-bg) transparent transparent;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-skyblue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: var(--transition);
}

.testimonial-card:hover .author-image {
  background: var(--accent-orange);
  transform: rotate(360deg);
}

.author-details h4 {
  color: var(--primary-skyblue);
  margin-bottom: 5px;
}

/* ============================
   ENHANCED FOOTER STYLES (Blue & Orange Theme)
============================ */
:root {
    --blue-primary: #0056D2;
    --orange-accent: #FF7A00;
    --text-light: #f9f9f9;
    --text-muted: #cfd8e3;
    --footer-bg: #0c1c3c;
}

.enhanced-footer {
    background: var(--footer-bg);
    color: var(--text-light);
    padding: 60px 20px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.enhanced-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--orange-accent), var(--blue-primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--orange-accent);
    font-size: 1.2rem;
    position: relative;
}

.footer-col h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--blue-primary);
    margin-top: 5px;
    border-radius: 2px;
}

.footer-about p {
    font-size: 0.95rem;
    margin-top: 10px;
    line-height: 1.5;
    color: var(--text-muted);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange-accent);
}

.social-icons a {
    color: var(--text-light);
    margin-right: 10px;
    font-size: 1.3rem;
    background: var(--blue-primary);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--orange-accent);
    transform: scale(1.1);
}

.footer-form {
    display: flex;
    margin-top: 15px;
    overflow: hidden;
    border-radius: 4px;
    border: 2px solid var(--orange-accent);
}

.footer-form input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 0.9rem;
}

.footer-form button {
    background: var(--orange-accent);
    border: none;
    color: #fff;
    padding: 0 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-form button:hover {
    background: var(--blue-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid #223355;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-form {
        justify-content: center;
    }
}

/* ============================
    RESPONSIVE
=============================== */
@media (max-width: 992px) {
  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .steps-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--primary-skyblue);
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
  }
}

/* 🔹 Login Button Styling */
.login-btn {
  font-family: "Montserrat", sans-serif;
  /* modern, bold font */
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  margin-left: 40px;
  /* adjusted spacing */
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: var(--accent-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 🔹 Remove hamburger menu button */
.menu-btn {
  display: none !important;
}

/* Awareness Section Illustrations & Animations */
.awareness {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f0f8ff, #e6f7ff);
}

.awareness-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.awareness-item {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.8s ease both;
}

.awareness-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.awareness-item .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
}

.awareness-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0077cc;
  font-weight: 600;
}

.awareness-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* ✨ Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Team Message Section */
.team-message {
  padding: 80px 20px;
  background: linear-gradient(120deg, #eaf7ff, #f9f9f9);
  animation: fadeIn 1s ease both;
}

.team-message .section-title h2 {
  color: #11088d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.message-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  animation: slideUp 1s ease both;
  max-width: 900px;
  margin: 0 auto;
}

.message-box p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.message-box h3 {
  margin: 20px 0 10px;
  color: #0077cc;
  font-size: 1.2rem;
}

.message-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.message-box ul li {
  margin: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
}

.message-box ul li::before {
  content: "✔";
  color: #2ecc71;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.message-box .highlight {
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin: 25px 0;
}

.message-box .hashtags {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
  margin-top: 15px;
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Hover Effects for Team Message Section */
.message-box {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.message-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Paragraph hover glow */
.message-box p:hover {
  color: #2c82c9;
  transition: color 0.3s ease;
}

/* Headings hover */
.message-box h3:hover {
  color: #ff7f50;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

/* List items hover */
.message-box ul li {
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 8px;
  padding: 8px 12px 8px 28px;
}

.message-box ul li:hover {
  background: #f0faff;
  transform: translateX(6px);
}

/* Hashtags hover pulse */
.message-box .hashtags {
  cursor: pointer;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  background: #f5f5f5;
  transition: background 0.3s ease, color 0.3s ease;
}

.message-box .hashtags:hover {
  background: #2c82c9;
  color: #fff;
}

.hero {
  position: relative;
  /* ensure positioning for the image */
}

.hero-image {
  position: absolute;
  right: 150px;
  top: 100px;
  max-width: 400px;
  z-index: 1;
  animation: floatImage 4s ease-in-out infinite;
}

.hero-image img {
  width: 500px;
  height: 500px;
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px) rotate(-2deg);
  }

  100% {
    transform: translateY(0);
  }
}

/* ============================
    EXTRA RESPONSIVENESS FIXES
=============================== */

/* Ultra-wide desktops */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }

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

  .hero p {
    font-size: 1.4rem;
  }

  .hero-image {
    right: 200px;
    max-width: 500px;
  }

  .hero-image img {
    width: 550px;
    height: auto;
  }
}

/* Large laptops (1200px - 1599px) */
@media (max-width: 1599px) {
  .hero-image {
    right: 100px;
    max-width: 400px;
  }

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

/* Tablets (768px - 1199px) */
@media (max-width: 1199px) {
  .hero {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding-top: 120px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-image {
    position: relative;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    max-width: 350px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

  .categories-grid,
  .testimonials-grid,
  .awareness-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .steps-connector {
    display: none;
  }
}

/* Mobiles (up to 767px) */
@media (max-width: 767px) {
  nav .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero {
    padding: 100px 15px 40px;
    text-align: center;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  .hero-image {
    max-width: 260px;
    margin-top: 20px;
  }

  .categories-grid,
  .testimonials-grid,
  .awareness-list {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  footer .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* Small phones (up to 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

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

  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .hero-image {
    max-width: 220px;
  }

  .author-details h4 {
    font-size: 0.9rem;
  }

  .author-details p {
    font-size: 0.8rem;
  }
}

/* 🔹 Mobile Navbar Visibility Fix (CSS-only) */
@media (max-width: 768px) {

  nav:focus-within .nav-links,
  nav:hover .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: auto;
  }

  .login-btn:focus+.dropdown,
  .login-btn:active+.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    margin: 10px 0;
    font-size: 1.1rem;
  }
}

/* Responsive Video Embed */
.how-it-works-video {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.how-it-works-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ============================
    CHATBOT STYLES
=============================== */
.chatbot-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1001;
  /* --- Add these three lines --- */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-fab {
  background-color: var(--primary-skyblue);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.chat-fab:hover {
  background-color: var(--accent-orange);
  transform: scale(1.1);
}

.chat-widget {
  width: 350px;
  max-height: 500px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

.chat-widget.active {
  transform: scale(1);
}

.chat-header {
  background: var(--primary-skyblue);
  color: var(--white);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.chat-header .close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.chat-messages {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  padding: 10px 15px;
  border-radius: 20px;
  max-width: 80%;
  line-height: 1.4;
}

.message.bot {
  background-color: #f1f0f0;
  color: var(--dark-text);
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.message.user {
  background-color: var(--dark-skyblue);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

.chat-input-area {
  display: flex;
  padding: 10px;
  border-top: 1px solid #eee;
}

#chat-input {
  flex-grow: 1;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 1rem;
  outline: none;
}

#chat-send-btn {
  background: var(--primary-skyblue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}

#chat-send-btn:hover {
  background-color: var(--accent-orange);
}

/* ============================
    CHATBOT OPTIONS (BUTTONS)
=============================== */
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  align-self: flex-start;
}

.option-btn {
  background-color: var(--white);
  color: var(--primary-skyblue);
  border: 2px solid var(--primary-skyblue);
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.option-btn:hover {
  background-color: var(--primary-skyblue);
  color: var(--white);
  transform: translateY(-2px);
}
/* ============================
    LANGUAGE SWITCHER (ADDED)
=============================== */
.language-switcher-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.language-switcher-wrapper i {
    color: var(--white); /* White icon to match nav text */
}

#language-switcher {
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5px 8px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background */
    color: var(--white); /* White text */
    cursor: pointer;
}

#language-switcher option {
    color: var(--dark-text); /* Dark text for dropdown options */
    background-color: var(--white);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (Add this block to the end of your CSS file)
   ========================================================================== */

/* Style for the new hamburger menu button */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
}

/* --------------------
   Tablets (<= 992px)
   -------------------- */
@media (max-width: 992px) {
    .hero {
        text-align: center;
        padding-top: 100px;
    }
    .hero .container {
        flex-direction: column;
        justify-content: center;
    }
    .hero-content {
        margin-bottom: 40px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-image {
        position: static;
        max-width: 400px;
        animation: none;
    }
    .hero-image img {
        width: 100%;
        height: auto;
    }
    .steps {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    .steps-connector {
        display: none;
    }
}

/* --------------------
   Mobile (<= 768px)
   -------------------- */
@media (max-width: 768px) {
    /* --- Navigation Menu --- */
    .menu-toggle {
        display: block; /* Show the hamburger button */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 100%;
        height: 100vh;
        background-color: var(--primary-skyblue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease-in-out;
        padding: 0;
        z-index: 1001;
    }
    .nav-links.active {
        right: 0; /* Slide into view */
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        margin: 0;
        font-size: 1.5rem;
    }

    .dropdown-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .login-btn {
        margin: 0;
    }
    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        min-width: unset;
        text-align: center;
        margin-top: 10px;
    }
    .dropdown li a {
        padding: 10px 0;
        color: var(--white);
        font-size: 1.2rem;
    }
    .dropdown li a:hover {
        background: none;
        color: var(--accent-orange);
    }
    .logo {
        z-index: 1002; /* Keep logo above mobile menu */
    }

    /* --- Layouts & Typography --- */
    section {
        padding: 60px 0;
    }

    .section-title {
        text-align: center;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .section-title h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-image {
        max-width: 300px;
    }
    
    .categories-grid,
    .testimonials-grid,
    .awareness-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    /* --- Chatbot --- */
    .chat-widget {
        width: 90vw;
        max-height: 70vh;
    }
}

/* --------------------
   Small Mobiles (<= 480px)
   -------------------- */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .hero-image {
        max-width: 250px;
    }
}
