/* =========================================
   GLOBAL RESET & THEME
========================================= */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Segoe UI", system-ui, sans-serif;
}

:root {
  --bg-dark: #050505;
  --bg-card: #111111;
  --yellow: #facc15;
  --orange: #f37021;
  --text-light: #ffffff;
  --text-muted: #cfcfcf;
  --border-soft: rgba(255,255,255,0.08);
}

/* =========================================
   NAVBAR
========================================= */

.custom-navbar {
  background: var(--bg-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}

.navbar-brand img {
  max-height: 42px;
}

.navbar-dark .nav-link {
  color: var(--text-light);
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
  color: var(--yellow);
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 80px;
}
/* About Page Banner */
.hero-about {
  background: url("../images/ot banner.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-title {
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 800;
  color: #e1d419;
}

.hero-text {
  max-width: 800px;
  margin: auto;
  color: var(--text-muted);
  font-size: clamp(14px, 2.5vw, 18px);
}
/* =========================================
   ABOUT INTRO SECTION (LIGHT THEME)
========================================= */

.about-intro-light {
  background: #ffffff;
  padding: 10vh 5vw;
}

.about-intro-container {
  max-width: 90vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}

/* LEFT IMAGE */
.about-intro-image img {
  width: 100%;
  max-width: 40vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* RIGHT CONTENT */
.about-intro-content h2 {
  font-size: 4vh;
  font-weight: 900;
  color: #000000;
  margin-bottom: 2vh;
}

.about-intro-content h3 {
  font-size: 2.4vh;
  font-weight: 700;
  color: #f97316; /* Accent color */
  margin-bottom: 3vh;
}

.about-intro-content p {
  font-size: 2.1vh;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 2vh;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .about-intro-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-intro-image img {
    max-width: 70vw;
    margin-bottom: 5vh;
  }

  .about-intro-content h2 {
    font-size: 3.6vh;
  }
}

@media (max-width: 576px) {
  .about-intro-light {
    padding: 8vh 6vw;
  }

  .about-intro-content p {
    font-size: 2vh;
  }
}
/* ==============================
   ABOUT STATS SECTION (LIGHT)
================================ */

.about-stats {
  background: #ffffff;
  padding: 10vh 5vw;
}

.stats-container {
  max-width: 90vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
}

/* Card */
.stat-card {
  background: #f7f7f7;
  border-radius: 1.5vh;
  padding: 5vh 2vw;
  text-align: center;
  box-shadow: 0 1vh 3vh rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-1vh);
  box-shadow: 0 2vh 4vh rgba(0,0,0,0.15);
}

/* Icon Wrapper */
.stat-icon {
  width: 8vh;
  height: 8vh;
  margin: 0 auto 3vh;
  perspective: 1000px;
}

/* Icon Image */
.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* Flip on hover */
.stat-card:hover .stat-icon img {
  transform: rotateY(360deg);
}

/* Number */
.stat-card h3 {
  font-size: 4vh;
  font-weight: 900;
  color: #000;
  margin-bottom: 1vh;
}

/* Label */
.stat-card p {
  font-size: 1.8vh;
  font-weight: 700;
  letter-spacing: 0.1vw;
  color: #555;
  text-transform: uppercase;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 6vh 6vw;
  }

  .stat-card h3 {
    font-size: 5vh;
  }
}
/* =========================================
   ABOUT INFO SECTIONS (LIGHT THEME)
========================================= */

.about-info-sections {
  background: #f7fbff;
  padding: 10vh 6vw;
}

.about-row {
  max-width: 1200px;
  margin: 0 auto 12vh auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}

.about-row.reverse {
  direction: rtl;
}

.about-row.reverse .about-text {
  direction: ltr;
}

/* Text Side */
.about-text .about-small-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1vh;
}

.about-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2vh;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5vh;
}

/* Image Side */
.about-image img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .about-row,
  .about-row.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-row.reverse {
    direction: ltr;
  }

  .about-image img {
    max-width: 420px;
  }
}
/* =========================================
   MISSION & VISION STYLES
========================================= */

.mission-vision-section {
    padding: 80px 0;
    background: #ffffff;
}

.mission-card {
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-img-wrapper {
    overflow: hidden; /* Clips the image when it zooms */
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
}

/* The Zoom Effect */
.mission-img-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.mission-card:hover .mission-img-wrapper img {
    transform: scale(1.15); /* Zooms in on hover */
}

/* Border Accents from the video */
.border-blue { border-bottom: 8px solid #4a90e2; }
.border-purple { border-bottom: 8px solid #8e44ad; }
.border-yellow { border-bottom: 8px solid #f1c40f; }

/* Content Styling */
.mission-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.mission-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

/* Optional: Slight lift effect on the card */
.mission-card:hover {
    transform: translateY(-5px);
}