@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

/* ---- loader ---- */
#loader {
  position: fixed;
  inset: 0;
  background: #2F4156;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-logo {
  width: 90px;
  height: 90px;
  filter: brightness(0) invert(1);
  animation: swivel 2s ease-in-out infinite;
}

@keyframes swivel {
  0%   { transform: perspective(400px) rotateY(0deg) scale(1); }
  25%  { transform: perspective(400px) rotateY(90deg) scale(0.9); }
  50%  { transform: perspective(400px) rotateY(180deg) scale(1); }
  75%  { transform: perspective(400px) rotateY(270deg) scale(0.9); }
  100% { transform: perspective(400px) rotateY(360deg) scale(1); }
}

/* ---- navbar ---- */
.navbar {
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar .logo {
  height: 50px;
  padding-left: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 16px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  border-radius: 30px;
  padding: 8px 13px;
  transition: color 0.3s ease;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color: #fff;
  transition: color 0.4s ease;
}

.nav-toggle svg {
  fill: currentColor;
  transition: fill 0.4s ease;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    padding: 12px 20px;
    background: #2F4156;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    color: #fff !important;
    padding: 10px 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .navbar { border-radius: 0 0 16px 16px; }

  .nav-toggle { color: #161616; }
}

/* ---- hero ---- */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(5%, 10%, 12%);
  padding-right: 5%;
  background:
    linear-gradient(to bottom, transparent 60%, #080230),
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/DSC00670.jpg") center/cover no-repeat;
}

.bg { display: none; }

.hero-content {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 680px;
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 44px) clamp(20px, 4vw, 52px) clamp(40px, 8vw, 120px);
}

.hero-content h1 {
  color: #fff;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: clamp(20px, 3.5vw, 32px);
  line-height: 1.3;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  font-size: clamp(13px, 1.5vw, 15px);
  max-width: 500px;
  line-height: 1.8;
}

.hero-content img {
  width: clamp(50px, 7vw, 80px);
  padding-bottom: 12px;
}

@media (max-width: 600px) {
  .hero {
    padding-left: 5%;
    align-items: flex-end;
    padding-bottom: 10%;
  }

  .hero-content {
    padding-bottom: 40px;
  }
}

/* ---- club section ---- */
.club {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.text {
  padding-top: clamp(20px, 5vw, 60px);
  flex: 1;
  max-width: 800px;
}

.text h1 {
  text-transform: uppercase;
  font-size: clamp(40px, 10vw, 100px);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  color: #111;
}

.text p {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.8;
  color: rgba(13,12,12,0.7);
}

/* ---- whatwedo ---- */
.whatwedo {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.whatwedo-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  z-index: 10;
  pointer-events: none;
}

.whatwedo-text h1 {
  text-transform: uppercase;
  font-size: clamp(28px, 7vw, 90px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  word-break: keep-all;
  margin-bottom: 1rem;
}

.whatwedo-text p {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slide 10s infinite;
  filter: brightness(45%);
  clip-path: inset(2% 2% 2% 2% round 20px);
}

.slider .slide:nth-child(1) { background-image: url('../images/slides/ashirwada.jpg'); animation-delay: 0s; }
.slider .slide:nth-child(2) { background-image: url('../images/slides/image1.jpg');    animation-delay: -2s; }
.slider .slide:nth-child(3) { background-image: url('../images/slides/image2.jpg');    animation-delay: -4s; }
.slider .slide:nth-child(4) { background-image: url('../images/slides/image3.jpg');    animation-delay: -6s; }
.slider .slide:nth-child(5) { background-image: url('../images/slides/orientation.jpg'); animation-delay: -8s; }

@keyframes slide {
  0%, 15%, 100% { transform: translateX(0);     animation-timing-function: ease; }
  20%            { transform: translateX(-100%); animation-timing-function: step-end; }
  95%            { transform: translateX(100%);  animation-timing-function: ease; }
}

@media (max-width: 768px) {
  .slider .slide { clip-path: inset(3% 3% 3% 3% round 16px); }

  .whatwedo-text { width: 90%; }

  .whatwedo-text h1 {
    font-size: clamp(28px, 10vw, 60px);
    line-height: 1.1;
  }
}

/* ---- leo movement ---- */
.leo {
  position: relative;
  z-index: 1;
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.leo p {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.8;
  color: rgba(13,12,12,0.7);
}

/* ---- gradient hero ---- */
.gradient-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a2535 0%, #2F4156 40%, #3d6070 70%, #567C8D 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2.5rem;
}

.gradient-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.gradient-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gradient-hero-top span {
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

.gradient-hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.gradient-hero-sub {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.gradient-hero-desc {
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

.gradient-hero-title {
  position: relative;
  z-index: 1;
}

.gradient-hero-title h1 {
  font-size: clamp(60px, 14vw, 180px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.9) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0.8) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

@media (max-width: 768px) {
  .gradient-hero { padding: 1.5rem; }
  .gradient-hero-title h1 { letter-spacing: -1px; }
}

/* ---- awards ---- */
.awards-section {
  padding: 6rem 2rem;
  background: #2F4156;
}

.awards-header {
  text-align: center;
  margin-bottom: 4rem;
}

.awards-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.awards-header h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.5px;
}

.awards-grid {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.award-card {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  transition: padding-left 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.award-card:first-of-type {
  border-top: 0.5px solid rgba(255,255,255,0.1);
}

.award-card:hover {
  padding-left: 1rem;
  border-bottom-color: rgba(255,255,255,0.3);
}

.award-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  min-width: 80px;
  transition: color 0.3s ease;
}

.award-card:hover .award-number {
  color: rgba(255,255,255,0.2);
}

.award-content {
  flex: 1;
  padding-top: 6px;
}

.award-content h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.award-card:hover .award-content h3 {
  color: #87ddfe;
}

.award-content p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 600px;
}

@media (max-width: 600px) {
  .award-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .award-number {
    font-size: 36px;
    min-width: unset;
  }
}

/* ---- bento grid ---- */
.bento-section {
  padding: 4rem 2rem;
  background: #fff;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-card:hover img { transform: scale(1.06); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover .bento-overlay { opacity: 1; }

.bento-overlay h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.bento-overlay p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

.bento-large { grid-column: span 2; grid-row: span 1; }
.bento-tall  { grid-column: span 1; grid-row: span 2; }
.bento-small { grid-column: span 1; grid-row: span 1; }
.bento-wide  { grid-column: span 2; grid-row: span 1; }

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-large,
  .bento-tall,
  .bento-wide  { grid-column: span 2; grid-row: span 1; height: 220px; }

  .bento-small { grid-column: span 1; height: 180px; }

  .bento-overlay { opacity: 1; }
}

@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }

  .bento-large,
  .bento-tall,
  .bento-wide,
  .bento-small { grid-column: span 1; height: 200px; }
}

/* ---- stats ---- */
.stats {
  padding: 5rem 2rem;
  background: #2F4156;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---- org chart ---- */
.org-section {
  padding: 5rem 2rem;
  background: #f5f9fb;
}

.org-header {
  text-align: center;
  margin-bottom: 3rem;
}

.org-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #567C8D;
  margin-bottom: 8px;
}

.org-header h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 400;
  color: #2F4156;
}

.org-level {
  max-width: 1100px;
  margin: 0 auto 1rem;
}

.level-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #567C8D;
  margin-bottom: 1.25rem;
}

.level-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.org-card {
  background: #fff;
  border: 0.5px solid #d0e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  width: 160px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(86, 124, 141, 0.15);
}

.org-photo {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: #e8f4f8;
  overflow: hidden;
}

.org-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.org-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: #567C8D;
}

.org-card h3 {
  font-size: 14px;
  font-weight: 500;
  color: #2F4156;
  margin-bottom: 4px;
}

.org-card p {
  font-size: 12px;
  font-weight: 300;
  color: #888;
}

@media (max-width: 600px) {
  .org-card { width: 140px; }
}
/* ---- wrapper / club section ---- */
.wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.image-box {
  width: 420px;
  height: 280px;
  min-width: 420px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #1a1a1a;
}

@media (max-width: 900px) {
  .wrapper {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
  .image-box {
    width: 100%;
    min-width: unset;
    height: 220px;
  }
}

/* ---- leo movement ---- */
.leo {
  position: relative;
  z-index: 1;
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.leo-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.leo-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem;
  background: #fff;
  border-radius: 20px;
  border: 0.5px solid #d0e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(86,124,141,0.12);
}

.leo-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.leo-text h2 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: #2F4156;
  margin-bottom: 0.75rem;
}

.leo-text p {
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 300;
  color: #555;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .leo-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .leo-card img {
    width: 80px;
    height: 80px;
  }
}
/* ---- footer ---- */
.footer {
    background: linear-gradient(210deg, #020024 0%, #090979 35%);
  color: #fff;
  padding: 4rem 2rem 0;

  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  background: #567C8D;
  color: #fff;
  border-color: #567C8D;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-links ul a:hover { color: #fff; }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand p { max-width: 100%; }
}

/* ---- fade and slide animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.from-left  { transform: translateX(-40px); }
.fade-in.from-right { transform: translateX(40px); }

.fade-in.from-left.visible,
.fade-in.from-right.visible { transform: translateX(0); }

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }