/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #e9eef7, #f7f9fc);
  }
  
  /* =========================
     FULL WIDTH NAVBAR
  ========================= */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    padding: 14px 30px;
  
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  
    z-index: 1000;
  
    /* page load animation */
    opacity: 0;
    transform: translateY(-20px);
    animation: navbarLoad 0.6s ease forwards;
  }
  
  /* NAV LINKS - EVEN SPACING */
  .nav-links {
    display: flex;
    flex: 1;              /* takes full space */
    justify-content: space-evenly; /* evenly spaced */
    list-style: none;
    align-items: center;
  }
  
  /* LINKS */
  .nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 500;
  
    padding: 10px 16px;
    border-radius: 12px;
  
    background: rgba(255, 255, 255, 0.4);
  
    transition: all 0.3s ease;
    display: inline-block;
  
    /* individual load animation */
    opacity: 0;
    transform: translateY(-10px);
    animation: linkFade 0.5s ease forwards;
  }
  
  /* stagger animation for each link */
  .nav-links li:nth-child(1) a { animation-delay: 0.2s; }
  .nav-links li:nth-child(2) a { animation-delay: 0.3s; }
  .nav-links li:nth-child(3) a { animation-delay: 0.4s; }
  .nav-links li:nth-child(4) a { animation-delay: 0.5s; }
  .nav-links li:nth-child(5) a { animation-delay: 0.6s; }
  
  /* hover */
  .nav-links a:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
  }
  
  /* HAMBURGER */
  .hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #222;
    transition: transform 0.3s ease;
  }
  
  .hamburger:hover {
    transform: rotate(90deg);
  }
  
  /* =========================
     MOBILE
  ========================= */
  @media (max-width: 768px) {
  
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      top: 60px;
      right: 20px;
  
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
  
      width: 220px;
      padding: 15px;
  
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(15px);
  
      border-radius: 16px;
  
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  }
  
  /* =========================
     ANIMATIONS
  ========================= */
  @keyframes navbarLoad {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes linkFade {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }









/* FULL PAGE */

.trustees-coming-soon{
    min-height:100vh;
    width:100%;
    background:linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a,
        #0f172a
    );

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
    overflow:hidden;
}

/* MAIN BOX */

.coming-soon-box{
    width:90%;
    max-width:800px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    padding:60px 40px;

    border-radius:25px;

    text-align:center;

    border:1px solid rgba(255,255,255,.15);

    animation:fadeUp 1.5s ease;
}

/* ICON */

.icon-container{
    font-size:90px;

    animation:pulse 2s infinite;
}

/* HEADINGS */

.coming-soon-box h1{
    font-size:55px;
    color:white;
    margin-top:10px;
}

.coming-soon-box h2{
    color:#facc15;
    font-size:35px;
    margin:15px 0;
}

.coming-soon-box p{
    color:#e2e8f0;
    max-width:600px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
}

/* LOADING BAR */

.loading-bar{
    width:250px;
    height:8px;
    background:rgba(255,255,255,.15);

    border-radius:20px;

    margin:40px auto 0;

    overflow:hidden;
}

.loading-bar span{
    display:block;
    width:40%;
    height:100%;
    background:#facc15;

    animation:loading 2s infinite;
}

/* FLOATING SHAPES */

.floating-circle{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.circle1{
    width:180px;
    height:180px;
    top:10%;
    left:10%;
    animation:float 6s infinite ease-in-out;
}

.circle2{
    width:120px;
    height:120px;
    bottom:15%;
    right:15%;
    animation:float 8s infinite ease-in-out;
}

.circle3{
    width:80px;
    height:80px;
    top:20%;
    right:20%;
    animation:float 5s infinite ease-in-out;
}

/* ANIMATIONS */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(80px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1);
    }
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-30px);
    }

    100%{
        transform:translateY(0);
    }
}

@keyframes loading{

    0%{
        transform:translateX(-180px);
    }

    100%{
        transform:translateX(350px);
    }
}

/* DESKTOP ANIMATION */

@media(min-width:992px){

    .coming-soon-box:hover{
        transform:translateY(-10px);
        transition:.5s;
    }
}

/* TABLET ANIMATION */

@media(max-width:991px){

    .coming-soon-box{
        animation:zoomIn 1.5s ease;
    }

    @keyframes zoomIn{

        from{
            opacity:0;
            transform:scale(.8);
        }

        to{
            opacity:1;
            transform:scale(1);
        }
    }

    .coming-soon-box h1{
        font-size:45px;
    }
}

/* MOBILE ANIMATION */

@media(max-width:768px){

    .coming-soon-box{
        padding:40px 25px;
        animation:slideIn 1.2s ease;
    }

    .coming-soon-box h1{
        font-size:34px;
    }

    .coming-soon-box h2{
        font-size:24px;
    }

    .coming-soon-box p{
        font-size:16px;
    }

    .icon-container{
        font-size:70px;
    }

    @keyframes slideIn{

        from{
            opacity:0;
            transform:translateX(-100px);
        }

        to{
            opacity:1;
            transform:translateX(0);
        }
    }
}





/* footer starts here */

.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 12px;
  }
  
  .footer-section ul li:last-child {
    margin-bottom: 0;
  }
  
  .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
  }
  
  .footer-section a:hover {
    color: #ffd700;
    padding-left: 5px;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
  }
  
  .contact-item i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    color: #ffd700;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 20px;
    gap: 10px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    backdrop-filter: blur(10px);
  }
  
  .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .newsletter-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 25px;
    color: #1e3c72;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }
  
  .footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .footer-bottom .footer-container {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .social-links a:hover {
    background: #ffd700;
    color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  }
  
  .footer-legal {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: right;
    gap: 10px;
  }
  
  .footer-legal p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .legal-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .legal-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .legal-links li a:hover {
    color: #ffd700;
  }