/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e3a8a;
  --primary-dark: #1a2b6d;
  --gold: #d4af37;
  --light: #ffffff;
  --gray: #64748b;
  --light-gray: #f8fafc;
  --card-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: var(--light-gray);
}

.container {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  background: var(--light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 60px;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 16px;
  padding: 5px 0;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

/* Page Header (Hero) - ✅ Fixed cropping */
.page-header {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 90px 20px 80px;
  margin-bottom: 50px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Main Content */
.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.motto-box {
  background: #f0f9ff;
  border-radius: 12px;
  padding: 24px;
  margin: 30px 0;
  border-left: 4px solid var(--primary);
}

.philosophy-quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary);
  padding: 24px;
  background: var(--light);
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid #e2e8f0;
}

ul {
  padding-left: 24px;
  margin: 16px 0;
}

li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.leader-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #f1f5f9; /* Fallback if image fails */
}

.leader-info h3 {
  margin: 10px 0 6px;
  font-size: 1.25rem;
  color: var(--primary);
}

.leader-info p {
  color: var(--gray);
  margin: 0;
}

.achievements-list {
  padding-left: 24px;
}

.achievements-list li {
  margin-bottom: 14px;
  line-height: 1.6;
}

.achievements-list strong {
  color: var(--primary);
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-col p, .footer-col i {
  margin-bottom: 8px;
  color: #cbd5e1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(37,211,102,0.5);
  z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }
}
/* Proprietor Section */
.proprietor-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.proprietor-image {
  width: 180px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.proprietor-info {
  flex: 1;
  min-width: 300px;
}

.proprietor-info h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.proprietor-info p {
  color: var(--gray);
  line-height: 1.6;
}

/* Achievements Footer */
.achievements-footer {
  margin-top: 16px;
  font-style: italic;
  color: var(--gray);
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 600px) {
  .proprietor-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .proprietor-info {
    min-width: auto;
  }
}