body {
  font-family: 'Inter', sans-serif;
  padding-top: 70px;
}

:root {
  /* Al Habib Core */
  --ah-green-dark: #0f3d2e;
  --ah-green-primary: #1f7a5a;
  --ah-green-light: #3bbf9b;

  /* Supporting */
  --ah-mint-glow: rgba(90, 255, 200, 0.45);
  --ah-white-soft: rgba(255,255,255,0.88);
  --ah-white-muted: rgba(255,255,255,0.7);
}

/* ===== MEGA NAV ===== */
.mega-nav {
  z-index: 1050;
  transition: box-shadow .3s ease;
}

/* Sticky shadow */
.mega-nav.scrolled {
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.navbar-brand img{
  width: 100%;
  max-width: 130px;
}

/* ===== MEGA MENU ===== */
.mega-menu {
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
}


/* Links */
.mega-menu a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.navbar-expand-lg .navbar-nav{
  gap: 30px;
}

.mega-menu a:hover {
  color: #198754;
}

.navbar-toggler:focus{
  box-shadow: none;
}

/* Headings */
.mega-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f5132;
}

/* ===== MEGA MENU ANIMATION ===== */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
  display: block; /* IMPORTANT */
  pointer-events: none;
}

@media (min-width: 992px) {
  .dropdown:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}


.mega-list li {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.mega-list i {
  font-size: 12px;
  margin-right: 6px;
  color: #198754;
}

.mega-nav {
  background: #fff !important;
  transition: all 0.35s ease;
}

.mega-nav .nav-link {
  color: #000000;
}

.mega-nav .nav-link {
  position: relative;
  color: #000;
  transition: color 0.25s ease;
}

.mega-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--theme-color1, #22c55e);
  transition: width 0.3s ease;
}

/* Hover */
.mega-nav .nav-link:hover {
  color: var(--theme-color1, #22c55e);
}

.mega-nav .nav-link:hover::after {
  width: 100%;
}

/* Active */
.mega-nav .nav-link.active,
.mega-nav .nav-link.current,
.mega-nav .nav-link[aria-current="page"] {
  color: var(--theme-color1, #22c55e);
  font-weight: 600;
}

.mega-nav .nav-link.active::after,
.mega-nav .nav-link.current::after,
.mega-nav .nav-link[aria-current="page"]::after {
  width: 100%;
}



.mega-nav.scrolled {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.mega-nav.scrolled .nav-link {
  color: #333;
}

.mega-nav.scrolled .navbar-brand {
  color: #0f5132;
}


/* Desktop hover only */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* Mobile behavior */
@media (max-width: 991px) {
  .mega-menu {
    position: static;
  }
}


/* Dropdown base */
/* Base */
.nav-item {
  position: relative;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;

  /* animation setup */
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;

  z-index: 999;
}

/* Desktop hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile open (JS controlled) */
.dropdown.open .dropdown-menu {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile layout */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
  }
}

/* Dropdown items */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.dropdown-toggle::after{
  display: none;
}

.dropdown.open .dropdown-menu {
  display: block;
}




/* ===== HERO BANNER ===== */
.hero-banner {
  background: linear-gradient(135deg, #000000, #854b4b);
  position: relative;
}

/* ===== HERO CONTENT CONTAINER ===== */
.hero-content {
  padding: 36px 40px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  backdrop-filter: blur(8px);
  text-align: center;
}

/* ===== EYEBROW / BADGE ===== */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 10px;
}

/* ===== TITLE ===== */
.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero-gradient-text {
  background: linear-gradient(90deg, #a7f3d0, #5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== TYPEWRITER LINE ===== */
.hero-typing {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 14px 0 18px;
  min-height: 42px; /* prevents jump */
}

/* ===== SUBTEXT ===== */
.hero-subtext {
  max-width: 100%;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

.subtext-highlight {
  color: #a7f3d0;
  font-weight: 500;
}

/* ===== BUTTONS ===== */
.btn-primary-gradient {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  color: #fff;
  padding: 14px 28px;
  font-weight: 500;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(34,197,94,0.3);
  transition: all .25s ease;
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(34,197,94,0.45);
}

.btn-glass {
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  transition: all .25s ease;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.08);
}




/* ===== HERO VIDEO ===== */


/* Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.25; /* SUBTLE */
  z-index: 1;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(15,81,50,0.85),
    rgba(25,135,84,0.85)
  ); */
  z-index: 2;
}

/* Content above video */
.hero-banner .container {
  z-index: 3;
  position: relative;
}

/* Disable video on mobile */
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }
}

@media(max-width: 500px){
  .hero-actions .btn{
    padding: 14px 20px;
    margin-bottom: 10px;
  }
}

/* =========================
   MOBILE (phones)
========================= */
@media (max-width: 575px) {
    
  .mega-nav{
      z-index: 99999;
  }    

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
  }

  .hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    margin-right: 8px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .hero-typing {
    font-size: 1.1rem;
    min-height: 32px;
    margin: 10px 0 14px;
  }

  .hero-subtext {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 100%;
  }

  /* Buttons */
  .hero-actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
  }

  .btn-primary-gradient,
  .btn-glass {
    width: 100%;
    text-align: center;
    padding: 13px 18px;
    border-radius: 9px;
  }

  /* Image */
  .hero-image img {
    animation: none;
  }

  .hero-image {
    margin-top: 30px;
    text-align: center;
  }

  /* Decorative shapes */
  .shape-1 {
    width: 180px;
    height: 180px;
    top: -60px;
    left: -60px;
  }

  .shape-2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: -80px;
  }
}


/* =========================
   SMALL TABLETS
========================= */
@media (min-width: 576px) and (max-width: 767px) {

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-typing {
    font-size: 1.25rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-image {
    margin-top: 36px;
  }
}


/* =========================
   TABLETS
========================= */
@media (min-width: 768px) and (max-width: 991px) {

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-typing {
    font-size: 1.35rem;
  }

  .hero-subtext {
    max-width: 480px;
  }
}



/* ===== COUNTER SECTION ===== */
.counter-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

.counter-card h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f5132;
  margin-bottom: 6px;
}

.counter-card .plus {
  color: #22c55e;
  font-size: 1.6rem;
  margin-left: 2px;
}

.counter-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Soft entrance */
.counter-card {
  opacity: 0;
  transform: translateY(18px);
  transition: all .6s ease;
}

.counter-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.counter-card {
  opacity: 1; /* force visible for debugging */
}


/* ===============================
   ABOUT SNAPSHOT – FINAL
================================ */

.about-snapshot.advanced {
  position: relative;
  background:
    radial-gradient(1200px 400px at 80% 0%, rgba(34,197,94,0.08), transparent 60%),
    linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 120px 0;
  overflow: hidden;
}

/* Subtle grid texture */
.about-snapshot.advanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Eyebrow */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #198754;
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow-line {
  width: 36px;
  height: 2px;
  background: #198754;
  margin-right: 12px;
}

/* Title */
.section-title {
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.title-accent {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.about-story .section-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #444;
  max-width: 540px;
}

/* Actions */
.about-actions {
  margin-top: 28px;
}

/* Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* Cards */
.about-card {
  opacity: 0;
  transform: translateY(22px);
  border-radius: 18px;
  padding: 32px 30px;
  transition: transform .6s ease, opacity .6s ease, box-shadow .35s ease;
}

.about-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f5132;
  margin: 14px 0 6px;
}

.about-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Card Styles */
.about-card.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.about-card.solid {
  background: #ffffff;
  border: 1px solid #eef2f6;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

/* Hover */
@media (min-width: 992px) {
  .about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.14);
  }

  .about-card:hover h4 {
    color: #166534;
  }
}

/* Icons */
.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #166534;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}


/* =========================================
   ABOUT SNAPSHOT – DARK EXECUTIVE (FINAL)
========================================= */

.about-snapshot.advanced {
  position: relative;
  background:
    radial-gradient(1200px 500px at 70% -10%, rgba(34,197,94,0.12), transparent 60%),
    linear-gradient(180deg, #0b1220, #020617);
  padding: 120px 0;
  overflow: hidden;
}

/* Subtle executive grid texture */
.about-snapshot.advanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* ================= EYEBROW ================= */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #22c55e;
  margin-bottom: 14px;
}

.eyebrow-line {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  margin-right: 12px;
}

/* ================= TITLE ================= */

.section-title-1 {
  font-size: clamp(2.2rem, 3.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #f8fafc;
}

.title-accent {
  background: linear-gradient(135deg, #22c55e, #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= TEXT ================= */

.about-story .section-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 540px;
}

/* ================= ACTION ================= */

.about-actions {
  margin-top: 28px;
}

.about-actions .btn-outline-success {
  color: #22c55e;
  border-color: #22c55e;
}

.about-actions .btn-outline-success:hover {
  background: #22c55e;
  color: #020617;
}

/* ================= GRID ================= */

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* ================= CARDS ================= */

.about-card {
  opacity: 0;
  transform: translateY(22px);
  border-radius: 18px;
  padding: 32px 30px;
  transition: transform .6s ease, opacity .6s ease, box-shadow .35s ease;
}

.about-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
  margin: 14px 0 6px;
}

.about-card p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin: 0;
}

/* Glass Cards */
.about-card.glass {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

/* Solid Cards */
.about-card.solid {
  background: #020617;
  border: 1px solid #1e293b;
  box-shadow: 0 18px 45px rgba(0,0,0,0.5);
}

/* ================= ICONS ================= */

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #14532d, #22c55e);
  color: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ================= HOVER ================= */

@media (min-width: 992px) {
  .about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.65);
  }

  .about-card:hover h4 {
    color: #4ade80;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .about-snapshot.advanced {
    padding: 80px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .about-card {
    padding: 24px 22px;
  }
}


/* ===== THERAPEUTIC AREAS ===== */
.therapeutic-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #07140f 0%, #0b1f17 100%);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.therapeutic-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(25,135,84,0.15), transparent 65%);
}


/* Card grid */
.therapy-card {
  height: 100%;
  background: linear-gradient(180deg, #0f2a20, #0a1e17);
  border-radius: 22px;
  padding: 38px 34px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  transition: transform .45s ease, box-shadow .45s ease;
  overflow: hidden;
}

/* executive border */
.therapy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(180deg, #1fa36b, transparent 70%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* primary card highlight */
.therapy-card.primary {
  background: linear-gradient(180deg, #123d2b, #0c251b);
}

/* hover */
.therapy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 100px rgba(0,0,0,0.75);
}



/* Prevent mirror text */
.therapy-card-inner {
  backface-visibility: hidden;
}


.section-title1{
  font-size: clamp(2.1rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #fff;
}

.title-accent1{
  color: #00a758;
}

.section-text{
  color: #fff;
}

/* Highlight oncology */
.therapy-card.primary {
  background: linear-gradient(
    180deg,
    rgba(34,197,94,0.08),
    rgba(34,197,94,0.02)
  );
  border-color: rgba(34,197,94,0.25);
}

/* Icons */
.therapy-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

/* Headings */
.therapy-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1cd47d;
  margin-bottom: 10px;
}

/* Text */
.therapy-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

/* Hover */
@media (min-width: 992px) {
  .therapy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
}

/* =========================
   MOBILE (phones)
========================= */
@media (max-width: 575px) {

  .therapeutic-section {
    padding: 70px 0;
  }

  .therapy-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .therapy-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .therapy-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .therapy-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}


/* =========================
   SMALL TABLETS
========================= */
@media (min-width: 576px) and (max-width: 767px) {

  .therapeutic-section {
    padding: 85px 0;
  }

  .therapy-card {
    padding: 28px 24px;
  }

  .therapy-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}


/* =========================
   TABLETS
========================= */
@media (min-width: 768px) and (max-width: 991px) {

  .therapeutic-section {
    padding: 95px 0;
  }

  .therapy-card h4 {
    font-size: 1.1rem;
  }

  .therapy-card p {
    font-size: 0.92rem;
  }
}



/* ===== PARTNER CREATIVE SECTION ===== */
.partner-creative {
  background: #ffffff;
  padding: 120px 0;
}

/* Timeline */
.partner-timeline {
  position: relative;
  padding-left: 30px;
}

.partner-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(34,197,94,0.8),
    rgba(34,197,94,0.1)
  );
}

/* Item */
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 42px;
  position: relative;
}

.timeline-step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 22px;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f5132;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  max-width: 520px;
}

/* Highlight panel */
.partner-highlight {
  background: linear-gradient(
    180deg,
    rgba(34,197,94,0.08),
    rgba(34,197,94,0.02)
  );
  border-radius: 20px;
  padding: 38px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.partner-highlight h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f5132;
  margin-bottom: 14px;
}

.partner-highlight p {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
}

.partner-highlight ul {
  padding-left: 0;
  list-style: none;
  margin: 18px 0;
}

.partner-highlight li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #333;
}

/* Responsive */
@media (max-width: 991px) {
  .partner-timeline::before {
    left: 0;
  }
}

/* =========================
   MOBILE (phones)
========================= */
@media (max-width: 575px) {

  .partner-creative {
    padding: 70px 0;
  }

  /* Timeline */
  .partner-timeline {
    padding-left: 18px;
  }

  .partner-timeline::before {
    left: 6px;
    width: 2px;
  }

  .timeline-item {
    margin-bottom: 32px;
  }

  .timeline-step {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
    margin-right: 14px;
  }

  .timeline-content h4 {
    font-size: 1.05rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  /* Highlight panel */
  .partner-highlight {
    margin-top: 40px;
    padding: 26px 22px;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  }

  .partner-highlight h3 {
    font-size: 1.25rem;
  }

  .partner-highlight p {
    font-size: 0.95rem;
  }

  .partner-highlight li {
    font-size: 0.9rem;
  }
}


/* =========================
   SMALL TABLETS
========================= */
@media (min-width: 576px) and (max-width: 767px) {

  .partner-creative {
    padding: 90px 0;
  }

  .partner-timeline {
    padding-left: 24px;
  }

  .timeline-step {
    width: 38px;
    height: 38px;
  }

  .partner-highlight {
    padding: 32px 30px;
  }
}


/* =========================
   TABLETS
========================= */
@media (min-width: 768px) and (max-width: 991px) {

  .partner-creative {
    padding: 105px 0;
  }

  .timeline-content p {
    max-width: 100%;
  }
}


/* ===== GLOBAL PARTNERS ===== */
.global-partners {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 120px 0;
}

/* World map */
.world-map {
  position: relative;
  max-width: 520px;
  margin: auto;
  opacity: 0.9;
}

/* Map dots */
.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.15);
  animation: pulse 2.4s infinite;
}

/* Approximate positions */
.map-dot.korea { top: 38%; left: 72%; }
.map-dot.china { top: 42%; left: 68%; }
.map-dot.india { top: 52%; left: 62%; }
.map-dot.argentina { top: 72%; left: 32%; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.35); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Partner logos grid */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.partner-logo {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: transform .25s ease;
}

.partner-logo:hover {
  transform: translateY(-6px);
}

.partner-logo img {
  max-height: 50px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 0px;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all .25s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo span {
  font-size: 0.85rem;
  color: #555;
}

/* =========================
   MOBILE (phones)
========================= */
@media (max-width: 575px) {

  .global-partners {
    padding: 70px 0;
  }

  /* World map */
  .world-map {
    max-width: 320px;
    margin-bottom: 40px;
    opacity: 0.95;
  }

  /* Map dots */
  .map-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
  }

  /* Logos grid */
  .partner-logos {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-logo {
    padding: 20px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  }

  .partner-logo img {
    max-height: 42px;
    max-width: 160px;
    filter: grayscale(0%);
    opacity: 1;
  }

  .partner-logo span {
    font-size: 0.82rem;
  }
}


/* =========================
   SMALL TABLETS
========================= */
@media (min-width: 576px) and (max-width: 767px) {

  .global-partners {
    padding: 90px 0;
  }

  .world-map {
    max-width: 380px;
    margin-bottom: 50px;
  }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .partner-logo img {
    max-height: 46px;
  }
}


/* =========================
   TABLETS
========================= */
@media (min-width: 768px) and (max-width: 991px) {

  .global-partners {
    padding: 105px 0;
  }

  .world-map {
    max-width: 450px;
  }

  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .partner-logo img {
    max-height: 48px;
  }
}


/* ===== CLIENTS & INSTITUTIONS ===== */
.clients-section {
  background: #ffffff;
  padding: 120px 0;
}

/* Blocks */
.clients-block {
  margin-bottom: 70px;
}

.clients-block.highlight {
  background: linear-gradient(
    180deg,
    rgba(15,81,50,0.04),
    rgba(15,81,50,0.01)
  );
  border-radius: 20px;
  padding: 40px 36px;
}

/* Subtitle */
.clients-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f5132;
  margin-bottom: 22px;
}

/* Government note */
.gov-note {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 26px;
}

/* Logos grid */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  align-items: center;
}

/* Logo container */
.client-logo {
  background: #f9fafb;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  perspective: 1000px;
  transition: box-shadow .3s ease;
}

/* Inner (this flips) */
.client-logo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.4,.2,.2,1);
}

/* Logo image */
.client-logo img {
  max-height: 60px;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter .3s ease, opacity .3s ease;
  backface-visibility: hidden;
}

/* ==========================
   FLIP UP (DESKTOP ONLY)
========================== */
@media (hover: hover) and (pointer: fine) {

  .client-logo:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  }

  .client-logo:hover .client-logo-inner {
    transform: rotateX(12deg) translateY(-6px);
  }

  .client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }
}

/* Government logos slightly stronger */
.client-logo.gov {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
}

/* =========================
   MOBILE (default & small screens)
========================= */
@media (max-width: 575px) {

  .clients-section {
    padding: 70px 0;
  }

  .clients-block {
    margin-bottom: 45px;
  }

  .clients-block.highlight {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .clients-subtitle {
    font-size: 1.05rem;
    margin-bottom: 18px;
    text-align: center;
  }

  .gov-note {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 22px;
  }

  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .client-logo {
    padding: 16px 12px;
    border-radius: 12px;
  }

  .client-logo img {
    max-height: 42px;
    max-width: 150px;
    opacity: 0.9;
    filter: grayscale(0%);
  }
}


/* =========================
   SMALL TABLETS
========================= */
@media (min-width: 576px) and (max-width: 767px) {

  .clients-section {
    padding: 85px 0;
  }

  .clients-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .client-logo img {
    max-height: 48px;
  }
}


/* =========================
   TABLETS
========================= */
@media (min-width: 768px) and (max-width: 991px) {

  .clients-section {
    padding: 100px 0;
  }

  .clients-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
  }

  .client-logo img {
    max-height: 55px;
  }
}

/* =====================================
   GOVERNMENT PARTNERS – DARK SLIDER
===================================== */

.govt-partners-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #07140f, #0b1f17);
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

/* title */
.govt-partners-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e6f2ec;
  margin-bottom: 6px;
}

/* subtitle */
.govt-partners-note {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(230,242,236,0.75);
  margin-bottom: 42px;
}

/* slider viewport */
.govt-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px;
}

/* moving track */
.govt-slider-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: govtScroll 40s linear infinite;
}

/* pause on hover */
.govt-slider:hover .govt-slider-track {
  animation-play-state: paused;
}

/* logo cards */
.govt-logo-card {
  min-width: 230px;
  height: 160px;
  padding: 26px 34px;
  background: linear-gradient(180deg, #0f2a20, #0a1e17);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(156,198,117,0.18);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transition: transform .4s ease, box-shadow .4s ease;
}

/* images */
.govt-logo-card img {
  max-height: 110px;
    max-width: 220px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
}

/* hover effect */
.govt-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.8);
}

/* animation */
@keyframes govtScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 768px) {

  .govt-partners-section {
    padding: 70px 16px;
  }

  .govt-slider-track {
    gap: 40px;
    animation-duration: 55s;
  }

  .govt-logo-card {
    min-width: 180px;
    height: 100px;
    padding: 20px 26px;
  }

  .govt-logo-card img {
    max-height: 56px;
    max-width: 140px;
  }
}




/* ===== JOURNEY (LIGHT THEME) ===== */
.journey-modern-light {
  background: #f8fafc;
  padding: 120px 0;
}

.timeline-modern {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* Center line */
.timeline-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(15,81,50,0.5),
    rgba(15,81,50,0.5) 6px,
    transparent 6px,
    transparent 14px
  );
  transform: translateX(-50%);
}

/* Card wrapper */
.timeline-card {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 90px;
  opacity: 0; /* GSAP controls this */
}

.timeline-card.left {
  left: 0;
  text-align: right;
}

.timeline-card.right {
  left: 50%;
  text-align: left;
}

/* Dot */
.timeline-dot {
  position: absolute;
  top: 18px;
  right: -7px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.2);
}

.timeline-card.right .timeline-dot {
  left: -7px;
  right: auto;
}

/* Card */
.timeline-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 28px;
  max-width: 360px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  display: inline-block;
}

.timeline-card.left .timeline-box {
  margin-left: auto;
}

/* Text */
.timeline-box .year {
  font-size: 0.8rem;
  color: #198754;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.timeline-box h4 {
  margin: 8px 0;
  color: #0f5132;
  font-size: 1.1rem;
}

.timeline-box p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
  .timeline-card,
  .timeline-card.left,
  .timeline-card.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 40px;
  }

  .timeline-spine {
    left: 20px;
  }

  .timeline-dot {
    left: 13px !important;
    right: auto !important;
  }

  .timeline-box {
    max-width: 100%;
  }
}


/* about us page */


/* ===== ABOUT HERO ===== */
/* ===== WHO WE ARE ===== */
/* ===============================
   ABOUT – DARK EXECUTIVE THEME
================================ */
.about-expanded {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, #0b1f17 0%, #07140f 100%);
  color: #e6f2ec;
  overflow: hidden;
}

/* subtle executive glow */
.about-expanded::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(25,135,84,0.18), transparent 65%);
  z-index: 0;
}

/* IMAGE */
.about-image {
  position: relative;
  z-index: 1;
}

.about-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
  filter: saturate(0.95) contrast(1.05);
  transition: transform .6s ease, box-shadow .6s ease;
}

.about-image:hover img {
  transform: translateY(-6px);
  box-shadow: 0 55px 110px rgba(0,0,0,0.7);
}

/* CONTENT */
.about {
  position: relative;
  z-index: 1;
  padding-left: 24px;
}

.about-expanded h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #c9f0dc;
  margin-bottom: 20px;
  position: relative;
}

/* executive underline */
.about-expanded h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 12px;
  border-radius: 3px;
  background: linear-gradient(90deg, #198754, #9cc675);
}

.about-expanded p {
  max-width: 660px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(230,242,236,0.85);
  margin-bottom: 14px;
}

/* ===============================
   EXECUTIVE STATS
================================ */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.about-stats div {
  position: relative;
  background: linear-gradient(180deg, #0f2a20, #0a1e17);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transition: transform .4s ease, box-shadow .4s ease;
  overflow: hidden;
}

/* accent line */
.about-stats div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(180deg, #1fa36b, transparent 60%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.about-stats div:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.8);
}

.about-stats strong {
  font-size: 2.1rem;
  font-weight: 800;
  color: #9cc675;
  display: block;
}

.about-stats span {
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  color: rgba(230,242,236,0.75);
}

/* Counter subtle glow during animation */
.counter {
  transition: color .3s ease;
}

.counter.counting {
  color: #c9f0dc;
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .about {
    padding-left: 0;
  }

  .about-expanded h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 767px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

/* ===== MISSION / VISION ===== */
/* ===============================
   MISSION & VISION – EXECUTIVE
================================ */
.mission-vision {
  position: relative;
  padding: 30px 0 65px;
  margin-bottom: 40px;
  background: linear-gradient(180deg, #07140f 0%, #0b1f17 100%);
  overflow: hidden;
}

/* subtle strategic glow */
.mission-vision::before {
  content: "";
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(25,135,84,0.15), transparent 65%);
  z-index: 0;
}

.mv-card {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #0f2a20, #0a1e17);
  border-radius: 20px;
  padding: 46px 42px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  transition: transform .4s ease, box-shadow .4s ease;
  overflow: hidden;
  z-index: 1;
}

/* fine executive border */
.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(180deg, #1fa36b, transparent 70%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 100px rgba(0,0,0,0.8);
}

/* TITLE */
.mv-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #c9f0dc;
  margin-bottom: 16px;
  position: relative;
}

/* underline accent */
.mv-card h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg, #198754, #9cc675);
  border-radius: 2px;
  margin-top: 10px;
}

/* TEXT */
.mv-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(230,242,236,0.85);
  margin: 0;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .mission-vision {
    padding: 110px 0;
  }

  .mv-card {
    padding: 38px 32px;
  }
}

@media (max-width: 767px) {
  .mv-card h3 {
    font-size: 1.45rem;
  }
}


/* ===== CORE VALUES ===== */
.core-values {
  padding: 120px 0;
}

.values-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.value-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 36px 26px;
}

.value-card h4 {
  color: #0f5132;
  margin-bottom: 10px;
}

/* ===== COMPLIANCE ===== */
.compliance-section {
  background: #f8fafc;
  padding: 120px 0;
}

.compliance-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ===== CTA ===== */
.about-cta {
  background: linear-gradient(135deg, rgb(0 0 0 / 95%), rgb(4 82 45 / 95%));
  color: #fff;
  padding: 100px 0;
}

.about-cta p {
  max-width: 620px;
  margin: 0 auto 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}



/* ===== HERO ===== */
    .portfolio-hero {
      background: linear-gradient(
        135deg,
        rgba(15,81,50,0.95),
        rgba(25,135,84,0.95)
      );
      color: #fff;
      padding: 120px 0;
    }

    .portfolio-hero h1 {
      font-size: 2.6rem;
      font-weight: 700;
    }

    .portfolio-hero p {
      max-width: 560px;
      font-size: 1.05rem;
      line-height: 1.6;
    }

    /* ===== INTRO ===== */
    .portfolio-intro {
      padding: 90px 0 40px;
    }

    .portfolio-intro h2 {
      color: #0f5132;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .portfolio-intro p {
      max-width: 700px;
      line-height: 1.7;
    }

    /* ===== GRID ===== */
    .portfolio-grid {
      padding: 60px 0 120px;
    }

    .product-card {
      background: #ffffff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(0,0,0,0.08);
      height: 100%;
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }

    .product-image img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .product-content {
      padding: 28px 26px 32px;
    }

    .product-category {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: #198754;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .product-content h4 {
      color: #0f5132;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .product-content p {
      font-size: 0.95rem;
      color: #555;
      margin: 0;
    }

    /* reveal */

    .pharma-hover-card {
  position: relative;
  height: 320px;
  max-width: 420px;
  margin: auto;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.08);
}

.pharma-hover-card::before,
.pharma-hover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

/* BEFORE: subtle inner frame */
.pharma-hover-card::before {
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  opacity: 1;
}

/* AFTER: directional surface highlight */
.pharma-hover-card::after {
  background: linear-gradient(
    90deg,
    rgba(123,63,161,0.06) 0%,
    rgba(123,63,161,0.02) 40%,
    transparent 70%
  );
  opacity: 0;
  transform: translateX(20px);
}

/* ON HOVER */
.pharma-hover-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}


/* SHARED LAYERS */
.card-layer {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s ease;
}

/* IMAGE LAYER */
.image-layer {
  background: linear-gradient(180deg, #fafafa 0%, #f1f3f7 100%);
  z-index: 1;
  flex-direction: column;
  gap: 14px;
}

.image-layer img {
  max-width: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* PRODUCT NAME */
.product-name {
  color: #0f5132;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

/* DATA LAYER */
.data-layer {
  background: #ffffff;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  justify-content: center;
  padding: 36px 34px;

  /* SLIDE FROM RIGHT */
  transform: translateX(40px);
  transition: opacity .8s ease, transform .8s ease-in-out;
}

/* HOVER BEHAVIOR */
.pharma-hover-card:hover .image-layer {
  opacity: 1;
}

.pharma-hover-card:hover .data-layer {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}


@media (max-width: 768px) {
  .image-layer {
    opacity: 1;
  }

  .data-layer {
    opacity: 0;
    transform: none;
    pointer-events: auto;
  }
}



/* TABLE ROWS */
.info-row {
  width: 100%;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #ececf2;
}

.info-row:last-child {
  border-bottom: none;
}

/* LABELS */
.info-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: #0f5132;
}

/* VALUES */
.info-value {
  font-size: 1rem;
  font-weight: 500;
  color: #1f1f1f;
}

.info-value.emphasis {
  font-weight: 700;
}

/* CATEGORY CHIP */
.info-chip {
  display: inline-block;
  background: #107747;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}


    /* ===== CTA ===== */
    .portfolio-cta {
      background: #f8fafc;
      padding: 100px 0;
    }

    .portfolio-cta h2 {
      color: #0f5132;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .portfolio-cta p {
      max-width: 600px;
      margin: 0 auto 28px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .product-image img {
        height: 200px;
      }
    }


 /* ===== HERO ===== */
    .contact-hero {
      background: linear-gradient(
        135deg,
        rgba(15,81,50,0.95),
        rgba(25,135,84,0.95)
      );
      color: #fff;
      padding: 120px 0;
    }

    .contact-hero h1 {
      font-size: 2.6rem;
      font-weight: 700;
    }

    .contact-hero p {
      max-width: 100%;
      font-size: 1.05rem;
      line-height: 1.6;
    }

   
    
.pharma-hero-dark {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 75% 45%,
      var(--ah-mint-glow),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      var(--ah-green-dark) 0%,
      var(--ah-green-primary) 45%,
      #2fa37c 100%
    );
  overflow: hidden;
  position: relative;
}


.pharma-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 60px;
}

.pharma-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.pharma-content h1 {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 26px;
}

.pharma-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ah-white-muted);
  max-width: 520px;
  margin-bottom: 38px;
}

.pharma-actions {
  display: flex;
  gap: 18px;
}

/* RIGHT VISUAL */
.pharma-visual {
  position: relative;
  width: 100%;
  height: 600px;
}

.pharma-visual img {
  position: absolute;
  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,0.35))
    drop-shadow(0 0 60px var(--ah-mint-glow));
  animation: float 7s ease-in-out infinite;
}

.capsule {
  width: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.syringe {
  width: 260px;
  top: 18%;
  left: 10%;
}

.ampoule {
  width: 180px;
  bottom: 12%;
  left: 28%;
}

.vial {
  width: 160px;
  top: 35%;
  right: 5%;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

.pharma-visual {
  perspective: 1000px;
}

.pharma-visual img {
  will-change: transform;
  transform-style: preserve-3d;
}

.capsule-stage {
  position: relative;
}
.capsule-stage img{
  width: 100%;
  border-radius: 10px;
}
.movie-capsule {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,0.35))
    drop-shadow(0 0 60px rgba(90,255,200,0.45));
  will-change: transform;
}

/* =========================
   MOBILE (phones)
========================= */
@media (max-width: 575px) {

  .pharma-hero-dark {
    min-height: auto;
    padding: 90px 0 70px;
  }

  .pharma-container {
    padding: 0 20px;
  }

  .pharma-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* LEFT CONTENT */
  .pharma-content h1 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .pharma-content p {
    font-size: 14.5px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 26px;
  }

  .pharma-actions {
    flex-direction: column;
    gap: 14px;
  }

  .pharma-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* RIGHT VISUAL */
  .pharma-visual {
    height: 360px;
  }

  .pharma-visual img {
    animation: none;
    filter:
      drop-shadow(0 24px 50px rgba(0,0,0,0.3))
      drop-shadow(0 0 40px rgba(90,255,200,0.35));
  }

  .capsule {
    width: 220px;
  }

  .syringe {
    width: 160px;
    top: 10%;
    left: 5%;
  }

  .ampoule {
    width: 120px;
    bottom: 10%;
    left: 18%;
  }

  .vial {
    width: 110px;
    top: 30%;
    right: 6%;
  }
}


/* =========================
   SMALL TABLETS
========================= */
@media (min-width: 576px) and (max-width: 767px) {

  .pharma-container {
    padding: 0 32px;
  }

  .pharma-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .pharma-content h1 {
    font-size: 40px;
  }

  .pharma-visual {
    height: 420px;
  }

  .capsule {
    width: 260px;
  }
}


/* =========================
   TABLETS
========================= */
@media (min-width: 768px) and (max-width: 991px) {

  .pharma-container {
    padding: 0 40px;
  }

  .pharma-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .pharma-content h1 {
    font-size: 46px;
  }

  .pharma-visual {
    height: 500px;
  }

  .capsule {
    width: 300px;
  }
}


/* =========================
   REDUCED MOTION (ACCESSIBILITY)
========================= */
@media (prefers-reduced-motion: reduce) {

  .pharma-visual img {
    animation: none;
    transform: translate(-50%, -50%);
  }
}




/* ===== FOOTER ===== */
.site-footer {
  background: #141111;
  color: rgba(255,255,255,0.8);
  padding: 90px 0 30px;
}

/* Brand */
.footer-logo {
  max-width: 160px;
  margin-bottom: 18px;
  background: #fff;
    padding: 10px;
    border-radius: 10px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 380px;
}

/* Titles */
.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color .25s ease;
}

.footer-links a:hover {
  color: #22c55e;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-contact i {
  margin-right: 12px;
  color: #22c55e;
  font-size: 1.1rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

/* Social */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgb(15 88 45);
  color: #ffffff;
  transition: all .25s ease;
}

.footer-social a:hover {
  background: #22c55e;
  color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

#year{
  color: #16a34a;
}

/* =========================
   FOOTER RESPONSIVE (MOBILE)
   ========================= */

@media (max-width: 991px) {

  .site-footer {
    padding: 70px 0 25px;
    text-align: left;
  }

  /* Stack columns naturally */
  .site-footer .row > div {
    margin-bottom: 36px;
  }

  /* Brand section */
  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }

  .footer-text {
    max-width: 100%;
    text-align: center;
    font-size: 0.95rem;
  }

  /* Social icons center */
  .footer-social {
    justify-content: center;
    display: flex;
    margin-top: 16px;
  }

  /* Section titles */
  .footer-title {
    margin-bottom: 14px;
    font-size: 1.05rem;
    text-align: center;
  }

  /* Links */
  .footer-links{
      text-align: center;
  }
  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 1rem;
  }

  /* Contact */
  .footer-contact li {
    font-size: 1rem;
    justify-content: center;
  }
}

/* =========================
   EXTRA SMALL DEVICES
   ========================= */
@media (max-width: 576px) {

  .site-footer {
    padding: 60px 0 20px;
  }

  .footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Bigger tap targets */
  .footer-links a,
  .footer-contact a {
    padding: 6px 0;
    display: inline-block;
  }

  /* Social icons slightly larger */
  .footer-social a {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  /* Bottom bar */
  .footer-bottom {
    font-size: 0.85rem;
    padding-top: 16px;
  }
}


/* cards */

/* =========================
   PARTNER SECTION WRAPPER
========================= */
.partner-section {
  padding: 120px 0;
  background: #f7f9fb;
}

/* LIST TO MANAGE 6 CARDS */
.partner-list {
  display: flex;
  flex-direction: column;
  gap: 96px; /* KEY: spacing between 6 cards */
}

/* =========================
   PARTNER CARD
========================= */
.partner-container {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 30px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.08);
}

/* OPTIONAL: alternate layout support */
.partner-container.reverse {
  grid-template-columns: 45% 55%;
}

.partner-container.reverse .partner-image {
  order: -1;
}

/* =========================
   TEXT
========================= */
.partner-content {
  max-width: 560px; /* readability control */
}

.partner-tag {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #198754;
  display: inline-block;
  margin-bottom: 12px;
}

.partner-content h2 {
  font-size: 2.1rem;
  font-weight: 600;
  color: #0f3d2e;
  margin-bottom: 24px;
}

.partner-description {
  font-size: 1rem;
  line-height: 1.75;
  color: #3f3f3f;
  margin-bottom: 20px;
}

/* =========================
   FACTS
========================= */
.partner-facts {
  margin-top: 30px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  background: #f1f5f3;
  padding: 22px;
  border-radius: 14px;
}

.partner-facts div {
  font-size: 0.95rem;
  color: #2f2f2f;
}

/* =========================
   BADGES
========================= */
.partner-badges {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.partner-badges span {
  background: rgba(25,135,84,0.1);
  color: #198754;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

/* =========================
   IMAGE
========================= */
.partner-image {
  padding: 16px;
  background: #f2f6f4;
  border-radius: 22px;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 20px;
  filter: saturate(0.95) contrast(0.95);
}

/* =========================
   SCROLL ANIMATION
========================= */
.partner-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.partner-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .partner-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .partner-container {
    grid-template-columns: 1fr;
    padding: 40px 26px;
  }

  .partner-facts {
    grid-template-columns: 1fr;
  }

  .partner-content {
    max-width: 100%;
  }

  .partner-container.reverse .partner-image {
    order: 0;
  }
}





/* VIDEO BUTTON */
.partner-video-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #0f3d2e; /* Al Habib deep green */
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.partner-video-btn:hover {
  background: #0b2f23;
  transform: translateY(-1px);
}


/* VIDEO MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

.video-modal video {
  width: 100%;
  height: auto;
}

/* CLOSE BUTTON */
.video-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
}




/* slick slider */

:root {
  /* Primary Brand Greens */
  --dark-green: #0f3d2e;        /* Deep AHP green */
  --brand-green: #198754;      /* Primary action green */
  --accent-green: #8dc63f;     /* Highlight / badges */

  /* Backgrounds & Surfaces */
  --extra-light-bg: #f7f9fb;   /* Page background */
  --light-bg: #f1f5f3;         /* Cards / sections */
  --surface-white: #ffffff;   /* Cards */

  /* Text Colors */
  --text-dark: #1f2937;        /* Headings */
  --text-muted: #6b7280;       /* Paragraphs / labels */

  /* Subtle Accents */
  --soft-green: rgba(25,135,84,0.12);
  --soft-border: rgba(15,61,46,0.15);

  /* Theme Alias (if used elsewhere) */
  --theme-color2: #198754;
}



 .site-logo {
	 width: 218.33px !important;
	 margin-right: 50px;
}
 .btn {
	 border-radius: 5px;
	 font-weight: normal;
	 font-size: 15px;
	 letter-spacing: 0.02em;
	 line-height: 12px;
	 text-align: center;
	 font-weight: 600;
	 font-size: 14px;
	 padding: 14px 30px;
	 cursor: pointer;
}
 .btn-theme {
	 background: var(--theme-color1);
	 color: #212121;
}

.c-container {
    margin: auto;
    width: 93%;
    position: relative;
    z-index: 1;
}

.btn-outline-white {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: none;
    border-width: 2px;
    border-color: #fff;
    font-weight: 500;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.btn {
    border-radius: 5px;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 30px;
    cursor: pointer;
}
.btn-outline-white:hover {
    background-color: #fff;
    color: var(--text-dark);
}
/* common css up */

.testimonial p {
	 font-size: 28px;
	 letter-spacing: 0.02em;
	 line-height: 35px;
}
 .testimonial .name {
	 font-weight: bold;
	 font-size: 18px;
	 letter-spacing: 0.04em;
	 line-height: 35px;
	 text-align: left;
}
 .testimonial .designation {
	 font-size: 14px;
	 letter-spacing: 0.04em;
	 text-align: left;
	 color: #fff;
	 opacity: 0.65;
}
 .unt {
	 margin-bottom: 20px;
	 margin-top: 60px;
}
 .hero-text {
	 font-size: 30px;
	 letter-spacing: 0.02em;
	 color: #fff;
}
 .gallery-thumbs {
	 height: 100%;
}
 .gallery-thumbs .swiper-wrapper {
	 align-items: center;
}
 .gallery-thumbs .swiper-slide {
	 background-position: center;
	 background-size: cover;
	 width: 250px !important;
	 height: 330px;
	 position: relative;
}
 .gallery-thumbs .swiper-slide img {
	 filter: contrast(0.5) blur(1px);
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 border-radius: 10px;
}
 .gallery-thumbs .swiper-slide-active img {
	 filter: contrast(1) blur(0px) !important;
}
 .flex-row {
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
	 -ms-flex-wrap: wrap;
	 flex-wrap: wrap;
	 margin-right: -15px;
	 margin-left: -15px;
}
 .flex-row .flex-col {
	 -ms-flex-preferred-size: 0;
	 flex-basis: 0;
	 -webkit-box-flex: 1;
	 -ms-flex-positive: 1;
	 flex-grow: 1;
	 max-width: 100%;
	 position: relative;
	 width: 100%;
	 min-height: 1px;
	 padding-right: 15px;
	 padding-left: 15px;
}

.gallery-thumbs .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.testimonial-section .quote {
    width: 75%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 100px;
    padding-right: 100px;
}
.swiper-container.testimonial {
    height: 100vh;
}
.testimonial-section .user-saying {
    background: var(--theme-color2);
    width: 60%;
    color: #fff;
    height: 100%;
}
.testi-user-img {
    width: 40%;
}
.testimonial-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.testimonial-section .quote p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}
.quote-icon {
    width: 38px;
    display: block;
    margin-bottom: 30px;
}

/* =========================
   MOBILE (phones)
========================= */
@media (max-width: 575px) {

  /* Logo */
  .site-logo {
    width: 160px !important;
    margin-right: 0;
  }

  /* Buttons */
  .btn {
    font-size: 13px;
    padding: 12px 20px;
    line-height: 1.2;
  }

  /* Hero text */
  .hero-text {
    font-size: 22px;
    line-height: 1.4;
  }

  /* Testimonials */
  .swiper-container.testimonial {
        height: 100%;
        max-height: 500px;
    }

  .testimonial-section {
    flex-direction: column;
  }

  .testimonial-section .user-saying,
  .testi-user-img {
    width: 100%;
  }

  .testimonial-section .quote {
    width: 100%;
    padding: 40px 22px;
  }

  .testimonial-section .quote p {
    font-size: 16px;
    line-height: 1.7;
  }

  .testimonial p {
    font-size: 20px;
    line-height: 1.5;
  }

  .testimonial .name {
    font-size: 16px;
  }

  .testimonial .designation {
    font-size: 13px;
  }

  /* Gallery thumbs */
  .gallery-thumbs .swiper-slide {
    width: 180px !important;
    height: 240px;
  }

  /* Spacing helpers */
  .unt {
    margin-top: 30px;
    margin-bottom: 15px;
  }

  /* Quote icon */
  .quote-icon {
    width: 28px;
    margin-bottom: 20px;
  }
}


/* =========================
   SMALL TABLETS
========================= */
@media (min-width: 576px) and (max-width: 767px) {

  .site-logo {
    width: 180px !important;
    margin-right: 20px;
  }

  .hero-text {
    font-size: 26px;
  }

  .testimonial-section .quote {
    padding-left: 50px;
    padding-right: 50px;
  }

  .gallery-thumbs .swiper-slide {
    width: 210px !important;
    height: 280px;
  }
}


/* =========================
   TABLETS
========================= */
@media (min-width: 768px) and (max-width: 991px) {

  .site-logo {
    width: 200px !important;
    margin-right: 30px;
  }

  .hero-text {
    font-size: 28px;
  }

  .testimonial-section .quote {
    padding: 24px 18px !important;
  }

  .gallery-thumbs .swiper-slide {
    width: 230px !important;
    height: 300px;
  }

  .swiper-container.testimonial {
    height: auto !important;
    min-height: unset !important;
  }

  .testimonial-section .quote p {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .testimonial p {
    font-size: 18px;
    line-height: 1.5;
  }

  .testimonial .name {
    margin-top: 10px;
    line-height: 1.3;
  }

  .testimonial .designation {
    margin-top: 2px;
  }
}




/* ===============================
   ROADMAP CANVAS
================================ */
.roadmap {
  position: relative;
  width: 100%;
  max-width: 1400px;     /* compressed canvas */
  height: 650px;         /* controlled height */
  margin: 120px auto 0;  /* avoids navbar overlap */
  padding: 0 40px;       /* compressed left & right */
}

/* ===============================
   ROAD SVG
================================ */
.road-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 74%;            /* IMPORTANT: do not stretch */
  height: auto;
  z-index: 1;
}

/* ===============================
   START & FINISH
================================ */
.point {
  position: absolute;
  z-index: 3;
}

.point img {
  width: 110px;          /* balanced size */
  height: auto;
}

.start {
  top: -10px;
  left: 60px;
}


/* ===============================
   PINS
================================ */
.pin {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pin img {
  width: 64px;           /* unified pin size */
  height: auto;
}

/* ===============================
   PIN TEXT
================================ */
.content {
  min-width: 150px;
}

.content h3 {
  font-size: 20px;
    font-weight: bold;
    color: #696969;
}

.content ul li{
  font-size: 14px;
    font-weight: 500;
    color: #f38749;
}

/* ===============================
   EXACT PIN POSITIONS
   (tuned for 1400px canvas)
================================ */
.p1 {
  top: 40px;
  left: 445px;
}

.p2 {
  top: 310px;
  left: 450px;
}

.p3 {
  top: 222px;
  right: 310px;
}

.p4 {
  top: 470px;
  right: 370px;
}

/* ===============================
   TABLETS (scale canvas)
================================ */
@media (max-width: 991px) {

  .roadmap {
    height: 520px;
    padding: 0 24px;
    margin-top: 80px;
  }

  .road-svg {
    width: 90%;
  }

  .pin img {
    width: 52px;
  }

  .content h3 {
    font-size: 18px;
  }

  .content ul li {
    font-size: 13px;
  }

  /* Adjust pin positions proportionally */
  .p1 { top: 30px; left: 280px; }
  .p2 { top: 250px; left: 280px; }
  .p3 { top: 180px; right: 200px; }
  .p4 { top: 380px; right: 240px; }
}


/* ===============================
   MOBILE (stacked roadmap)
================================ */
@media (max-width: 767px) {

  .roadmap {
    height: auto;
    margin: 60px auto 0;
    padding: 0 16px;
  }

  /* Hide road graphic */
  .road-svg,
  .point {
    display: none;
  }

  /* Reset pin behavior */
  .pin {
    position: relative;
    inset: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 14px;
    margin-bottom: 26px;
  }

  .pin img {
    width: 65px;
    flex-shrink: 0;
  }

  .content {
    min-width: unset;
  }

  .content h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .content ul li {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Remove absolute positioning */
  .p1,
  .p2,
  .p3,
  .p4 {
    top: auto;
    left: auto;
    right: auto;
    background: #000000;
    padding: 30px;
    border-radius: 20px;
  }

  .content h3{
    color: #fff;
  }
}




/* HEADER */
.contact-title h1{
  color:#0f766e;
  font-weight:700;
}
.contact-title p{
  color:#6b7280;
}

/* CARD */
.contact-shell{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 25px 55px rgba(0,0,0,.08);
  position:relative;
}

/* LEFT PANEL */
.contact-left{
  background:#063d3a;
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* GLASS BLOBS */
.contact-left::before,
.contact-left::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  background:rgba(255,255,255,.08);
  border-radius:50%;
}
.contact-left::before{
  bottom:-70px;
  right:-60px;
}
.contact-left::after{
  top:80px;
  left:-80px;
}

.contact-left h4{
  font-weight:600;
}
.contact-left p{
  opacity:.85;
}

/* FORM INPUTS */
.form-label{
  font-size:13px;
  font-weight:500;
  color:#374151;
}
.form-control{
  border:none;
  border-bottom:2px solid #d1d5db;
  border-radius:0;
  padding-left:0;
}
.form-control:focus{
  box-shadow:none;
  border-color:#0f766e;
}
textarea{
  resize:none;
}

/* BUTTON */
.send-btn{
  background:#063d3a;
  color:#fff;
  padding:14px 40px;
  border-radius:10px;
  border:none;
}
.send-btn:hover{
  background:#0f766e;
}

/* ARROW */
.send-arrow{
  margin-top:18px;
  width:80px;
}

/* CURVED DOTTED LINE */
.form-right{
  position:relative;
}
.form-right::after{
  content:"";
  position:absolute;
  bottom:30px;
  right:80px;
  width:180px;
  height:80px;
  border:2px dashed #e5e7eb;
  border-color:#e5e7eb transparent transparent transparent;
  border-radius:100% 100% 0 0;
}

.contact-details svg{
  color:#ffffff;
  flex-shrink:0;
}

.contact-link{
  color:#ffffff;
  text-decoration:none!important;
  font-weight:500;
}

.contact-link:hover{
  text-decoration:underline;
  opacity:.9;
}



.social-links a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s ease;
}

.social-links a:hover{
  background:#f4b400;
  color:#063d3a;
}


.contact-left{
  display:flex;
  flex-direction:column;
}



/*whatsapp icon*/

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: all 0.25s ease;
}

/* Icon image */
.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}


.social {
  position: fixed;
  top: 30%;
  left: 20px;
  width:10px;
  z-index: 9999;
}

.social ul {
  list-style-type: none;
  padding: 0;
  transform: translatex(-270px);
}

.social ul li {
  display: block;
  margin: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 300px;
  text-align: right;
  padding: 10px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
}

.social ul li:hover {
  transform: translatex(110px);
}

.social ul li.twitter:hover {
  background-color: #55acee;
}

.social ul li.facebook:hover {
  background-color: #3b5999;
}

.social ul li.google-plus:hover {
  background-color: #dd4b39;
}

.social ul li.instagram:hover {
  background-color: #e4405f;
}

.social ul li a {
  color: white;
  text-decoration: none;
}

.social ul li i {
  text-align: center;
  margin-left: 14px;
  color: black;
  background-color: white;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  transform: rotate(0deg);
}

.social ul li:hover i {
  transform: rotate(360deg);
  transition: all 1s;
}



.events-tabs-section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* TABS */
.events-tabs {
  display: flex;
  position: relative;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #555;
  cursor: pointer;
}

.tab-btn.active {
  color: #198754;
}

.tab-indicator {
  position: absolute;
  bottom: -1px;
  height: 3px;
  background: #198754;
  transition: all .35s ease;
}

/* PANELS */
.tab-panel {
  display: none;
  animation: fadeUp .4s ease;
}

.tab-panel.active {
  display: block;
}

/* DETAIL TEXT */
.event-detail-content {
  max-width: 900px;
  margin-bottom: 40px;
}

.event-detail-content h3 {
  color: #0f3d2e;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.event-detail-location {
  font-size: 0.9rem;
  color: #198754;
  margin-bottom: 18px;
  font-weight: 500;
}

.event-detail-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #3f3f3f;
  margin-bottom: 14px;
}

/* IMAGE GALLERY */
.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.event-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.event-gallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* MOBILE */
@media (max-width: 768px) {
  .event-gallery img {
    height: 180px;
  }
}


/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .events-tabs {
    overflow-x: auto;
  }
}
