/* Modern UI Redesign - Medical Clinic */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --nav-bg: #0b1521;
  --hero-bg: #0c1928;
  /* --accent-teal: #00b4b6;
  --accent-teal-hover: #009395; */
    --accent-teal: #2b7b4b;
  --accent-teal-hover: #22653d;
   /* --accent-teal-hover: #16482a;
    --accent-teal-hover: #b3b912; */
  --white: #ffffff;
  --off-white: #f7f9fa;
  --text-light: #9ca3af;
  --text-dark: #1f2937;
  --border-color: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  
  --font-primary: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

.serif-title {
  font-family: var(--font-serif);
}

.text-teal { color: var(--accent-teal); }
.text-navy { color: var(--hero-bg); }
.bg-navy { background-color: var(--hero-bg); color: var(--white); }
.bg-teal { background-color: var(--accent-teal); color: var(--white); }

/* Buttons */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover, .btn-modern:hover, .popup-btn:hover {
  text-decoration: none !important;
}

.btn-teal {
  background-color: var(--accent-teal);
  color: var(--white);
  border: 1px solid var(--accent-teal);
  /* box-shadow: 0 4px 14px rgba(0, 180, 182, 0.3); */
}

.btn-teal:hover {
  background-color: var(--accent-teal-hover);
  border-color: var(--accent-teal-hover);
  color: var(--white);
  transform: translateY(-2px);
  /* box-shadow: 0 6px 20px rgba(0, 180, 182, 0.4); */
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-teal {
  background-color: transparent;
  color: var(--accent-teal);
  border: 1px solid var(--accent-teal);
}

.btn-outline-teal:hover {
  background-color: var(--accent-teal);
  color: var(--white);
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

/* Navigation */
.modern-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1030;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.modern-nav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  background-color: rgba(11, 21, 33, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link-modern {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  font-size: 15px;
  margin: 0 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link-modern:hover, .nav-link-modern.active {
  color: var(--accent-teal) !important;
}

.nav-link-modern::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-teal);
  transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 180px 0 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0,0,0,0.55) 45%,
        rgba(0,0,0,0.25) 100%
    );
  z-index: 1;
}

.hero ::before{
  content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.55) 45%,
        rgba(0,0,0,0.25) 100%
    );
    z-index: 1;
}

/* Owl Carousel Custom Navigation */
.hero-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
  z-index: 10;
  margin-top: 0 !important;
}

.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 180, 182, 0.8) !important;
  color: white !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px !important;
  pointer-events: auto;
  transition: all 0.3s ease;
  border: 2px solid transparent !important;
}

.hero-carousel .owl-nav button.owl-prev:hover,
.hero-carousel .owl-nav button.owl-next:hover {
  background: var(--accent-teal) !important;
  transform: scale(1.1);
  border-color: white !important;
}

.hero-title {
  font-size: 3.15rem;
  font-family: var(--font-serif);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 30px;
}

.hero-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--text-light);
}

.hero-info-item i {
  color: var(--accent-teal);
  margin-right: 15px;
  font-size: 18px;
  background: rgba(0, 180, 182, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-teal);
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: var(--white);
  color: var(--text-dark);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 6s ease-in-out infinite;
}

.floating-card.top-left {
  top: 40px;
  left: -30px;
  animation-delay: 0s;
}

.hero-secondary-imgs {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.hero-secondary-imgs img {
  width: calc(50% - 7.5px);
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hero-teal-box {
  background: var(--accent-teal);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: calc(50% - 7.5px);
  height: 140px;
}

/* Info Strip */
.info-strip {
  background-color: var(--accent-teal);
  color: var(--white);
  padding: 15px 0;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

/* About Section */
.about-section {
  padding: 120px 0;
  background-color: var(--white);
}

.section-label {
  display: inline-block;
  background: rgba(0, 180, 182, 0.1);
  color: var(--accent-teal);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-title {
  font-size: 1.96rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-title .italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent-teal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.03);
}

.stat-icon {
  font-size: 28px;
  color: var(--accent-teal);
  margin-bottom: 10px;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--hero-bg);
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: rgba(0, 180, 182, 0.1);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-icon-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--hero-bg);
  margin-bottom: 10px;
}

.service-desc {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: var(--accent-teal);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: gap 0.3s ease;
  gap: 5px;
}

.read-more i {
  font-size: 12px;
}

.service-card:hover .read-more {
  gap: 10px;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 120px 0;
  background-image: url('../images/image-07.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(12, 25, 40, 0.85); /* Deep navy overlay */
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Team/Doctors Section */
.team-section {
  padding: 100px 0;
  background-color: var(--white);
}

.doctor-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  text-align: center;
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.doctor-img-wrap {
  position: relative;
  overflow: hidden;
}

.doctor-img-wrap img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.doctor-card:hover .doctor-img-wrap img {
  transform: scale(1.05);
}

.doctor-info {
  padding: 25px;
}

.doctor-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--hero-bg);
  margin-bottom: 5px;
}

.doctor-spec {
  color: var(--accent-teal);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.doctor-desc {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.doctor-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.doctor-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(0, 180, 182, 0.1);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.doctor-social a:hover {
  background: var(--accent-teal);
  color: white;
  transform: translateY(-3px);
}

/* Testimonials */
.testimonials-section {
  background-color: var(--hero-bg);
  padding: 100px 0;
  color: var(--white);
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: var(--radius-lg);
  height: 100%;
}

.rating {
  color: #f59e0b;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-style: italic;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Appointment Section */
.appointment-section {
  padding: 100px 0;
  background-color: var(--white);
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.05);
}

.form-control-modern {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 20px;
}

.form-control-modern:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(0, 180, 182, 0.1);
  outline: none;
}

/* Footer */
.modern-footer {
  background-color: #08111b; /* Darker than hero */
  color: var(--text-light);
  padding: 80px 0 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

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

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

/* Utilities & Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero-title { font-size: 2.1rem; }
  
  /* Fix Hamburger Button Overflow */
  .navbar-toggler {
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
  }
  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  
  .modern-nav .navbar-collapse {
    background: var(--nav-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 15px;
  }
  
  /* Disable full width teal underline on mobile */
  .nav-link-modern::after {
    display: none;
  }
  
  /* Mobile Active State */
  .nav-link-modern.active {
  
    border-radius: var(--radius-sm);

  }
  
  .nav-item.dropdown .dropdown-menu {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding-left: 15px;
    margin-top: 5px;
  }
  
  .nav-item.dropdown.show .dropdown-menu {
    display: block;
    animation: fadeInDropdown 0.3s ease-in-out;
  }
  
  .nav-item.dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
  }
  
  .nav-item.dropdown .dropdown-item:hover, .nav-item.dropdown .dropdown-item.active {
    color: var(--accent-teal) !important;
    background-color: transparent !important;
    padding-left: 20px;
  }
}

/* Extra small devices (phones, 500px and down) */
@media (max-width: 500px) {
  .modern-nav .container {
    padding-left: 5px !important;
    padding-right: 5px !important;
    max-width: 100%;
  }
  .navbar-brand img {
    width: 140px; /* Slightly smaller logo to prevent overlap */
  }
  .navbar-toggler {
    padding: 4px 8px;
    margin-right: 5px; /* ensure it doesn't touch the very edge */
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

/* Popup Styles */
.rounded-custom {
  border-radius: var(--radius-lg);
}
.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(0,0,0,0.3) !important;
  color: white !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  text-shadow: none;
  opacity: 1;
  padding: 0 !important;
  margin: 0 !important;
}
.popup-close-btn:hover {
  background: rgba(0,0,0,0.5) !important;
}
.popup-input {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 15px;
  height: auto;
  background-color: #f9fafb;
}
.popup-input:focus {
  background-color: #fff;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 3px rgba(0, 180, 182, 0.1);
  outline: none;
}
.popup-btn {
  background: linear-gradient(90deg, #06b6d4, #0d9488);
  border: none;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
  transition: all 0.3s ease;
}
.popup-btn:hover {
  background: linear-gradient(90deg, #0891b2, #0f766e);
  transform: translateY(-2px);
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background-color: var(--off-white);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-carousel .owl-dots {
  text-align: center;
  margin-top: 30px !important;
}

.gallery-carousel .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  background: #d1d5db !important;
  transition: all 0.3s ease;
}

.gallery-carousel .owl-dot.active span,
.gallery-carousel .owl-dot:hover span {
  background: var(--accent-teal) !important;
  transform: scale(1.3);
}

.whatsapp-fab:hover {
  background-color: #128c7e;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Dropdown Hover and Arrow Styling */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDropdown 0.3s ease-in-out;
    margin-top: 0;
  }
}

.nav-item.dropdown .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.dropdown-item:hover, .dropdown-item.active {
  background-color: rgba(0, 180, 182, 0.05) !important;
  color: var(--accent-teal) !important;
  padding-left: 25px;
}

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

.nav-item.dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
}

    /* INFO STRIP */
.info-strip {
    width: 100%;
    overflow: hidden;
    background: #1f6b45;
    color: #fff;
    position: relative;
    white-space: nowrap;
    padding: 10px 0;
}

.marquee-container {
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    min-width: max-content;
    animation: marqueeMove 15s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}

/* Smooth Infinite Scroll */
@keyframes marqueeMove {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .info-strip {
        padding: 8px 0;
    }

    .marquee-content span {
        font-size: 13px;
    }

    .marquee-content {
        animation-duration: 22s;
    }
}