:root {
  --primary-blue: #0359a9;
  --secondary-blue: #3498db;
  --accent-green: #02ba4e;
  --dark-text: #2c3e50;
  --light-text: #7f8c8d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--dark-text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
body,
html {
  width: 100%;
  min-width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050; /* Navbar ko hamesha aage rakhe */
  background-color: #ffffff; /* Background color rakhna zaroori hai */
}
/* Navbar container fixes */
/* Desktop default settings */
.navbar-logo-container img {
  height: 75px !important;
  width: auto !important;
  object-fit: contain;
  margin-right: 20px !important; /* Gap between logo and text */
  margin-left: 25px !important; /* Gap between logo and text */
}

/* Navbar brand layout */
.navbar-brand {
  font-size: 1.4rem;
  height: 50px;
  display: flex;
  align-items: center;
  margin-left: 0;
  color: #0359a9;
  padding: 0;
  font-weight: 700;
}
.navbar-nav .nav-link {
  color: #333333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

/* .navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff8000;
} */
.navbar-toggler {
  border: 1px solid #ddd;
}
.nav-link {
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  color: var(--dark-text) !important;
  font-size: 16px;
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

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

/* MOBILE - Only logo-text gap change */
@media (max-width: 767px) {
  .navbar-logo-container img {
    height: 75px !important;
    margin-right: 25px !important;
    margin-left: 10px !important;
  }
  .navbar-brand {
    font-size: 1.5rem;
    height: 45px;
    margin-left: 5px;
    padding: 0;
  }
}

/* Smallest devices (optional, can remove if not needed) */
@media (max-width: 360px) {
  .navbar-logo-container img {
    height: 48px !important;
    margin-right: 12px !important;
  }
  .navbar-brand {
    font-size: 1.4rem;
    height: 40px;
  }
}
@keyframes slideGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

div[style*="linear-gradient"] {
  background-size: 200% 200%;
}
/* Order Now Button */
.btn-success {
  background-color: #009879;
  border-color: #009879;
  padding: 0.45rem 1.2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-success:hover {
  background-color: #007a63;
  border-color: #007a63;
}

.hero-section {
  background: linear-gradient(
      /* rgba(255, 255, 255, 0.434) 0%, */ rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 255, 255, 0.847) 75%,
      rgba(255, 255, 255, 0.68) 100%
    ),
    url("img/Laboratory\ BG.jpg") center/cover no-repeat;
  padding: 180px 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; /* ensure centered content */
  position: relative; /* for z-index layering if needed */
  overflow: hidden;
  padding-top: 170px;
  /* animation: fadeInBg 2.5s ease forwards; */
}
/* @keyframes fadeInBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
} */

/* Mobile */
@media (max-width: 767px) {
  .hero-section {
    min-height: 90vh !important; /* force greater height */
    padding: 200px 25px !important;
    background-position: center top !important;
    background-size: cover !important;
    display: block !important; /* switch flex to block on mobile for better height handling */
    font-size: 15px;
  }
}
.about-section {
  background: #0359a9;
  color: #fff;
  width: 100%;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 20px 0 20px;
}

.about-section h1 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 0;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.about-section .divider {
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 0 auto 22px auto;
  border-radius: 2px;
  opacity: 0.9;
}

.about-section p {
  font-size: 1.08rem;
  max-width: 800px;
  color: #f0f4fa;
  margin: 0 auto 32px auto;
  line-height: 1.7;
  font-family: inherit;
}

.about-section .btn-product {
  display: inline-block;
  background: #fff;
  color: #1a6db1;
  font-weight: 900;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  margin-top: 15px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.about-section .btn-product:hover {
  background: #e5edfa;
  color: #003366;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.13);
}

@media (max-width: 600px) {
  .about-section {
    padding: 60px 20px;
    min-height: 65vh;
  }
  .about-section h1 {
    font-size: 1.2rem;
  }
  .about-section p {
    font-size: 0.95rem;
  }
  .about-section .btn-product {
    padding: 12px 26px;
    font-size: 0.93rem;
  }
}

.hero-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-text);
  animation: fadeInDown 1s ease;
  margin-top: 75px;
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 22px;
    margin-top: 36px;
    margin-top: 0px;
  }
}
.btn-primary {
  background-color: var(--primary-blue);
  /* border-color: var(--primary-blue); */
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-primary:hover {
  background-color: #0074c2;
  border-color: #0074c2;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-success {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-success:hover {
  background-color: #04d15a;
  border-color: #04d15a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-orange {
  background-color: #f98a1b;
  border-color: #f98a1b;
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 16px;
  color: white;
}

.btn-orange:hover {
  background-color: #ff9830;
  border-color: #ff9830;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
}
.btn-width {
  width: 250px;
  font-size: 18px;
}
.cta-btn {
  padding: 10px 24px; /* Waisa hi jo pehle tha */
  font-size: 16px; /* Pehle jaisa font size */
  border-radius: 40px; /* Rounded corners same */
  font-weight: 700; /* Boldness same */
  display: inline-block;
  margin: 0 10px; /* Button ke beech gap */
  color: #fff;
  text-decoration: none;
  /* Animation properties yahan lagayen */
  animation: scaleInBoth 0.6s cubic-bezier(0.6, 0, 0.4, 1) forwards;
}

/* Stagger the animation for cool effect (optional) */
.cta-btn:nth-child(1) {
  background: #02ba4e;
  animation-delay: 0.1s;
}
.cta-btn:nth-child(2) {
  background: #1a6db1;
  animation-delay: 0.25s;
}
.cta-btn:nth-child(3) {
  background: #f68413;
  animation-delay: 0.4s;
}

@keyframes scaleInBoth {
  from {
    opacity: 0;
    transform: scaleX(0.1);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
}
.value-card {
  text-align: center;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--light-text);
}

.product-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  padding: 20px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
  height: 180px;
  background-color: #e0f0ff;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
.product-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.product-img {
  margin-bottom: 65px; /* For mobile */
  position: static; /* Remove absolute/relative if present */
}

.product-img i {
  font-size: 48px;
  color: var(--primary-blue);
}

.product-price {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 18px;
}

.card-body h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.card-body p {
  font-size: 15px;
  color: var(--light-text);
}
.btn-all-products {
  margin-top: 50px;
}

.testimonial-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.201);
  border-radius: 8px;
  padding: 20px;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.164);
}

.testimonial-card:before {
  content: '"';
  font-size: 48px;
  color: var(--primary-blue);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  margin-bottom: 20px;
}
.text-muted {
  margin-bottom: 0 !important;
  white-space: normal;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 30px 20px;
    border-radius: 10px;
    min-width: 0;
    max-width: 90vw;
    margin: 0 auto 24px auto;
    font-size: 1rem;
    background-color: #f9fbff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .testimonial-card:before {
    font-size: 36px;
    top: 6px;
    left: 12px;
    color: #0070cc;
  }
  .testimonial-text {
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.5;
    padding-left: 20px;
    padding-right: 16px;
    word-break: break-word;
    color: #333;
  }
}

.why-choose h2 {
  text-align: center;
  font-weight: 700;
  margin-top: 50px;
  color: #1a6db1;
}
.why-card {
  background: #f4f8fc;
  box-shadow: 0 2px 8px rgba(26, 109, 177, 0.04);
  border-radius: 18px;
  padding: 32px 22px 20px 22px;
  text-align: center;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-card:hover {
  background: rgba(13, 75, 122, 0.062);
}
.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.why-card h4 {
  font-size: 1.22rem;
  font-weight: 700;
  color: #1a6db1;
  margin-bottom: 8px;
}
.why-card p {
  color: #29354c;
  font-size: 16px;
}
.why-icon {
  font-size: 2.5rem;
  color: #1a6db1;
  margin-bottom: 12px;
}
.why-divider {
  width: 100px;
  height: 3px;
  background: #1a6db1;
  margin: 18px auto 28px auto;
  border-radius: 2px;
  margin-bottom: 50px;
}
.feature-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #14387e;
}

.feature-desc {
  font-size: 15px;
  margin: 0;
  color: #21456d;
}

@media (max-width: 900px) {
  .why-features {
    flex-direction: column;
    gap: 32px;
    align-items: center; /* Center horizontally */
    padding: 0 45px; /* Side padding for breathing room */
  }
  .why-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 70px;
  }
  .why-column {
    flex: 1 1 100%;
    max-width: 400px; /* Max width for better control */
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .why-logo {
    flex: 1 1 100%;
    max-width: 400px;
    margin: 24px 0;
    display: flex;
    justify-content: center;
  }
  .feature {
    justify-content: flex-start; /* Left align icon + text */
  }
  .why-card {
    width: 300px;
    margin: 0 auto 22px auto;
  }
}
.meet-team-section {
  padding: 60px 15px;
  background-color: #f4f8fc;
  border-radius: 12px;
  margin-top: 80px;
}

.section-heading {
  font-weight: 700;
  font-size: 2.4rem;
  color: #1a6db1;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 30px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #606060;
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.team-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member-card {
  position: relative;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(26, 109, 177, 0.1);
  padding: 30px 20px;
  width: 350px;
  text-align: center;
  transition: box-shadow 0.25s ease;
  overflow: hidden;
  margin-bottom: 40px;
}

.team-member-card:hover {
  box-shadow: 0 12px 36px rgba(26, 109, 177, 0.25);
}

.team-photo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #1a6db1;
  margin-bottom: 18px;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a6db1;
  margin-bottom: 6px;
}

.team-position {
  font-size: 1rem;
  color: #3a3a3a;
  margin-bottom: 12px;
}

/* Social links styling */
.social-links {
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease;
}

.team-member-card:hover .social-links {
  right: 15px;
  opacity: 1;
}

.social-links a {
  background-color: #1a6db1;
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(26, 109, 177, 0.4);
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #f7931e;
}
@media (max-width: 600px) {
  .meet-team-section {
    padding: 30px 5px;
    margin-top: 40px;
    border-radius: 8px;
  }

  .section-heading {
    font-size: 1.6rem;
    margin-bottom: 7px;
    margin-top: 14px;
  }

  .section-subtitle {
    font-size: 0.92rem;
    max-width: 98%;
    margin-bottom: 28px;
    padding: 5px 20px 20px 20px;
  }

  .team-grid {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .team-member-card {
    padding: 24px 20px; /* Padding bada diya */
    width: 95vw; /* Width thodi badhai */
    min-width: 170px; /* Min-width thodi badhai */
    max-width: 330px; /* Max-width thodi badhai */
    margin-bottom: 28px; /* Margin bhi thoda bada */
    border-radius: 12px; /* Radius thoda bada */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }

  .team-member-card:hover .social-links {
    right: 12px;
  }

  .team-photo {
    width: 90px; /* Photo size badhai */
    height: 90px;
    margin-bottom: 12px;
    border-width: 3px;
    border-radius: 50%;
  }

  .team-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
  }

  .team-position {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .social-links {
    right: -42px;
    gap: 12px;
    transform: translateY(-50%);
  }

  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 18px;
    box-shadow: 0 1px 5px rgba(26, 109, 177, 0.22);
  }
}

#certifications {
  background: #f8f9fa; /* Light background */
}

.section-title {
  text-align: center;
  color: #14387e; /* Certificate ka dark blue shade */
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.certifications-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px; /* Space between certificates */
}
.certifications-section,
.contact-section {
  margin-top: 60px; /* Increased vertical spacing */
  margin-bottom: 60px;
}

.certification-logo img {
  display: block;
  width: 400px; /* Adjust as needed */
  height: auto;
  box-shadow: 0 4px 16px rgba(20, 56, 126, 0.1);
  /* border: 3px solid #14387e; Blue border */
  background: #fff;
  /* border-radius: 10px; */
  margin-top: 0; /* Prevents overlapping section title */
}

@media (max-width: 900px) {
  .certifications-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .certification-logo img {
    width: 90vw;
    max-width: 350px;
  }
}
@media (max-width: 600px) {
  .certifications-row {
    flex-direction: column;
    align-items: center !important; /* Ensure horizontal center */
    justify-content: center !important;
    gap: 20px;
  }

  .certification-logo {
    width: 100%; /* Container full width */
    display: flex;
    justify-content: center; /* Center child content horizontally */
  }

  .certification-logo img {
    width: 90vw;
    max-width: 350px;
    display: block;
    margin: 0 auto; /* Center image in container */
  }
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-control {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(26, 109, 177, 0.2);
}

footer {
  background-color: #023b70;
  color: var(--white);
  padding: 50px 0 24px;
}
.pharmacia-footer-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pharmacia-footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.pharmacia-footer-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.pharmacia-footer-desc {
  color: #eef7fd;
  font-size: 1rem;
  margin-top: 8px;
}

.footer-links a {
  color: #ffffff;
  /* text-decoration: none; */
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}
.footer-text,
.footer-contact-info,
.footer-quick-links a {
  color: #cbd5e1; /* Lighter grey for better readability on dark bg */
  transition: color 0.3s ease;
}

.footer-quick-links a:hover {
  color: #f97316; /* Orange highlight on hover */
}

.social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 1, 1, 0.182);
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
  background-color: white;
}

.social-icon:hover {
  color: #fff;
  background-color: #f97316;
  transform: translateY(-3px);
}
.social-icons a {
  text-decoration: none !important; /* Social icons ke links ke underline hata de */
}
.product-links a {
  color: #fff;
  display: block;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 1rem;
}
.product-links a:hover {
  color: #4da5f8;
  text-decoration: none;
}

.credits {
  margin-top: 5px;
  font-size: 15px;
  color: #ffffff;
}
.credits a {
  color: #4da5f8;
  text-decoration: none;
}
.credits a:hover {
  color: #63b4ff;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-section {
    padding: 120px 0;
    min-height: 60vh;
  }

  .footer-links a,
  .text-muted,
  .nav-link,
  .btn-primary,
  .btn-success .btn-orange {
    font-size: 16px;
  }

  h5 {
    font-size: 16px;
  }

  h3 {
    font-size: 20px;
  }
}

/* ChatBot */
/* ChatBot */
/* ChatBot */

.pharmacia-chatbot {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.chatbot-button {
  width: 60px;
  height: 60px;
  background-color: #1a67aa;
  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: all 0.3s ease;
}

.chatbot-button:hover {
  transform: scale(1.05);
  background-color: #0d4d80;
}

.chatbot-button svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.chatbot-window {
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: absolute;
  bottom: 70px;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.chatbot-window.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chatbot-header {
  background: #1a67aa;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  line-height: 1.4;
  position: relative;
}

.bot-message {
  background-color: #e9eef2;
  border-top-left-radius: 4px;
  align-self: flex-start;
}

.user-message {
  background-color: #1a67aa;
  color: white;
  border-top-right-radius: 4px;
  align-self: flex-end;
}

.chatbot-input {
  display: flex;
  padding: 15px;
  border-top: 1px solid #e9ecef;
  background: white;
}

.chatbot-input input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  font-size: 1rem;
}

.chatbot-send {
  background: #1a67aa;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-send svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 15px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.chatbot-quick-reply {
  background: white;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.chatbot-quick-reply:hover {
  background: #f0f5ff;
  border-color: #1a67aa;
}

@media (max-width: 480px) {
  .chatbot-window {
    width: 320px;
    right: -20px;
  }
}
