/* ----- CSS reset & variables (logo-inspired: deep navy, gold) ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0b1a33;
  --primary-light: #1c3a5e;
  --gold: #c9a84c;
  --gold-light: #e8d28a;
  --white: #ffffff;
  --offwhite: #f8f6f0;
  --gray: #eae7dd;
  --text-dark: #1e1e2a;
  --shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--offwhite);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
  padding-top: 80px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----- animations (slide + fade) ----- */
.reveal, .reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up { transform: translateY(60px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ----- buttons ----- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-solid {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

.btn-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ----- header (FIXED - using position: fixed) ----- */
header {
  background: var(--primary);
  color: white;
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  width: 100%;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Add this to ensure your logo displays properly */
.logo-area img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  display: block;
  object-fit: contain; /* Ensures the logo maintains aspect ratio */
}

.logo-area h1 {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin: 0;
}

.logo-area span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  color: var(--gold-light);
  letter-spacing: 1px;
  font-weight: 400;
}

/* Logo Link */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  text-decoration: none;
}

.logo-link h1 {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin: 0;
  transition: color 0.3s ease;
}

.logo-link:hover h1 {
  color: var(--gold-light);
}

.logo-link span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  color: var(--gold-light);
  letter-spacing: 1px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.logo-link:hover span {
  color: var(--white);
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding: 4px 0;
  position: relative;
}

nav a:hover {
  color: var(--gold);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 99999;
  background: transparent;
  border: none;
  outline: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}



/* ----- sections ----- */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #555;
  font-weight: 400;
}

/* ----- hero ----- */
.hero {
  background: linear-gradient(135deg, rgba(11, 26, 51, 0.45) 0%, rgba(28, 58, 94, 0.55) 100%), 
              url('../images/graduation.jpg');
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: -80px;
  padding-top: 80px;
  overflow: hidden;
}

/* Dark overlay gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(11, 26, 51, 0.2) 0%, 
    rgba(11, 26, 51, 0.1) 40%, 
    rgba(11, 26, 51, 0.4) 70%,
    rgba(11, 26, 51, 0.7) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Decorative gold circles */
.hero .deco-circle-1,
.hero .deco-circle-2,
.hero .deco-circle-3,
.hero .deco-circle-4 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.hero .deco-circle-1 {
  top: -30%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  animation: floatCircle 20s ease-in-out infinite;
}

.hero .deco-circle-2 {
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  animation: floatCircle 25s ease-in-out infinite reverse;
}

.hero .deco-circle-3 {
  top: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  animation: floatCircle 18s ease-in-out infinite 3s;
}

.hero .deco-circle-4 {
  bottom: 10%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  animation: floatCircle 22s ease-in-out infinite 5s;
}

@keyframes floatCircle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 40px 0;
}

/* Hero Title */
.hero-title {
  font-size: 4.2rem;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  opacity: 0.3;
  border-radius: 2px;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  max-width: 600px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-hero {
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ----- responsive hero ----- */
@media (max-width: 992px) {
  .hero {
    min-height: 90vh;
    background-attachment: scroll;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero .deco-circle-1 {
    width: 400px;
    height: 400px;
  }
  
  .hero .deco-circle-2 {
    width: 350px;
    height: 350px;
  }
  
  .hero-stats {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    text-align: center;
    margin-top: -70px;
    padding-top: 70px;
    background-position: center 50%;
  }
  
  .hero-content {
    padding: 20px 0;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-title em::after {
    height: 3px;
  }
  
  .hero-subtitle {
    font-size: 1.05rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 36px;
  }
  
  .btn-hero {
    padding: 12px 32px;
    font-size: 0.9rem;
  }
  
  .hero .deco-circle-1,
  .hero .deco-circle-2,
  .hero .deco-circle-3,
  .hero .deco-circle-4 {
    display: none;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 20px;
    padding-top: 24px;
    flex-wrap: wrap;
  }
  
  .hero-stat-number {
    font-size: 1.6rem;
  }
  
  .hero-stat-divider {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
    margin-top: -60px;
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .btn-hero {
    padding: 10px 24px;
    font-size: 0.85rem;
  }
  
  .hero-stats {
    gap: 16px;
  }
  
  .hero-stat-number {
    font-size: 1.4rem;
  }
  
  .hero-stat-label {
    font-size: 0.75rem;
  }
  
  .hero-stat-divider {
    height: 25px;
  }
}

/* ----- about ----- */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* About Header */
.about-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.about-title {
  font-size: 2.8rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-title em {
  color: var(--gold);
  font-style: italic;
}

.about-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 12px auto 0;
  font-family: 'Inter', sans-serif;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image wrapper with modern styling */
.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  background: var(--offwhite);
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* About text */
.about-text {
  padding: 20px 0;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 16px;
  color: #555;
  line-height: 1.8;
}

/* Stats */
.stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  margin-bottom: 32px;
  padding-top: 32px;
  border-top: 2px solid rgba(201, 168, 76, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

/* ----- responsive about ----- */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image img {
    height: 350px;
  }
  
  .about-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .about-grid {
    gap: 30px;
  }
  
  .about-image img {
    height: 280px;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-title::after {
    width: 40px;
  }
  
  .about-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .about-header {
    margin-bottom: 36px;
  }
  
  .about-text {
    padding: 0;
  }
  
  .stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-item {
    flex: 1 1 100px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-image img {
    height: 220px;
  }
  
  .about-title {
    font-size: 1.6rem;
  }
  
  .about-lead {
    font-size: 1rem;
  }
  
  .stats {
    gap: 16px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
}

/* ----- mission vision ----- */
.mission-vision {
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.mission-vision::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mission-vision::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Header */
.mv-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.mv-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.mv-title {
  font-size: 2.8rem;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.mv-title em {
  color: var(--gold);
  font-style: italic;
}

.mv-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.mv-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 16px auto 0;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* Grid */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Cards */
.mission-card, .vision-card {
  padding: 48px 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Card decorative line */
.card-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  border-radius: 0 2px 2px 0;
  opacity: 0.6;
}

.mission-card .card-decoration {
  background: linear-gradient(to bottom, var(--gold), #f0d68a);
}

.vision-card .card-decoration {
  background: linear-gradient(to bottom, var(--gold-light), var(--gold));
}

/* Card icon */
.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
  background: rgba(201, 168, 76, 0.25);
  transform: scale(1.05);
  border-color: var(--gold);
}

.card-icon i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.mission-card:hover .card-icon i,
.vision-card:hover .card-icon i {
  transform: scale(1.1);
}

/* Card headings */
.mission-card h3, .vision-card h3 {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Card text */
.mission-card p, .vision-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* ----- responsive mission vision ----- */
@media (max-width: 992px) {
  .mv-grid {
    gap: 30px;
  }
  
  .mission-card, .vision-card {
    padding: 36px 30px;
  }
  
  .mv-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .mission-card, .vision-card {
    padding: 32px 24px;
  }
  
  .mv-title {
    font-size: 2rem;
  }
  
  .mv-title::after {
    width: 40px;
  }
  
  .mv-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .mv-header {
    margin-bottom: 36px;
  }
  
  .mission-card p, .vision-card p {
    font-size: 0.95rem;
  }
  
  .card-icon {
    width: 54px;
    height: 54px;
  }
  
  .card-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .mission-card, .vision-card {
    padding: 24px 20px;
  }
  
  .mv-title {
    font-size: 1.6rem;
  }
  
  .mission-card h3, .vision-card h3 {
    font-size: 1.3rem;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
  }
  
  .card-icon i {
    font-size: 1.3rem;
  }
}



/* ----- why us ----- */
.why-us {
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.why-us::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(11, 26, 51, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Header */
.why-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.why-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.why-title {
  font-size: 2.8rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.why-title em {
  color: var(--gold);
  font-style: italic;
}

.why-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.why-subtitle {
  font-size: 1.3rem;
  color: var(--primary-light);
  font-weight: 600;
  margin-top: 16px;
  font-family: 'Playfair Display', serif;
}

.why-description {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 8px auto 0;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* Cards */
.why-card {
  background: white;
  padding: 40px 32px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.08);
}

/* Card decoration line */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover::before {
  opacity: 1;
}

/* Card number badge */
.why-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 76, 0.05);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.why-card:hover::after {
  transform: scale(1.2);
  background: rgba(201, 168, 76, 0.08);
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(11, 26, 51, 0.12);
  border-color: rgba(201, 168, 76, 0.2);
}

/* Card icon */
.why-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.25), rgba(201, 168, 76, 0.1));
  transform: scale(1.05) rotate(-5deg);
  border-color: var(--gold);
}

.why-card-icon i {
  font-size: 2rem;
  color: var(--gold);
  transition: all 0.4s ease;
}

.why-card:hover .why-card-icon i {
  transform: scale(1.1);
}

/* Card content */
.why-card h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.why-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
}

/* ----- responsive why us ----- */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .why-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .why-card {
    padding: 32px 24px 24px;
  }
  
  .why-title {
    font-size: 2rem;
  }
  
  .why-title::after {
    width: 40px;
  }
  
  .why-subtitle {
    font-size: 1.1rem;
  }
  
  .why-description {
    font-size: 0.95rem;
    padding: 0 20px;
  }
  
  .why-header {
    margin-bottom: 36px;
  }
  
  .why-card-icon {
    width: 60px;
    height: 60px;
  }
  
  .why-card-icon i {
    font-size: 1.6rem;
  }
  
  .why-card h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .why-card {
    padding: 24px 20px 20px;
  }
  
  .why-title {
    font-size: 1.6rem;
  }
  
  .why-subtitle {
    font-size: 1rem;
  }
  
  .why-description {
    font-size: 0.9rem;
  }
  
  .why-card-icon {
    width: 54px;
    height: 54px;
  }
  
  .why-card-icon i {
    font-size: 1.4rem;
  }
  
  .why-card h4 {
    font-size: 1.1rem;
  }
  
  .why-card p {
    font-size: 0.9rem;
  }
}

/* ----- founder ----- */
.founder {
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Founder Header */
.founder-header {
  text-align: center;
  margin-bottom: 48px;
}

.founder-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.founder-title {
  font-size: 2.8rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.founder-title em {
  color: var(--gold);
  font-style: italic;
}

.founder-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.founder-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 12px auto 0;
  font-family: 'Inter', sans-serif;
}

/* Founder Grid */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Founder Image */
.founder-image-wrapper {
  position: relative;
}

.founder-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 26, 51, 0.15);
}

.founder-image img {
  width: 100%;
  height: 550px;
  object-fit: contain;
  background: var(--offwhite);
  display: block;
  transition: transform 0.6s ease;
}

.founder-image:hover img {
  transform: scale(1.02);
}

.founder-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(11, 26, 51, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.founder-image:hover .founder-image-overlay {
  opacity: 1;
}

.founder-social-links {
  display: flex;
  gap: 12px;
}

.founder-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.founder-social-links a:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Founder Text */
.founder-text {
  padding: 10px 0;
}

.founder-name-title {
  margin-bottom: 16px;
}

.founder-name-title h3 {
  font-size: 2.2rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.founder-role {
  display: block;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.founder-org {
  display: block;
  font-size: 0.9rem;
  color: #666;
  font-family: 'Inter', sans-serif;
  margin-top: 2px;
}

/* Credentials */
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.15);
}

.credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 26, 51, 0.06);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.credential i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Bio */
.founder-bio p {
  margin-bottom: 14px;
  color: #555;
  line-height: 1.8;
  font-size: 0.98rem;
  font-family: 'Inter', sans-serif;
}

/* Quote */
.founder-quote {
  background: rgba(201, 168, 76, 0.06);
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  margin-top: 20px;
  position: relative;
}

.founder-quote i {
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.4;
  margin-bottom: 8px;
  display: block;
}

.founder-quote p {
  margin: 0;
  color: var(--primary);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

/* ----- responsive founder ----- */
@media (max-width: 992px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .founder-image img {
    height: 450px;
  }
  
  .founder-title {
    font-size: 2.4rem;
  }
  
  .founder-name-title h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .founder-grid {
    gap: 30px;
  }
  
  .founder-image img {
    height: 350px;
  }
  
  .founder-title {
    font-size: 2rem;
  }
  
  .founder-title::after {
    width: 40px;
  }
  
  .founder-name-title h3 {
    font-size: 1.6rem;
  }
  
  .founder-credentials {
    gap: 8px;
  }
  
  .credential {
    font-size: 0.8rem;
    padding: 4px 12px;
  }
  
  .founder-quote p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .founder-image img {
    height: 280px;
  }
  
  .founder-title {
    font-size: 1.6rem;
  }
  
  .founder-subtitle {
    font-size: 0.95rem;
  }
  
  .founder-name-title h3 {
    font-size: 1.4rem;
  }
  
  .founder-role {
    font-size: 0.9rem;
  }
  
  .founder-bio p {
    font-size: 0.9rem;
  }
}

/* ----- members ----- */
.members {
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}

.members::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Members Header */
.members-header {
  text-align: center;
  margin-bottom: 48px;
}

.members-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.members-title {
  font-size: 2.8rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.members-title em {
  color: var(--gold);
  font-style: italic;
}

.members-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.members-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 12px auto 0;
  font-family: 'Inter', sans-serif;
}

/* Members Grid */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Member Card */
.member-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(201, 168, 76, 0.08);
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.member-card:hover::before {
  opacity: 1;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(11, 26, 51, 0.12);
  border-color: rgba(201, 168, 76, 0.2);
}

/* Member Image */
.member-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
}

.member-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  transition: all 0.4s ease;
}

.member-card:hover .member-image img {
  border-color: var(--gold-light);
  transform: scale(1.02);
}

/* Member Info */
.member-card h4 {
  font-size: 1.15rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.member-role {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.member-bio {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

/* Member Tags */
.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.member-tags span {
  background: rgba(11, 26, 51, 0.06);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.3s ease;
}

.member-card:hover .member-tags span {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.2);
}

/* ----- responsive members ----- */
@media (max-width: 992px) {
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .members-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .members-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .member-card {
    padding: 28px 20px 24px;
  }
  
  .members-title {
    font-size: 2rem;
  }
  
  .members-title::after {
    width: 40px;
  }
  
  .members-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .members-header {
    margin-bottom: 36px;
  }
  
  .member-image {
    width: 100px;
    height: 100px;
  }
  
  .member-card h4 {
    font-size: 1.05rem;
  }
  
  .member-bio {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .member-card {
    padding: 24px 16px 20px;
  }
  
  .members-title {
    font-size: 1.6rem;
  }
  
  .member-image {
    width: 90px;
    height: 90px;
  }
  
  .member-image img {
    border-width: 3px;
  }
  
  .member-role {
    font-size: 0.8rem;
  }
  
  .member-bio {
    font-size: 0.82rem;
  }
  
  .member-tags span {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
}



/* ----- numbers section ----- */
.numbers {
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Decorative background elements */
.numbers::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.numbers::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Numbers Header */
.numbers-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.numbers-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.numbers-title {
  font-size: 2.8rem;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.numbers-title em {
  color: var(--gold);
  font-style: italic;
}

.numbers-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.numbers-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 12px auto 0;
  font-family: 'Inter', sans-serif;
}

/* Numbers Grid */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Number Card */
.number-card {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 24px 32px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.number-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.number-card:hover::before {
  opacity: 1;
}

.number-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Number Icon */
.number-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.number-card:hover .number-icon {
  background: rgba(201, 168, 76, 0.25);
  transform: scale(1.05) rotate(-5deg);
  border-color: var(--gold);
}

.number-icon i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.4s ease;
}

.number-card:hover .number-icon i {
  transform: scale(1.1);
}

/* Number Content */
.number-content {
  display: flex;
  flex-direction: column;
}

.number-value {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin-bottom: 4px;
}

.number-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* ----- responsive numbers ----- */
@media (max-width: 992px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .numbers-title {
    font-size: 2.4rem;
  }
  
  .number-value {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .number-card {
    padding: 32px 16px 24px;
  }
  
  .numbers-title {
    font-size: 2rem;
  }
  
  .numbers-title::after {
    width: 40px;
  }
  
  .numbers-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .numbers-header {
    margin-bottom: 36px;
  }
  
  .number-value {
    font-size: 2.2rem;
  }
  
  .number-icon {
    width: 54px;
    height: 54px;
  }
  
  .number-icon i {
    font-size: 1.4rem;
  }
  
  .number-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .number-card {
    padding: 24px 12px 18px;
  }
  
  .numbers-title {
    font-size: 1.6rem;
  }
  
  .number-value {
    font-size: 1.8rem;
  }
  
  .number-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }
  
  .number-icon i {
    font-size: 1.2rem;
  }
  
  .number-label {
    font-size: 0.75rem;
  }
}





/* ----- programs ----- */
.programs {
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.programs::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.programs::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(11, 26, 51, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Programs Header */
.programs-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.programs-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.programs-title {
  font-size: 2.8rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.programs-title em {
  color: var(--gold);
  font-style: italic;
}

.programs-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.programs-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 650px;
  margin: 12px auto 0;
  font-family: 'Inter', sans-serif;
}

/* Programs Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Program Card */
.program-card {
  background: white;
  border-radius: 16px;
  padding: 40px 32px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(201, 168, 76, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.program-card:hover::before {
  opacity: 1;
}

.program-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 76, 0.04);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.program-card:hover::after {
  transform: scale(1.3);
  background: rgba(201, 168, 76, 0.06);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(11, 26, 51, 0.12);
  border-color: rgba(201, 168, 76, 0.2);
}

/* Program Icon */
.program-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.program-card:hover .program-card-icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.25), rgba(201, 168, 76, 0.1));
  transform: scale(1.05) rotate(-5deg);
  border-color: var(--gold);
}

.program-card-icon i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.4s ease;
}

.program-card:hover .program-card-icon i {
  transform: scale(1.1);
}

/* Program Content */
.program-card h4 {
  font-size: 1.4rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.program-meta {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  display: block;
  margin-bottom: 12px;
}

.program-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  flex-grow: 1;
}

/* Program Features */
.program-features {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.program-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #555;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.program-features li:last-child {
  border-bottom: none;
}

.program-features i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Program Button */
.program-btn {
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  font-size: 0.9rem;
  margin-top: auto;
}



/* ----- responsive programs ----- */
@media (max-width: 992px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .programs-title {
    font-size: 2.4rem;
  }
  
  .program-card {
    padding: 32px 24px 24px;
  }
}

@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto 30px;
  }
  
  .program-card {
    padding: 28px 20px 20px;
  }
  
  .programs-title {
    font-size: 2rem;
  }
  
  .programs-title::after {
    width: 40px;
  }
  
  .programs-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .programs-header {
    margin-bottom: 36px;
  }
  
  .program-card-icon {
    width: 54px;
    height: 54px;
  }
  
  .program-card-icon i {
    font-size: 1.5rem;
  }
  
  .program-card h4 {
    font-size: 1.2rem;
  }
  
  .btn-large {
    padding: 14px 36px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .program-card {
    padding: 24px 16px 18px;
  }
  
  .programs-title {
    font-size: 1.6rem;
  }
  
  .program-card-icon {
    width: 48px;
    height: 48px;
  }
  
  .program-card-icon i {
    font-size: 1.3rem;
  }
  
  .program-card h4 {
    font-size: 1.1rem;
  }
  
  .program-meta {
    font-size: 0.8rem;
  }
  
  .program-description {
    font-size: 0.9rem;
  }
  
  .program-features li {
    font-size: 0.85rem;
    padding: 5px 0;
  }
  
  .program-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
  
  .btn-large {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

/* ----- blog ----- */
.blog {
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.blog::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Blog Header */
.blog-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.blog-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 2.8rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-title em {
  color: var(--gold);
  font-style: italic;
}

.blog-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.blog-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 12px auto 0;
  font-family: 'Inter', sans-serif;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

/* Blog Card */
.blog-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(11, 26, 51, 0.12);
  border-color: rgba(201, 168, 76, 0.2);
}

/* Blog Image */
.blog-image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: var(--gray);
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Blog Content */
.blog-content {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
}

/* Blog Meta Top */
.blog-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #888;
  font-family: 'Inter', sans-serif;
}

.blog-meta-top span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta-top i {
  color: var(--gold);
  font-size: 0.75rem;
}

.blog-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
  color: var(--gold);
}

/* Blog Excerpt */
.blog-excerpt {
  flex-grow: 1;
  margin-bottom: 16px;
}

.blog-excerpt p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
}

.blog-excerpt p:last-child {
  margin-bottom: 0;
}

/* Blog Footer */
.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  flex-wrap: wrap;
  gap: 12px;
}

.read-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.blog-read-time {
  font-size: 0.8rem;
  color: #999;
  font-family: 'Inter', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read-time i {
  color: var(--gold);
}

/* Blog CTA */
.blog-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-large {
  padding: 16px 48px;
  font-size: 1rem;
}

/* ----- responsive blog ----- */
@media (max-width: 992px) {
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    min-height: 220px;
  }
  
  .blog-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .blog-card {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .blog-image {
    min-height: 200px;
  }
  
  .blog-content {
    padding: 24px 20px 20px;
  }
  
  .blog-title {
    font-size: 2rem;
  }
  
  .blog-title::after {
    width: 40px;
  }
  
  .blog-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .blog-header {
    margin-bottom: 36px;
  }
  
  .blog-meta-top {
    gap: 10px;
    font-size: 0.75rem;
  }
  
  .blog-content h3 {
    font-size: 1.15rem;
  }
  
  .blog-excerpt p {
    font-size: 0.9rem;
  }
  
  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .blog-image {
    min-height: 170px;
  }
  
  .blog-content {
    padding: 20px 16px 16px;
  }
  
  .blog-title {
    font-size: 1.6rem;
  }
  
  .blog-meta-top {
    flex-direction: column;
    gap: 4px;
    font-size: 0.75rem;
  }
  
  .blog-content h3 {
    font-size: 1.05rem;
  }
  
  .blog-excerpt p {
    font-size: 0.85rem;
  }
  
  .read-more {
    font-size: 0.85rem;
  }
  
  .btn-large {
    padding: 12px 32px;
    font-size: 0.9rem;
  }
}



/* ----- testimonials ----- */
.testimonials {
  background: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Testimonials Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.testimonials-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.testimonials-title {
  font-size: 2.8rem;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.testimonials-title em {
  color: var(--gold);
  font-style: italic;
}

.testimonials-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 12px auto 0;
  font-family: 'Inter', sans-serif;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Rating */
.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Quote */
.testimonial-quote {
  position: relative;
  margin-bottom: 20px;
}

.testimonial-quote i {
  color: var(--gold);
  font-size: 1.4rem;
  opacity: 0.3;
  display: block;
  margin-bottom: 8px;
}

.testimonial-quote p {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  margin: 0;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonial-author-info h4 {
  font-size: 1rem;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0 0 2px 0;
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
}

/* ----- responsive testimonials ----- */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .testimonials-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    padding: 28px 20px 20px;
  }
  
  .testimonials-title {
    font-size: 2rem;
  }
  
  .testimonials-title::after {
    width: 40px;
  }
  
  .testimonials-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .testimonials-header {
    margin-bottom: 36px;
  }
  
  .testimonial-quote p {
    font-size: 0.95rem;
  }
  
  .testimonial-author-info h4 {
    font-size: 0.95rem;
  }
  
  .testimonial-author-info span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 24px 16px 18px;
  }
  
  .testimonials-title {
    font-size: 1.6rem;
  }
  
  .testimonial-rating i {
    font-size: 0.8rem;
  }
  
  .testimonial-quote p {
    font-size: 0.9rem;
  }
  
  .testimonial-author-info h4 {
    font-size: 0.9rem;
  }
  
  .testimonial-author-info span {
    font-size: 0.75rem;
  }
}

/* ----- contact ----- */
.contact {
  background: var(--primary);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background - simplified */
.contact::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Contact Header */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.contact-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.contact-title {
  font-size: 2.8rem;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-title em {
  color: var(--gold);
  font-style: italic;
}

.contact-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 12px auto 0;
  font-family: 'Inter', sans-serif;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* Contact Info Cards */
.contact-info-card,
.contact-form {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.contact-info-card h3,
.contact-form-header h3 {
  font-size: 1.4rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card > p,
.contact-form-header p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

/* Contact Items */
.contact-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--gold);
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.contact-details strong {
  font-size: 1rem;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.contact-details span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
}

/* Social Links */
.contact-social {
  margin-top: 8px;
}

.contact-social h4 {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

/* Form */
.contact-form-header {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
}

.form-group .required {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.06);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  color: var(--text-dark);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 14px 32px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ----- responsive contact ----- */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-title::after {
    width: 40px;
  }
  
  .contact-subtitle {
    font-size: 1rem;
  }
  
  .contact-header {
    margin-bottom: 36px;
  }
  
  .contact-info-card,
  .contact-form {
    padding: 24px;
  }
  
  .contact-item {
    padding: 12px 0;
  }
  
  .contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
  
  .contact-icon i {
    font-size: 1rem;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 50px 0;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .contact-info-card,
  .contact-form {
    padding: 18px 16px;
  }
  
  .contact-item {
    flex-direction: column;
    gap: 4px;
  }
  
  .contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
  
  .contact-icon i {
    font-size: 0.9rem;
  }
  
  .contact-details strong {
    font-size: 0.9rem;
  }
  
  .contact-details span {
    font-size: 0.85rem;
  }
  
  .social-links a {
    width: 36px;
    height: 36px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  
  .btn-submit {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
}

/* ----- Alert Messages ----- */
.alert {
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.alert-success {
  background: rgba(201, 168, 76, 0.12);
  color: #0b1a33;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-left: 4px solid var(--gold);
}

.alert-error {
  background: rgba(220, 53, 69, 0.1);
  color: #842029;
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-left: 4px solid #dc3545;
}

@media (max-width: 768px) {
  .alert {
    padding: 14px 18px;
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
}




/* ----- footer ----- */
footer {
  background: #06101f;
  color: rgba(255,255,255,0.8);
  padding-top: 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer logo area - improved layout */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* For footer logo - larger size */
.footer-logo img {
  height: 80px;
  width: auto;
  border-radius: 8px;
  display: block;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.footer-logo p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.footer-links h4, .footer-social h4 {
  color: white;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-social .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social .social-icons a:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-social p {
  margin: 6px 0;
  font-size: 0.9rem;
}

.footer-social p i {
  color: var(--gold);
  margin-right: 8px;
  width: 18px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0;
}

/* ----- responsive footer ----- */
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-logo img {
    height: 100px; /* Slightly larger on mobile for better visibility */
  }
  
  .footer-logo-text {
    align-items: center;
  }
  
  .footer-logo h3 {
    font-size: 1.4rem;
  }
  
  .footer-links a {
    padding: 6px 0;
  }
  
  .footer-social .social-icons {
    justify-content: center;
  }
  
  .footer-social p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    height: 80px;
  }
  
  .footer-logo h3 {
    font-size: 1.2rem;
  }
  
  .footer-bottom {
    font-size: 0.8rem;
    padding: 16px 0;
  }
}



/* ----- WhatsApp Chat Button ----- */
.whatsapp-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  max-width: 60px;
  max-height: 60px;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 50%;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid var(--gold);
  animation: pulse 2s infinite;
  cursor: pointer;
  position: relative;
}

.whatsapp-button:hover {
  transform: scale(1.1) rotate(-5deg);
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.whatsapp-button i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  line-height: 1;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--primary);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  right: 80px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(201, 168, 76, 0.6), 0 0 0 10px rgba(201, 168, 76, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-wrapper {
    bottom: 20px;
    right: 20px;
    max-width: 55px;
    max-height: 55px;
  }
  
  .whatsapp-button {
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
  
  .whatsapp-tooltip {
    right: 65px;
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .whatsapp-button:hover .whatsapp-tooltip {
    right: 70px;
  }
}

@media (max-width: 480px) {
  .whatsapp-wrapper {
    bottom: 15px;
    right: 15px;
    max-width: 50px;
    max-height: 50px;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

/* ----- responsive ----- */
@media (max-width: 992px) {
  .about-grid, .founder-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .mv-grid, .why-grid, .members-grid, .programs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .hamburger {
    display: flex;
  }
  
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--primary);
    padding: 20px 0;
    gap: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  }
  
  nav.open {
    display: flex;
  }
  
  nav a {
    font-size: 1.1rem;
    padding: 8px 0;
  }
  
  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }
  
  .logo-area {
    flex: 1;
  }
  
  .hero {
    min-height: 60vh;
    text-align: center;
    margin-top: -70px;
    padding-top: 70px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .mv-grid, .why-grid, .members-grid, .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .stats {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social .social-icons {
    justify-content: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .program-card {
    padding: 24px;
  }
  
  .about-image img, .founder-image img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }
  
  .hero {
    margin-top: -60px;
    padding-top: 60px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .logo-area h1 {
    font-size: 1rem;
  }
  
  .logo-area img {
    height: 40px;
  }
  
  .program-card {
    padding: 16px;
  }
}





