/* ============================= */
/* GLOBAL RESET & VARIABLES      */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0A1F44;
  --gray: #6C757D;
  --orange: #FF7A00;
  --white: #FFFFFF;
  --green: #3BA55C;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--white);
  color: #333;
  line-height: 1.6;
}

/* ============================= */
/* HEADER / NAVBAR               */
/* ============================= */
header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--orange);
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background: var(--navy);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  top: 100%;
  left: 0;
  min-width: 220px;
  z-index: 999;
}
.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1rem;
  color: var(--white);
}
.dropdown-menu li a:hover {
  background: var(--orange);
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--white);
}
/* HERO BANNER */
.hero-banner {
  position: relative;
  height: 80vh;
  background: url('assets/img/about-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.7); /* dark overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--orange);
  animation: fadeDown 1s ease forwards;
}

.hero-content .tagline {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  animation: fadeUp 1.2s ease forwards;
}

/* Keyframes */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner { height: 65vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content .tagline { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero-banner { height: 55vh; }
  .hero-content h1 { font-size: 1.7rem; }
}

/* COMPANY OVERVIEW */
.company-overview {
  padding: 6rem 2rem;
  background: #f9f9f9;
}

.overview-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.overview-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.overview-image img:hover {
  transform: scale(1.05);
}

.overview-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.overview-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--gray);
}

.overview-content .btn {
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.overview-content .btn:hover {
  background: #e56b00;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .overview-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .overview-content {
    margin-top: 2rem;
  }
}
/* MISSION, VISION & VALUES */
.mission-vision-values {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
}

.mission-vision-values h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: var(--navy);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mvv-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
}

.mvv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--orange);
}

.mvv-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

.mvv-card ul {
  list-style: none;
  padding: 0;
}

.mvv-card ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--gray);
}

/* Hover */
.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Scroll animation */
.mission-vision-values.visible .mvv-card {
  animation: fadeUp 0.8s ease forwards;
}

.mission-vision-values.visible .mvv-card:nth-child(1) { animation-delay: 0.2s; }
.mission-vision-values.visible .mvv-card:nth-child(2) { animation-delay: 0.4s; }
.mission-vision-values.visible .mvv-card:nth-child(3) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
  .mission-vision-values h2 {
    font-size: 2rem;
  }
}

/* STATS & ACHIEVEMENTS */
.stats {
  background: linear-gradient(135deg, #0A1F44, #091832);
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
}

.stats h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  color: var(--orange);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card .counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-block;
}

.stat-card .plus {
  font-size: 2rem;
  color: var(--orange);
  font-weight: 600;
  margin-left: 3px;
}

.stat-card p {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

/* Responsive */
@media (max-width: 768px) {
  .stats h2 {
    font-size: 2rem;
  }
  .stat-card .counter {
    font-size: 2rem;
  }
}


/* TEAM / LEADERSHIP */
.team {
  padding: 6rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

.team h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.3rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.team-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.team-card .role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.team-card .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}


.team-card2 {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.team-card2 img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.team-card2 h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.team-card2 .role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.team-card2 .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}






/* Responsive */
@media (max-width: 768px) {
  .team h2 { font-size: 2rem; }
  .team-card img { height: 220px; }
}

/* ============================= */
/* PREMIUM CSR SECTION           */
/* ============================= */
.csr {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0A1F44, #091832);
  color: var(--white);
  overflow: hidden;
}

.csr-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/img/csr-bg.jpg') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.csr-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.csr-left h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: var(--orange);
}

.csr-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.85);
}

.csr-points {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.csr-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--orange);
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.csr-point:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.12);
}

.csr-point .icon {
  font-size: 1.8rem;
  color: var(--orange);
  flex-shrink: 0;
}

.csr-point h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.csr-point p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.csr-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.csr-right img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .csr-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .csr-left {
    order: 2;
  }
  .csr-right {
    order: 1;
  }
  .csr-point {
    text-align: left;
  }
}

/* ============================= */
/* CALL TO ACTION BANNER          */
/* ============================= */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #0A1F44, #091832);
  background-image: url('assets/img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.8);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--orange);
}

.cta-content .btn-primary {
  background: var(--orange);
  color: var(--navy);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-content .btn-primary:hover {
  background: #e56b00;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.8rem;
    padding: 0 1rem;
  }
  .cta-content .btn-primary {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }
}


/* ============================= */
/* FOOTER                        */
/* ============================= */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-log a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}
.footer-log img {
  height: 50px;
  width: auto;
}
.footer-log span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
}

.social {
  margin-top: 0.5rem;
}

.social a {
  color: var(--white);
  text-decoration: none;
  margin: 0 0.3rem;
  transition: color 0.3s;
}

.social a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================= */
/* RESPONSIVENESS                */
/* ============================= */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
  .about-hero h1 { font-size: 2.5rem; }
  .about-hero p { font-size: 1.05rem; }
}

/* Tablets */
@media (max-width: 992px) {
  nav ul { gap: 1.5rem; }
  .company-story, .mission-vision, .team { padding: 4rem 1.5rem; }
}

/* Mobile Menu + Layouts */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--navy);
    width: 100%;
    padding: 1.2rem;
    display: none;
  }
  nav ul.active { display: flex; }
  .menu-toggle { display: block; }

  .about-hero h1 { font-size: 2rem; }
  .about-hero p { font-size: 1rem; }
  .mission-vision, .team-grid { grid-template-columns: 1fr; }
}

/* Small Phones */
@media (max-width: 576px) {
  .about-hero h1 { font-size: 1.7rem; }
  .about-hero p { font-size: 0.95rem; }
  .team-card img { height: 200px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}
