/* Base Styles */
:root {
  --primary-color: #2d79f3;
  --secondary-color: #063e9e;
  --accent-color: #ff7a01;
  --highlight-blue: #2d79f3;
  --text-color: #333;
  --light-text: #fff;
  --bg-color: #f8f9fa;
  --footer-bg: #a1afcb;
  --section-bg: #f0f4f8;
  --border-radius: 8px;
  --box-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;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

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

/* Social Bar */
.social-bar {
  background-color: #f6f2f2;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links span {
  font-weight: 500;
}

.social-links a {
  color: var(--text-color);
  font-size: 16px;
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links a.facebook:hover {
  color: #1877f2;
}

.social-links a.twitter:hover {
  color: #1da1f2;
}

.social-links a.instagram:hover {
  color: #e4405f;
}

.social-links a.whatsapp:hover {
  color: #25d366;
}

.language-selector {
  display: flex;
  gap: 20px;
  align-items: center;
}

.language-selector a {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.language-selector a:hover {
  color: var(--primary-color);
}

.language-selector img {
  width: 24px;
  height: auto;
  border-radius: 3px;
}

/* Navigation */
/* Navigation */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}


.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger .line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

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

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



/* Hero Section - Premium Redesign */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05); /* Slight zoom for effect */
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

/* Glassmorphism subtle pattern overlay optionally */
.hero-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 60px; /* Offset for navbar */
  display: flex;
  align-items: center;
}

.hero-text-wrapper {
  max-width: 800px;
  color: #fff;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Premium Button Styles */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px; /* Reduced padding */
  font-size: 0.9rem; /* Reduced font size */
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(45, 121, 243, 0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(45, 121, 243, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  border-color: #fff;
}



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

/* Utilities */
.highlight-blue {
  color: #4da3ff; /* Lighter blue for better contrast on dark */
  position: relative;
  display: inline-block;
}

/* Mobile Enhancements */
@media (max-width: 768px) {
  .hero-text-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 250px; /* Constrain width for compact, premium feel */
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 10px 20px; /* Smaller touch target */
    font-size: 0.9rem; /* Smaller font size */
    min-height: 44px; /* Maintain accessible touch height */
  }
}

/* Video Section - Professional & Clean */
.video-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f4f7f6 100%); /* Subtle full gradient */
  overflow: hidden;
}


.video-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Video Wrapper - Clean Card Style */
.video-wrapper {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Soft shadow */
  background: #000;
  aspect-ratio: 16/9; /* Enforce proper aspect ratio */
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Side */
.video-content {
  flex: 1;
}

.video-content h2 {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #0a193c; /* Dark corporate blue */
  letter-spacing: -0.5px;
}

.video-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #556987; /* Slate grey for text */
  margin-bottom: 24px;
}

/* CTA Button - consistent with hero but simpler */
.video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  background-color: var(--primary-color);
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(45, 121, 243, 0.2);
}

.video-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 62, 158, 0.25);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .video-section {
    padding: 60px 0;
  }
  
  .video-section::before {
    width: 100%;
    height: 30%;
    bottom: 0;
    top: auto;
  }

  .video-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .video-content h2 {
    font-size: 2rem;
  }
  
  .video-content {
    padding-left: 0;
  }
}

.para {
  padding: 20px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  text-align: center;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .para {
    padding: 25px 40px;
    font-size: 18px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .para {
    padding: 30px 60px;
    font-size: 20px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .para {
    padding: 35px 100px;
    font-size: 22px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .para {
    padding: 40px 140px;
    font-size: 23px;
  }
}

/* Professional Parallax Section - Production Ready */
.parallax {
  background-image: url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 600px; /* Taller area for better presence */
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 23, 56, 0.9) 0%, rgba(0, 50, 120, 0.85) 100%); /* Premium dark blue gradient */
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
  text-align: center;
}

.parallax-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Transforming the button into an Interactive Glass Card */
/* Base Button Style (Header/Original) */
/*.med-import-btn {
  border: none;
  display: block;
  position: relative;
  padding: 0.5em 1.4em;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: black;
  font-family: inherit;
  font-weight: 350;
}*/


/* Parallax Specific "Glass Card" Button Override */
.parallax-content .med-import-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 40px;
  color: #ffffff;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: justify; /* Justify text for clean edges */
  white-space: normal;
  margin: 0 auto;
}

.parallax-content .med-import-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.parallax-content .med-import-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.parallax-content .med-import-btn:hover::after {
  opacity: 1;
}

.parallax-content .med-import-btn span {
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .parallax {
    min-height: auto;
    padding: 60px 0;
  }
  
  .med-import-btn {
    padding: 25px 20px;
    border-radius: 16px;
  }
}

/* Laptop breakpoint (992px - 1200px) */
@media (max-width: 1200px) {
  .parallax {
    height: 450px;
  }

  .parallax-content h3 {
    font-size: 1.8rem;
  }

  .parallax-content p {
    font-size: 1.1rem;
  }
}

/* Tablet breakpoint (768px - 991px) */
@media (max-width: 991px) {
  .parallax {
    height: 400px;
    background-attachment: fixed;
  }

  .parallax-content {
    padding: 0 30px;
  }

  .parallax-content h3 {
    font-size: 1.6rem;
  }

  .parallax-content p {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* Mobile breakpoint (up to 767px) */
@media (max-width: 767px) {
  .parallax {
    height: 350px;
  }

  .parallax-content {
    padding: 0 20px;
    text-align: center;
  }

  .parallax-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .parallax-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .med-import-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Small mobile breakpoint (up to 480px) */
@media (max-width: 480px) {
  .parallax {
    height: 300px;
  }

  .parallax-content h3 {
    font-size: 1.2rem;
  }

  .parallax-content p {
    font-size: 0.85rem;
  }
}

/* About Section */
.about-section {
  padding: 50px 0;
  background-color: white;
  text-align: center;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.8;
  color: #555;
  padding: 0 20px;
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  color: var(--text-color);
  padding: 50px 0 20px;
}

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

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  mix-blend-mode: color-burn;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
}

.social-links {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  color: var(--text-color);
  transition: var(--transition);
  font-size: 14px;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: white;
}

.social-links a:hover.facebook {
  background-color: #1877f2;
}

.social-links a:hover.twitter {
  background-color: #1da1f2;
}

.social-links a:hover.instagram {
  background-color: #e4405f;
}

.social-links a:hover.whatsapp {
  background-color: #25d366;
  color: white;
}

.footer-links {
  flex: 1;
  display: flex;
  gap: 20px;
  min-width: 250px;
}

.links-column {
  flex: 1;
  min-width: 120px;
}

.links-column h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

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

.links-column li {
  margin-bottom: 8px;
}

.links-column a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
  font-size: 14px;
}

.links-column a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact-form {
  flex: 1;
  min-width: 250px;
}

.footer-contact-form h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(45, 121, 243, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 8px;
}

.submit-btn,
.reset-btn {
  padding: 10px 15px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.submit-btn {
  background-color: var(--accent-color);
  color: white;
  flex: 2;
}

.submit-btn:hover {
  background-color: #e06b00;
}

.reset-btn {
  background-color: #ddd;
  color: var(--text-color);
  flex: 1;
}

.reset-btn:hover {
  background-color: #ccc;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
  font-size: 13px;
  color: var(--text-color);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  /* Small desktops */
  .hero-content {
    max-width: 500px;
  }

  .video-content {
    padding-left: 30px;
  }
}

@media (max-width: 992px) {
  /* Tablets */
  .hero {
    height: 70vh;
  }

  .hero-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 100%;
  }

  .video-container {
    flex-direction: column;
  }

  .video-wrapper {
    flex: 0 0 auto;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 30px;
  }

  .video-content {
    flex: 0 0 auto;
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .footer-logo {
    height: 60px;
  }
}

@media (max-width: 768px) {
  /* Small tablets and large phones */
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 999;
    padding: 20px 0;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .social-bar .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

  .language-selector {
    justify-content: center;
  }

  .footer-main {
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  /* Phones */
  .hero {
    height: 50vh;
    min-height: 350px;
  }

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

  .tagline {
    font-size: 1rem;
  }

  .video-section {
    padding: 40px 0;
  }

  .video-section::before {
    height: 80px;
  }

  .video-content h2 {
    font-size: 1.3rem;
  }

  .about-section {
    padding: 30px 0;
  }

  .footer {
    padding: 30px 0 15px;
  }

  .footer-logo {
    height: 50px;
  }

  .form-actions {
    flex-direction: column;
  }

  .submit-btn,
  .reset-btn {
    width: 100%;
  }
}

@media (max-width: 400px) {
  /* Small phones */
  .brand-logo img {
    height: 40px;
  }

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

  .video-btn {
    padding: 8px 20px;
    font-size: 13px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact-form {
    min-width: 100%;
  }
}

/* Chatbot Styles */
.chatbot-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 9999;
  transition: all 0.3s ease;
}

.chatbot-button:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background-color: rgb(42, 201, 42);
  border-radius: 50%;
  border: 2px solid white;
  display: none;
}

.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  max-height: 500px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9998;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.chatbot-container.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

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

.agent-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-info i {
  font-size: 24px;
}

.agent-info div p {
  margin: 0;
  font-weight: 600;
}

.agent-info div p span {
  font-weight: normal;
  font-size: 12px;
  opacity: 0.8;
}

.agent-info div small {
  font-size: 11px;
  opacity: 0.8;
}

.close-btn {
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.2);
}

.chatbot-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 300px;
}

.chatbot-message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  animation: fadeIn 0.3s ease;
}

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

.bot {
  align-self: flex-start;
  background-color: white;
  color: #333;
  border-bottom-left-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.welcome-message {
  background-color: #e3f2fd;
  border-radius: 18px 18px 18px 5px;
}

.message-content {
  word-wrap: break-word;
}

.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  background-color: white;
  border-top: 1px solid #e0e0e0;
}

.quick-question {
  background-color: #f0f4f8;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.quick-question:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.chatbot-footer {
  display: flex;
  padding: 10px;
  background-color: white;
  border-top: 1px solid #e0e0e0;
}

#chatInput {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

#chatInput:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(45, 121, 243, 0.2);
}

#sendButton {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#sendButton:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .chatbot-button {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .chatbot-container {
    width: calc(100% - 40px);
    right: 20px;
    bottom: 80px;
    max-height: 60vh;
  }

  .chatbot-body {
    height: calc(60vh - 150px);
  }
}

/* Adjustments for iPad and smaller screens */
@media (max-width: 992px) {
  /* Hero Section adjustments */
  .hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
  }

  .hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers entire container */
  }

  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 100%;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .tagline {
    font-size: 1.2rem;
    left: 0;
    top: 0;
  }

  /* Footer form adjustments */
  .footer-main {
    flex-direction: column;
    align-items: center;
  }

  .footer-brand,
  .footer-links,
  .contact-form {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .links-column {
    min-width: 200px;
    margin-bottom: 20px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .form-actions {
    width: 100%;
    justify-content: center;
  }
}

/* Further adjustments for mobile phones */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
    min-height: 300px;
  }

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

  .tagline {
    font-size: 1rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .links-column {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 40vh;
  }

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

  .tagline {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 0 15px;
  }
}

/* scroll to up  */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1f5ec5, #ba7cd2);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  border: none;
  outline: none;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #ba7cd2, #1f5ec5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: scale(1.05) translateY(0);
}

.scroll-to-top:active {
  transform: scale(0.95) translateY(0);
}

.scroll-to-top::after {
  content: "↑";
  font-size: 28px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover::after {
  animation: bounce 0.8s infinite alternate;
}

.scroll-to-top .progress-circle {
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: white;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(157, 80, 187, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(157, 80, 187, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(157, 80, 187, 0);
  }
}

/* Bounce animation */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}

/* Tooltip */
.scroll-to-top .tooltip {
  position: absolute;
  top: -50px;
  background: white;
  color: #1f5ec5;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.scroll-to-top .tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: white transparent transparent;
}

.scroll-to-top:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -60px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 90px;
    right: 20px;
  }

  .scroll-to-top::after {
    font-size: 24px;
  }

  .scroll-to-top .tooltip {
    font-size: 12px;
    padding: 6px 10px;
    top: -45px;
  }

  .scroll-to-top:hover .tooltip {
    top: -50px;
  }
}
