/* ==========================================================================
   Nisarg Hospital - Modern & Mobile Responsive Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  /* Logo Color Combination Palette */
  --primary-teal: #0099CC;
  --primary-dark: #0077b6;
  --primary-deep: #032FA0;
  --accent-emerald: #0099CC;
  --accent-light: #38bdf8;
  --accent-orange: #FF8C40;
  --accent-orange-hover: #e0691b;
  --accent-rose: #032FA0;
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1da851;

  /* Neutral Colors */
  --bg-slate: #f8fafc;
  --bg-white: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --border-light: #e2e8f0;
  --border-focus: #94a3b8;

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation / Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.1), 0 2px 6px -1px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.12), 0 4px 10px -2px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 30px -5px rgba(8, 145, 178, 0.18);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: all 0.2s ease-in-out;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-slate);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-deep);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Announcement & Quick Contact Bar */
.top-bar {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 60%, #e0f2fe 100%);
  color: #1e3a5f;
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e3a5f;
  font-weight: 500;
}

.top-bar-item i {
  color: #2563eb;
  font-size: 1rem;
}

.top-bar-item a {
  color: #1e40af;
  font-weight: 600;
}

.top-bar-item a:hover {
  color: #3b82f6;
}

.top-bar-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scheme-badge {
  background: rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: #1e40af;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--accent-emerald);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.98rem;
  padding: 8px 4px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-teal);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-teal);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-deep);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.drawer-close {
  background: var(--bg-slate);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: rgba(8, 145, 178, 0.08);
  color: var(--primary-teal);
}

/* Button Component System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(8, 145, 178, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 145, 178, 0.45);
  color: #ffffff;
}

.btn-orange {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-teal);
  color: var(--primary-teal);
}

.btn-outline:hover {
  background-color: var(--primary-teal);
  color: #ffffff;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Floating Action Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.whatsapp-float-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background-color: var(--whatsapp-green);
  opacity: 0.6;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

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

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 50%, #eff6ff 100%);
  color: #1e293b;
  padding: 75px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #1d4ed8;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: #334155;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(30, 58, 138, 0.1);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  font-size: 1.2rem;
}

.hero-feature-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.hero-feature-text p {
  font-size: 0.8rem;
  color: #475569;
}

/* Hero Media / Banner Slider Card */
.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(191, 219, 254, 0.8);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.1);
}

.hero-banner-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* Section Headings */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-subtitle {
  color: var(--primary-teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
}

/* Doctors Section */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* Doctors Auto-Scroll Carousel */
.team-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 44px;
}

.team-carousel-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
  touch-action: pan-y;
  user-select: none;
}

.team-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.team-carousel-slide {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
}

.team-carousel-slide .doctor-card {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .team-carousel-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 640px) {
  .team-carousel-wrapper {
    padding: 0;
  }

  .team-carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 4px;
  }
}

/* Department Listing Grid View */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
}

@media (max-width: 1024px) {
  .dept-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .dept-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Departments Auto-Scroll Carousel */
.dept-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 44px;
}

.dept-carousel-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
  touch-action: pan-y;
  user-select: none;
}

.dept-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.dept-carousel-slide {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
}

.dept-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: var(--transition-normal);
}

.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(8, 145, 178, 0.15);
  border-color: rgba(8, 145, 178, 0.3);
}

.dept-img-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.dept-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.5s ease;
}

.dept-card:hover .dept-img {
  transform: scale(1.06);
}

.dept-icon-badge {
  position: absolute;
  bottom: 12px;
  right: 14px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #0099CC, #032FA0);
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(3, 47, 160, 0.3);
  border: 2px solid #ffffff;
}

.dept-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dept-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.dept-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

@media (max-width: 1024px) {
  .dept-carousel-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 640px) {
  .dept-carousel-wrapper {
    padding: 0;
  }

  .dept-carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 4px;
  }
}

/* Nav Buttons */
.team-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  color: var(--primary-teal);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-normal);
}

.team-nav-btn:hover {
  background: var(--primary-teal);
  color: #ffffff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-50%) scale(1.08);
}

.team-nav-btn.prev-btn {
  left: -6px;
}

.team-nav-btn.next-btn {
  right: -6px;
}

@media (max-width: 768px) {
  .team-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
  }

  .team-nav-btn.prev-btn {
    left: 4px;
  }

  .team-nav-btn.next-btn {
    right: 4px;
  }
}

/* Carousel Dots */
.team-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.team-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  padding: 0;
}

.team-dot:hover {
  background: var(--accent-light);
}

.team-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--primary-teal);
}

.doctor-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.doctor-img-wrapper {
  position: relative;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  padding: 24px 24px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.doctor-img {
  height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(15, 23, 42, 0.15));
}

.doctor-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.doctor-badge {
  display: inline-block;
  background: rgba(8, 145, 178, 0.1);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.doctor-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.doctor-degree {
  font-weight: 600;
  color: var(--primary-teal);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

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

/* Services / Specialities Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8, 145, 178, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.service-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Why Choose Us & Hospital Features */
.features-section {
  background-color: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-box {
  display: flex;
  gap: 20px;
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: rgba(8, 145, 178, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  font-size: 1.4rem;
}

.feature-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Latest News Scroller Styling */
.news-section {
  background-color: #f1f5f9;
}

.news-card-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

#vpb_news_scroller_wrapper {
  width: 100% !important;
}

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

.vpb_news_scroller li {
  width: 100% !important;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light) !important;
}


/* ===================================================
   OUR PARTNERS SECTION
   =================================================== */

/* Section wrapper */
.partners-section {
  background: #e8f4fb;
  padding: 60px 0;
  overflow: hidden;
}

/* Layout: 2-col on desktop, stack on mobile */
.partners-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

/* Left: Text column */
.partners-heading-col {
  flex-shrink: 0;
}

.partners-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin: 10px 0 14px;
  line-height: 1.2;
}

.partners-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Right: Scrolling logos column */
.partners-logos-col {
  overflow: hidden;
  position: relative;
}

/* Fade edges on left/right */
.partners-logos-col::before,
.partners-logos-col::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.partners-logos-col::before {
  left: 0;
  background: linear-gradient(to right, #e8f4fb, transparent);
}

.partners-logos-col::after {
  right: 0;
  background: linear-gradient(to left, #e8f4fb, transparent);
}

/* The scrolling track */
.partners-track-wrapper {
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: partnersScroll 28s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }

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

/* Individual logo card */
.partner-logo-card {
  flex: 0 0 auto;
  width: 155px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #dbeafe;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  padding: 18px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-normal);
  cursor: default;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.15);
  border-color: rgba(8, 145, 178, 0.25);
}

.partner-logo-card img {
  width: 100%;
  max-width: 120px;
  height: 56px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.partner-logo-card:hover img {
  filter: grayscale(0%);
}

.partner-logo-card span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .partners-layout {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }

  .partners-title {
    font-size: 1.7rem;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .partners-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .partners-heading-col {
    text-align: center;
  }

  .partners-title {
    font-size: 1.6rem;
  }

  .partners-logos-col::before,
  .partners-logos-col::after {
    width: 30px;
  }

  .partner-logo-card {
    width: 130px;
    padding: 14px 12px 10px;
  }

  .partner-logo-card img {
    height: 44px;
  }
}

@media (max-width: 480px) {
  .partner-logo-card {
    width: 110px;
  }
}

/* Footer Section */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 30px;
}



.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary-teal);
  color: #ffffff;
}

.footer-title {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--primary-teal);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;

}

.footer-contact-item i {
  color: var(--accent-light);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .top-bar-info {
    justify-content: center;
    width: 100%;
  }

  .top-bar-badges {
    justify-content: center;
    width: 100%;
  }

  .nav-menu,
  .header-actions .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.1rem;
  }

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

  .hero-features {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 55px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hamburger {
    display: flex !important;
  }

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .contact-info-card,
  .form-card {
    padding: 24px 20px;
  }
}

/* Responsive Iframe & Map */
.form-card iframe,
.contact-info-card iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 380px;
  border-radius: var(--radius-md);
  border: 0;
}

@media (max-width: 576px) {
  .top-bar {
    padding: 8px 0;
  }

  .top-bar-info {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

  .top-bar-item {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .form-card iframe,
  .contact-info-card iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .nav-wrap {
    padding: 0 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    height: 38px;
  }

  .brand-text .brand-name {
    font-size: 1.05rem;
  }

  .brand-text .brand-sub {
    font-size: 0.62rem;
  }

  .contact-info-card,
  .form-card {
    padding: 20px 14px;
  }
}