/* --------------------------------------------------
   GLOBAL STYLES
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #fff;
    color: #333;
    line-height: 1.45;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 50px;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.logo img {
    width: 120px;
    height: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: #005eff;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* --------------------------------------------------
   ABOUT SECTION + SLIDER
-------------------------------------------------- */
.about-slider-section {
    padding: 23px 0;
    text-align: center;
}

.about-intro {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 50px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* */

body {
  font-family: Arial, sans-serif;
}

.slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
}

.slide {
  display: none;
  width: 100%;
}

.slide.active {
  display: block;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

button:hover {
  background: rgba(0,0,0,0.8);
}


/* Blue Straps */
.blue-strap {
    background-color: #0b66ff;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.blue-strap-funding {
    background-color: #25346c;
}

/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider */
.about-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.about-slider::-webkit-scrollbar {
    display: none;
}

/* Slide */
.about-slide {
    flex: 0 0 calc((100% / 4) - 15px);
    max-width: calc((100% / 4) - 15px);
    background: #f5f9ff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.about-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.about-slide h3 {
    font-size: 18px;
    font-weight: 700;
}

/* Slider Arrows */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    font-size: 22px;
    color: #007BFF;
}

.slick-prev {
    left: -28px;
}

.slick-next {
    right: -28px;
}

/* =========================
   MODERN IMAGE SLIDER
========================= */

.modern-slider {
    max-width: 1100px;
    margin: 50px auto;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Slides container */
.modern-slider .slides {
    position: relative;
    height: 520px;
}

/* Individual slide */
.modern-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 1s ease;
}

/* Active slide */
.modern-slider .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Dark gradient overlay */
.modern-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.35)
    );
    pointer-events: none;
}

/* Navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #25346c;
    font-size: 22px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #25346c;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Dots */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dots span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dots span.active {
    background: #ffffff;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 900px) {
    .modern-slider .slides {
        height: 380px;
    }
}

@media (max-width: 600px) {
    .modern-slider .slides {
        height: 260px;
    }
}

/* --------------------------------------------------
   TEAM SECTION
-------------------------------------------------- */
.team-text {
    padding: 0 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
    text-align: center;
    padding: 50px;
    background: #25346c;
    color: white;
}

.footer-heading {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-text {
    color: #e6e6e6;
    margin-bottom: 20px;
}

.footer-email {
    color: #4ea2ff;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}


/* --------------------------------------------------
   RESPONSIVE FIXES
-------------------------------------------------- */
@media (max-width: 1100px) {
    .about-slide {
        flex: 0 0 calc((100% / 3) - 16px);
        max-width: calc((100% / 3) - 16px);
    }
}

@media (max-width: 900px) {
    .header {
        padding: 14px 24px;
    }

    .about-intro {
        padding: 0 20px;
        flex-direction: column;
        text-align: left;
    }

    .about-slide {
        flex: 0 0 calc((100% / 2) - 15px);
        max-width: calc((100% / 2) - 15px);
    }
}

@media (max-width: 600px) {
    .about-slide {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        display: none;
    }
}
/* Container for the logo gallery */
.logo-gallery {
  display: grid;
  /* Creates four columns of equal width */
  grid-template-columns: 1fr 1fr 1fr 1fr; 
  /* Shorthand for: repeat(4, 1fr); */
  
  /* Sets the gap between items */
  gap: 15px; 
  
  /* Centers the gallery container on the page and limits its width */
  max-width: 900px; 
  margin: 0 auto; 
  padding: 20px;
}

/* Individual logo item styling */
.logo-item {
  /* Center the image within its container */
  display: flex; 
  justify-content: center;
  align-items: center;
  padding: 5px;
}

/* Logo image styling */
.logo-item img {
  /* Ensure the image doesn't exceed its container */
  max-width: 100%; 
  /* Set a maximum height for uniformity, since the width is constrained by the column */
  max-height: 60px; 
  /* Maintain aspect ratio */
  height: auto; 
}

/* --- Responsive Design for Smaller Screens --- */

/* Tablet view: Change to 3 columns */
@media (max-width: 768px) {
  .logo-gallery {
    grid-template-columns: repeat(3, 1fr); 
  }
}

/* Mobile view: Change to 2 columns */
@media (max-width: 500px) {
  .logo-gallery {
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
  }
}
/* ============================================
   INAUGURATION SECTION
============================================ */
.inauguration-section {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
}

.inaug-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #25346c;
}

.single-photo-block {
  margin-bottom: 40px;
}

.inaug-photo {
  width: 230px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.inaug-name {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 600;
}

.presence-title {
  margin-top: 40px;
  font-size: 26px;
  font-weight: 600;
  color: #25346c;
}

.presence-row {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.presence-card {
  text-align: center;
}

.presence-photo {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.presence-name {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 600px) {
  .presence-row {
    flex-direction: column;
    gap: 25px;
  }
}
/* add */
/* ============================
   YOUTUBE VIDEO SECTION (BIGGER)
============================ */
.youtube-section {
    padding: 60px 20px;
    text-align: center;
}

.youtube-section .blue-strap {
    margin-bottom: 35px;
}

/* Larger Video Container */
.youtube-wrapper {
    position: relative;
    max-width: 1200px;       /* Increased width */
    margin: 0 auto;
    padding-bottom: 42%;     /* Bigger 16:9 height ratio */
    height: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.20);
}

/* Responsive iFrame */
.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Tablet */
@media (max-width: 900px) {
    .youtube-wrapper {
        max-width: 95%;
        padding-bottom: 50%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .youtube-wrapper {
        padding-bottom: 56%;  /* Maintain full video height */
    }
}
