/* 
 * Uniarm Biotech Pvt. Ltd. - Core Stylesheet
 */

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

:root {
  --primary-color: #0284c7;
  --primary-dark: #0369a1;
  --secondary-color: #1e293b;
  --text-dark: #333333;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --dark-btn-bg: #333333;
  --dark-btn-hover: #1e1e1e;
  --border-color: #e2e8f0;
  --accent-blue: #0ea5e9;
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --radius: 8px;
}

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

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   HEADER & NAVBAR
   =================================== */
.site-header {
  background-color: var(--bg-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
}

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

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #555555;
  padding: 10px 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-link:hover {
  color: #111111;
}

.nav-link.active {
  color: #111111;
  border-bottom: 2px solid #333333;
}

.dropdown-icon {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 220px;
  box-shadow: var(--shadow-md);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1100;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.dropdown-item a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 400;
}

.dropdown-item a:hover {
  background-color: #f1f5f9;
  color: var(--primary-color);
  padding-left: 24px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ===================================
   HERO BANNER (FULL VIEWPORT - NO OVERFLOW)
   =================================== */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(2, 132, 199, 0.35) 50%, rgba(15, 23, 42, 0.75) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content-card {
  max-width: 600px;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  color: #ffffff;
}

.hero-title {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description strong {
  font-weight: 700;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-hero-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #333333;
  color: #ffffff;
  padding: 14px 34px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-hero-dark:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: #0284c7;
  border-color: #ffffff;
}

/* Quick Vertical Tags Bar in Hero */
.hero-verticals-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-vtag {
  font-size: 0.78rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-vtag i {
  color: #38bdf8;
}

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

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 14px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

/* ===================================
   FEATURED PRODUCTS CATALOG SECTION
   =================================== */
.products-catalog-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.products-commitment-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
  font-weight: 400;
  margin-bottom: 24px;
}

.products-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.products-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .products-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-catalog-grid {
    grid-template-columns: 1fr;
  }
}

.product-item-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.product-item-image {
  width: 100%;
  height: 170px;
  position: relative;
  background: #ffffff;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f5f9;
}

.product-item-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-item-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-item-tag {
  display: inline-block;
  align-self: flex-start;
  background: #e0f2fe;
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.product-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.product-item-desc {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.btn-buy-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 9px 18px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  transition: var(--transition);
  border: none;
  width: 100%;
  box-sizing: border-box;
}

.btn-buy-product:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0c4a6e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
  color: #ffffff !important;
}

.btn-buy-modal {
  padding: 12px 28px;
  font-size: 0.92rem;
  border-radius: 8px;
}

.product-search-box {
  max-width: 500px;
  margin: 0 auto 40px auto;
  position: relative;
}

.product-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.product-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.15);
}

.product-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* ===================================
   OUR SPECIALITIES SECTION
   =================================== */
.specialities-section {
  padding: 85px 0;
  background-color: #dce4fd;
  text-align: center;
}

.specialities-header {
  margin-bottom: 55px;
}

.specialities-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0;
}

.specialities-title .blue-text {
  color: #2563eb;
  font-weight: 700;
}

.specialities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.speciality-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.speciality-image-box {
  width: 250px;
  height: 250px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  margin: 0 auto 24px auto;
  background: #ffffff;
  transition: var(--transition);
  border: 4px solid #ffffff;
  display: block;
}

.speciality-card:hover .speciality-image-box {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.speciality-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.speciality-card:hover .speciality-image-box img {
  transform: scale(1.05);
}

.speciality-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  transition: var(--transition);
}

.speciality-name:hover {
  color: #2563eb;
  text-decoration-color: #2563eb;
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  color: #64748b;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.close-modal:hover {
  color: #0f172a;
}

.modal-body {
  padding: 30px;
  text-align: center;
  position: relative;
}

.modal-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-body img#modalImage {
  max-width: 100%;
  max-height: 55vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 8px;
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.7);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.modal-nav-btn:hover {
  background: var(--primary-color);
}

.modal-nav-btn.prev {
  left: 10px;
}

.modal-nav-btn.next {
  right: 10px;
}

.modal-thumbs-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
  margin-bottom: 16px;
}

.modal-thumbs-container img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}

.modal-thumbs-container img:hover,
.modal-thumbs-container img.active {
  opacity: 1;
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.product-gallery-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.75);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* ===================================
   CONTACT PAGE (SKY BLUE WHOLE PAGE BG & BOXED FORM CARD)
   =================================== */
body.contact-page-bg {
  background-color: #87ceeb !important;
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 35%, #bae6fd 100%) !important;
  min-height: 100vh;
}

.contact-page-section {
  padding: 35px 0 60px 0;
  background: transparent !important;
  position: relative;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-left-image-card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.2), 0 3px 10px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-left-image-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.28);
}

.contact-left-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contact-left-image-card:hover img {
  transform: scale(1.03);
}

/* Compact Form Box Container */
.contact-form-container {
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.2), 0 3px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.28);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.contact-form-subtitle {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 14px;
}

.contact-field-group {
  margin-bottom: 10px;
}

.contact-field-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 3px;
}

.contact-input-grey {
  width: 100%;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  padding: 7px 12px;
  font-family: var(--font-main);
  font-size: 0.84rem;
  color: #0f172a;
  outline: none;
  transition: var(--transition);
  box-sizing: border-box;
}

.contact-input-grey::placeholder {
  color: #94a3b8;
}

.contact-input-grey:focus {
  background-color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

textarea.contact-input-grey {
  resize: vertical;
  min-height: 60px;
  height: 60px;
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: #0284c7;
  color: #ffffff;
  padding: 9px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.3);
}

.btn-contact-submit:hover {
  background-color: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 132, 199, 0.4);
}
.speciality-portfolio-section {
  padding: 85px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.speciality-portfolio-section.onco-bg {
  background-color: #f3faf3;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 48px;
}

.portfolio-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
}

.portfolio-section-subtitle {
  font-size: 1.1rem;
  font-style: italic;
  color: #4b5563;
  font-weight: 400;
}

.pharma-badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.pharma-badge-card {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  padding: 16px 28px;
  text-align: center;
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.pharma-badge-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.badge-brand-title {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
}

.badge-brand-title .red {
  color: #d97706;
  color: #e11d48;
}

.badge-brand-title .blue {
  color: #1e3a8a;
}

.badge-brand-title .pink {
  color: #db2777;
}

.badge-composition {
  font-size: 0.85rem;
  color: #4b5563;
  font-weight: 500;
  margin-top: 4px;
}

.onco-native-quote-banner {
  position: relative;
  max-width: 720px;
  margin: 50px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px 10px 0;
}

.quote-blue-bar {
  background: linear-gradient(90deg, #1e3a8a 0%, #172554 100%);
  color: #ffffff;
  padding: 16px 60px 16px 30px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 18px rgba(30, 58, 138, 0.25);
}

.quote-blue-bar .quote-text {
  font-family: 'Playfair Display', Georgia, cursive, serif;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.pink-ribbon-wrapper {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  filter: drop-shadow(0 4px 10px rgba(236, 72, 153, 0.4));
}

.pink-ribbon-wrapper img {
  height: 85px;
  width: auto;
  display: block;
}
.mission-vision-section.highlighted-mv-section {
  padding: 85px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

.mv-header {
  text-align: center;
  margin-bottom: 50px;
}

.mv-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid #bae6fd;
  margin-bottom: 14px;
}

.mission-vision-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.mv-lead-desc {
  color: #334155;
  font-size: 1.05rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1050px;
  margin: 0 auto;
}

.mv-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.mv-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-color: #38bdf8;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.mv-icon-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
}

.mv-icon-badge.blue-badge-icon {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.35);
}

.mission-subtitle,
.vision-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.mission-text,
.vision-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #cbd5e1;
  font-weight: 400;
}

/* ===================================
   DIRECTOR'S THOUGHT SECTION
   =================================== */
.director-thought-section {
  padding: 80px 0;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.director-thought-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 36px;
  max-width: 1040px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #bae6fd;
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.1);
  align-items: center;
}

.director-photo-col {
  width: 100%;
}

.director-image-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  background: #0f172a;
}

.director-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.director-thought-card:hover .director-image-wrapper img {
  transform: scale(1.04);
}

.director-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.director-badge i {
  color: #38bdf8;
}

.director-content-col {
  display: flex;
  flex-direction: column;
}

.director-quote-icon {
  font-size: 2.2rem;
  color: #38bdf8;
  margin-bottom: 12px;
}

.director-thought-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.5;
  margin-bottom: 14px;
}

.director-thought-p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 14px;
}

.director-footer-sign {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sign-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.sign-info span {
  font-size: 0.82rem;
  color: #0284c7;
  font-weight: 600;
}

.btn-read-director {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0284c7;
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.btn-read-director:hover {
  background: #0369a1;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

/* ===================================
   INSPIRATIONAL QUOTES SLIDER SECTION
   =================================== */
.quotes-slider-section {
  padding: 70px 0 90px 0;
  background-color: #f8fafc;
}

.quotes-slider-header {
  text-align: center;
  margin-bottom: 36px;
}

.quotes-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.quotes-slider-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
}

.quotes-carousel-container {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.quotes-slider-track-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  background: #0f172a;
}

.quotes-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.quote-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  height: 260px;
}

.quote-slide img {
  max-width: 100%;
  max-height: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.quote-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.quote-nav-btn:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-50%) scale(1.08);
}

.quote-nav-btn.prev-btn {
  left: -24px;
}

.quote-nav-btn.next-btn {
  right: -24px;
}

.quote-dots-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.quote-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.quote-dot.active {
  background: #0284c7;
  width: 32px;
  border-radius: 10px;
}

/* ===================================
   PRE-FOOTER CTA & REDESIGNED FOOTER
   =================================== */
.pre-footer-cta {
  padding: 50px 0;
  background-color: #ffffff;
  text-align: center;
  border-top: 1px solid #f1f5f9;
}

.btn-contact-us {
  display: inline-block;
  background-color: #333333;
  color: #ffffff;
  padding: 14px 44px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-contact-us:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.site-footer-redesigned {
  background-color: #0f172a;
  color: #cbd5e1;
  padding-top: 65px;
  padding-bottom: 25px;
  border-top: 3px solid #0284c7;
}

.footer-redesigned-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  display: flex;
  align-items: center;
}

.footer-address-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 16px;
}

.footer-logo-brand img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

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

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

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a i {
  font-size: 0.7rem;
  color: #38bdf8;
  transition: transform 0.2s ease;
}

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

.footer-links-list a:hover i {
  transform: translateX(3px);
}

.footer-contact-block {
  margin-bottom: 18px;
}

.footer-contact-item {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-icons a:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.footer-copyright-bar {
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

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

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

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.25;
  margin-bottom: 10px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===================================
   GROUP VERTICALS / FEATURES GRID
   =================================== */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.vertical-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vertical-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.vertical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.vertical-card:hover::before {
  height: 100%;
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: #e0f2fe;
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

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

.card-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link:hover {
  gap: 10px;
}

/* ===================================
   ABOUT OVERVIEW SECTION
   =================================== */
/* ===================================
   REDESIGNED ABOUT US PAGE STYLES
   =================================== */
.about-hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.about-hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.about-hero-tag {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 14px;
  border-radius: 30px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  margin-bottom: 14px;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.about-hero-lead {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 12px;
  font-weight: 400;
}

.about-hero-desc {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #94a3b8;
}

/* ===================================
   COMMITTED PHOTO SLIDER SECTION (ABOUT US)
   =================================== */
.committed-slider-section {
  padding: 45px 0 60px 0;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.committed-slider-container {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.about-slider-track-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #cbd5e1;
  background: #0f172a;
}

.about-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.about-photo-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #0f172a;
}

.about-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px 18px 28px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.88) 100%);
  color: #ffffff;
}

.about-slide-caption span {
  display: inline-block;
  background: rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  backdrop-filter: blur(4px);
}

.about-slide-caption h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.about-slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.about-slide-nav:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-50%) scale(1.08);
}

.about-slide-nav.prev-btn {
  left: -22px;
}

.about-slide-nav.next-btn {
  right: -22px;
}

.about-dots-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.about-slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.about-slide-dot.active {
  background: #0284c7;
  width: 32px;
  border-radius: 10px;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-body-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 14px;
}

.about-location-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(2, 132, 199, 0.15);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.about-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(2, 132, 199, 0.22);
}

.location-image-wrapper {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: #f1f5f9;
  display: block;
  cursor: pointer;
}

.location-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-location-card:hover .location-image-wrapper img {
  transform: scale(1.04);
}

.location-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 6;
}

.location-badge i {
  color: #38bdf8;
}

.location-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 132, 199, 0.55);
  backdrop-filter: blur(3px);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.location-hover-overlay i {
  font-size: 2.2rem;
}

.location-image-wrapper:hover .location-hover-overlay {
  opacity: 1;
}

.location-info-footer {
  padding: 16px 20px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.location-address-text {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 220px;
}

.btn-location-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0284c7;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  white-space: nowrap;
}

.btn-location-map:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
  color: #ffffff !important;
}

.stat-highlight-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.stat-highlight-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.stat-highlight-box.blue-bg {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-color: #93c5fd;
}

.stat-icon {
  font-size: 2rem;
  color: #0284c7;
  margin-bottom: 12px;
}

.stat-highlight-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.stat-highlight-box p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
}

.core-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.pillar-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.12);
  border-color: #0284c7;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0284c7;
  opacity: 0;
  transition: var(--transition);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 54px;
  height: 54px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.pillar-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #64748b;
}

.expertise-badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.expertise-badge {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.expertise-badge i {
  color: #0284c7;
}

.expertise-badge:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.25);
}

.expertise-badge:hover i {
  color: #ffffff;
}

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

.message-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.message-header-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 28px 32px;
  position: relative;
}

.message-header-bar.blue-header {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.quote-icon {
  font-size: 2.2rem;
  opacity: 0.25;
  position: absolute;
  right: 24px;
  top: 24px;
}

.message-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.message-card-subtitle {
  font-size: 0.9rem;
  color: #bae6fd;
}

.message-body {
  padding: 32px;
  flex-grow: 1;
}

.message-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 16px;
}

.message-tagline {
  font-weight: 600;
  color: #0284c7 !important;
  font-style: italic;
}

.message-photo-header {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: #0f172a;
}

.message-photo-wrapper {
  width: 100%;
  height: 100%;
}

.message-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.message-card:hover .message-photo-wrapper img {
  transform: scale(1.04);
}

.message-header-title-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px 18px 28px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.88) 100%);
  color: #ffffff;
}

.message-photo-header.team-header .message-header-title-box {
  background: linear-gradient(180deg, rgba(2, 132, 199, 0) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.message-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.25);
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  backdrop-filter: blur(4px);
}

.message-badge.blue-badge {
  background: rgba(2, 132, 199, 0.4);
  color: #7dd3fc;
}

.message-body-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.btn-message-toggle {
  display: none;
}

.message-author {
  margin-top: auto;
  padding: 16px 28px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #0284c7;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.author-info span {
  font-size: 0.85rem;
  color: #64748b;
}

.founder-vision-container {
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.founder-vision-container::after {
  content: "";
  display: table;
  clear: both;
}

.founder-subheading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0284c7;
  margin-bottom: 24px;
}

.founder-story-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.founder-story-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

.founder-story-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 18px;
}

.founder-square-card {
  float: right;
  width: 220px;
  max-width: 100%;
  margin: 4px 0 24px 32px;
}

.founder-square-card .founder-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.16);
  border: 1px solid #bae6fd;
  background: #0f172a;
}

.founder-name-tag {
  text-align: center;
  padding: 10px 4px 0 4px;
}

.founder-name-tag h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
  line-height: 1.3;
}

.founder-name-tag span {
  font-size: 0.82rem;
  color: #0284c7;
  font-weight: 600;
}

.founder-square-card .founder-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.founder-square-card:hover .founder-image-wrapper img {
  transform: scale(1.04);
}

.founder-card-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-card-badge i {
  color: #38bdf8;
}

.founder-quote-banner {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  padding: 36px 44px;
  border-radius: 14px;
  margin-top: 40px;
  position: relative;
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.3);
}

.quote-bg-icon {
  font-size: 3.5rem;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.founder-quote-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.founder-signature {
  text-align: right;
}

.sign-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.sign-title {
  font-size: 0.85rem;
  color: #e0f2fe;
}

.join-journey-section {
  padding: 70px 0;
  background-color: #e0f2fe;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.join-journey-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.join-journey-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.join-journey-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.join-journey-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0284c7;
  margin-bottom: 16px;
}

.join-journey-text {
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 28px;
}

.join-journey-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-journey-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0284c7;
  color: #ffffff;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-journey-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.btn-journey-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  color: #0f172a;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1.5px solid #cbd5e1;
  transition: var(--transition);
}

.btn-journey-outline:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: translateY(-2px);
}

.feature-list {
  margin: 24px 0 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--secondary-color);
}

.feature-item i {
  color: var(--primary-color);
}

/* ===================================
   PORTFOLIOS SHOWCASE
   =================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.portfolio-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.08);
}

.portfolio-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(2, 132, 199, 0.9);
  color: white;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
}

.portfolio-body {
  padding: 24px;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.portfolio-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ===================================
   CONTACT SECTION & FORM
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--secondary-color);
  color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.contact-info-card p {
  color: #94a3b8;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item i {
  font-size: 1.4rem;
  color: var(--accent-blue);
  margin-top: 4px;
}

.info-text h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 0.9rem;
  margin: 0;
  color: #cbd5e1;
}

.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--secondary-color);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.alert-success {
  background-color: #dcfce7;
  color: #166534;
  padding: 14px 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  border: 1px solid #bbf7d0;
  font-weight: 500;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background-color: #111827;
  color: #9ca3af;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 1px solid #1f2937;
}

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

.footer-brand img {
  height: 45px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

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

.footer-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

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

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

.footer-links a {
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
  .hero-banner {
    min-height: 460px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid,
  .footer-redesigned-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }

  .brand-logo img {
    height: 42px;
    max-width: 75vw;
    object-fit: contain;
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 3px solid #0284c7;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, visibility 0.4s;
    pointer-events: none;
    z-index: 999;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 16px;
  }

  /* Staggered Slide-In Animation for Mobile Nav Links */
  .main-nav.active .nav-item {
    animation: mobileNavItemSlideIn 0.35s ease forwards;
  }

  .main-nav.active .nav-item:nth-child(1) { animation-delay: 0.05s; }
  .main-nav.active .nav-item:nth-child(2) { animation-delay: 0.1s; }
  .main-nav.active .nav-item:nth-child(3) { animation-delay: 0.15s; }
  .main-nav.active .nav-item:nth-child(4) { animation-delay: 0.2s; }
  .main-nav.active .nav-item:nth-child(5) { animation-delay: 0.25s; }

@keyframes mobileNavItemSlideIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    display: none;
  }

  .nav-item.open .dropdown-menu {
    display: block;
  }

  .hero-banner {
    background-position: center center;
    padding: 40px 0;
    min-height: calc(100vh - 70px);
  }

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

  .hero-content-card {
    max-width: 100%;
    text-align: center;
  }

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

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

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

  .btn-hero-dark,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-left-content {
    align-items: center;
    text-align: center;
  }

  .product-heading-serif {
    font-size: 2.4rem;
  }

  .product-brand-logo img {
    height: 50px;
  }

  .specialities-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 380px;
  }

  .specialities-title {
    font-size: 2.2rem;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
  }

  .quotes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .about-overview-grid,
  .messages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .founder-square-card {
    float: none;
    width: 280px;
    margin: 0 auto 24px auto;
  }

  .message-body-wrapper {
    position: relative;
    padding: 0;
  }

  .message-body {
    max-height: 175px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease-in-out;
  }

  .message-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .message-body.expanded {
    max-height: 2500px !important;
  }

  .message-body.expanded::after {
    opacity: 0;
  }

  .btn-message-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 64px);
    margin: 12px 32px 24px 32px;
    padding: 10px 18px;
    background: #e0f2fe;
    color: #0284c7;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
  }

  .btn-message-toggle:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
  }

  .about-hero-title {
    font-size: 1.55rem;
  }

  .about-photo-slide {
    height: 250px;
  }

  .about-slide-caption {
    padding: 16px 20px 14px 20px;
  }

  .about-slide-caption h3 {
    font-size: 0.95rem;
  }

  .about-slide-nav {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

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

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

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mv-card {
    padding: 28px 20px;
  }

  .quote-slide {
    height: 200px;
  }

  .quote-slide img {
    max-height: 200px;
  }

  .quote-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

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

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

  .director-thought-card {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 20px;
  }

  .director-image-wrapper {
    height: 240px;
  }

  .director-thought-heading {
    font-size: 1.15rem;
  }

  .director-footer-sign {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-read-director {
    width: 100%;
    justify-content: center;
  }

  .pharma-badge-card {
    min-width: 100%;
    box-sizing: border-box;
  }

  .onco-native-quote-banner {
    padding: 10px 10px;
  }

  .quote-blue-bar {
    padding: 14px 45px 14px 18px;
  }

  .quote-blue-bar .quote-text {
    font-size: 0.95rem;
  }

  .pink-ribbon-wrapper {
    right: 5px;
  }

  .pink-ribbon-wrapper img {
    height: 60px;
  }

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

@media (max-width: 480px) {
  .brand-logo img {
    height: 34px;
    max-width: 72vw;
  }

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

  .products-section-title,
  .section-title {
    font-size: 1.45rem;
  }

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

  .about-photo-slide {
    height: 210px;
  }

  .director-image-wrapper {
    height: 200px;
  }

  .products-catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-search-input {
    font-size: 0.85rem;
    padding: 12px 16px 12px 42px;
  }

  .join-journey-box {
    padding: 24px 18px;
  }
}

/* ===================================
   SCROLL FADE-UP REVEAL ANIMATION FOR CARDS
   =================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
  will-change: transform, opacity;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
