@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #d4af37;
  --dark: #000;
  --text: #f4f4f4;
  --muted: #b5b5b5;
}

/* ------------------ GLOBAL ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ------------------ SPLASH ------------------ */
.splash {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 2000;
  transition: opacity 1.2s ease, visibility 1.2s ease;
  overflow: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}
.splash.hide { opacity: 0; visibility: hidden; }

.splash-logo {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #fff8dc, #d4af37, #b78b36);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite linear;
}

.splash-gold {
  position: absolute;
  width: 300vmax;
  height: 300vmax;
  background: radial-gradient(circle, rgba(212,175,55,0.6) 0%, transparent 70%);
  transform: scale(0);
  animation: splashPulse 2.5s ease forwards;
}

.splash-tagline {
  display: block;
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
  font-weight: 400;
}
@keyframes splashPulse {
  0% { transform: scale(0); opacity: 1; }
  80% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2); opacity: 0; }
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }

}


/* ------------------ NAVBAR ------------------ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 18px 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(0,0,0,0.95);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

nav {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

.logo img {
  height: 110px;
  transition: 0.5s ease;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.45));
}

header.scrolled .logo img {
  height: 85px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}

/* ------------------ HERO ------------------ */
.hero {
  height: 100vh;
  position: relative;
    background: url('images/h2.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
  z-index: 1;
}
.hero-content { z-index: 3; animation: fadeUp 2s ease; }
.hero h1 {
  font-size: 4.2rem;
  max-width: 1000px;
  margin: 0 auto 20px;
  font-weight: 600;
  background: linear-gradient(90deg, #ffde59, #d4af37, #fff8dc);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 7s infinite linear;
  letter-spacing: 1px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.hero p {
  max-width: 750px;
  margin: auto;
  font-size: 1.25rem;
  color: var(--muted);
  animation: fadeUp 2s ease 0.5s both;
}
.btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 38px;
  background: linear-gradient(45deg, var(--gold), #b78b36);
  color: #111;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover { box-shadow: 0 0 30px rgba(212,175,55,0.6); transform: translateY(-3px); }

/* Gold Flow Animation */
.gold-wave {
  position: absolute;
  top: 0; left: 0;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.15), transparent 60%);
  animation: waveFlow 20s infinite linear;
  z-index: 2;
}
@keyframes waveFlow {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

/* ------------------ SECTION BASE ------------------ */
section {
  position: relative;
  min-height: 100vh;
  padding: 140px 80px;
  max-width: 1600px;
  margin: auto;
}
h2 {
  font-size: 2.8rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 3px;
  animation: underlineGlow 2s forwards;
}
@keyframes underlineGlow {
  0% { width: 0; opacity: 0; }
  100% { width: 60%; opacity: 1; box-shadow: 0 0 15px var(--gold); }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ------------------ ABOUT ------------------ */
#about {
  background: linear-gradient(180deg, #0a0a0a, #121212);
  text-align: center;
}
.about-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}
.about-grid div {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 50px;
  border-radius: 18px;
  flex: 1 1 360px;
  transition: 0.4s;
}
.about-grid div:hover { transform: translateY(-8px); box-shadow: 0 0 25px rgba(212,175,55,0.3); }

/* ------------------ ISFAD ------------------ */
#isfad {
  background: linear-gradient(180deg, #050505, #0b0b0b);
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
.card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  flex: 1 1 360px;
  transition: 0.3s;
}
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 0 25px rgba(212,175,55,0.4); }
.card h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 10px; }

/* =====================================================
   LEADERSHIP SECTION – Premium Corporate Motion Design
   ===================================================== */

#leadership {
  /* Cinematic parallax background */
  background: url('images/l.jpg') center/cover no-repeat fixed;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  
  /* Enhance sharpness & contrast */
  filter: contrast(1.15) brightness(1.05) saturate(1.2);
  image-rendering: auto; /* ensure smooth rendering */
  
  /* Optional: add subtle overlay for cinematic effect */
  /* Overlay with gradient for readability */
}
#leadership::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* darken for contrast with text */
  pointer-events: none;
}

/* Smooth subtle pan animation */
@keyframes panMotion {
  0% { background-position: center top; }
  50% { background-position: center center; }
  100% { background-position: center bottom; }
}

#leadership {
  animation: panMotion 60s ease-in-out infinite alternate;
  background-attachment: fixed; /* parallax effect */
}






/* Optional moving gold reflection */
#leadership::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(212,175,55,0.08) 30%,
    rgba(212,175,55,0.15) 50%,
    transparent 80%);
  mix-blend-mode: screen;
  animation: goldSweep 25s linear infinite;
  opacity: 0.3;
  z-index: 2;
}

@keyframes goldSweep {
  0%   { transform: translateX(-100%) rotate(0deg); opacity: 0; }
  20%  { opacity: 0.25; }
  50%  { transform: translateX(100%) rotate(0deg); opacity: 0.35; }
  100% { transform: translateX(200%) rotate(0deg); opacity: 0; }
}

/* Content positioning */
#leadership h2,
#leadership p,
.leader-grid {
  position: relative;
  z-index: 3;
}

/* Grid layout */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 45px;
  padding: 80px;
}

/* Leader card base */
.leader-card {
  position: relative;
  background: rgba(15, 15, 15, 0.85);
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform .6s ease, box-shadow .6s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: riseIn 1.2s forwards;
}

/* Sequential fade-in animation */
@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}
.leader-card:nth-child(1){ animation-delay:.1s;}
.leader-card:nth-child(2){ animation-delay:.25s;}
.leader-card:nth-child(3){ animation-delay:.4s;}
.leader-card:nth-child(4){ animation-delay:.55s;}
.leader-card:nth-child(5){ animation-delay:.7s;}
.leader-card:nth-child(6){ animation-delay:.85s;}
.leader-card:nth-child(7){ animation-delay:1s;}
.leader-card:nth-child(8){ animation-delay:1.15s;}
.leader-card:nth-child(9){ animation-delay:1.3s;}

/* Leader images */

.leader-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  transition: transform 1.2s ease, filter 0.6s ease;
  filter: brightness(1.05) contrast(1.15) saturate(1.1);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}


/* Gold frame effect */
.leader-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 2px solid rgba(212,175,55,0.3);
  opacity: 0;
  transform: scale(1.08);
  transition: all .5s ease;
}

/* Hover interactions */
.leader-card:hover::before {
  opacity: 1;
  transform: scale(1);
}
.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(212,175,55,0.35);
}
.leader-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

/* Soft gold spotlight overlay */
.leader-card::after {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  width: 400%;
  height: 400%;
  background: radial-gradient(circle at center,
              rgba(212,175,55,0.12),
              transparent 70%);
  opacity: 0;
  transition: opacity .6s ease, transform 2s ease;
}
.leader-card:hover::after {
  opacity: 1;
  transform: translate(20px, -20px);
}

/* Text styles */
.leader-card h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, text-shadow 0.4s ease;
}

.leader-card h3:hover {
  color: #ffdf70;
  text-shadow: 0 0 8px rgba(212,175,55,0.5), 0 0 16px rgba(212,175,55,0.3);
}

/* Responsive tweaks */
@media(max-width:768px){
  .leader-grid { padding: 40px 20px; }
}
/* ------------------------------------
   CONTACT SECTION — EXECUTIVE GOLD EDITION
------------------------------------ */
#contact {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at center, rgba(255,215,0,0.05), rgba(0,0,0,1) 80%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding: 160px 20px;
  font-family: "Poppins", sans-serif;
}

/* GOLD MOVING SPOTLIGHT */
#contact::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at 50% 30%, rgba(255,215,0,0.08), transparent 65%);
  animation: moveBeam 16s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}
@keyframes moveBeam {
  0% { transform: translate(-8%, -8%) scale(1); }
  100% { transform: translate(8%, 8%) scale(1.1); }
}

/* GOLD PARTICLE DRIFT */
#contact .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticles linear infinite;
}
@keyframes floatParticles {
  0% { transform: translateY(0); opacity: 0.2; }
  50% { opacity: 0.5; }
  100% { transform: translateY(-800px); opacity: 0; }
}

/* SECTION TITLE */
#contact h2 {
  position: relative;
  z-index: 3;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#contact h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 100px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  background-size: 200%;
  animation: underlineFlow 7s linear infinite;
}
@keyframes underlineFlow {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* GLASS PANEL FORM */
.contact-panel {
  position: relative;
  z-index: 3;
  background: rgba(15,15,15,0.78);
  backdrop-filter: blur(12px);
  padding: 60px 70px;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(212,175,55,0.08);
  border: 1px solid rgba(255,255,255,0.05);
  width: 100%;
  max-width: 800px;
  margin-bottom: 50px;
}
.contact-panel form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-panel input,
.contact-panel textarea {
  background: rgba(18,18,18,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}
.contact-panel input:focus,
.contact-panel textarea:focus {
  outline: none;
  border: 1px solid var(--gold);
  box-shadow: 0 0 10px rgba(212,175,55,0.4);
}

/* SEND BUTTON */
.contact-panel button {
  background: linear-gradient(45deg, var(--gold), #b78b36);
  color: #111;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: 10px;
  padding: 16px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 18px rgba(212,175,55,0.4);
}
.contact-panel button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(212,175,55,0.7);
}

/* CONTACT INFO */
.contact-info {
  margin-top: 30px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  z-index: 3;
  position: relative;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-panel { padding: 40px 25px; }
  #contact h2 { font-size: 2.2rem; }
}

