@font-face {
    font-family: 'Dune';
    font-display: swap;
    src: url('/fonts/Dune.woff2') format('woff2');
  }

@font-face {
    font-family: 'Josefin';
    font-display: swap;
    src: url('/fonts/Josefin_Sans.woff2') format('woff2');
}

@font-face {
    font-family: 'Luminari';
    font-display: swap;
    src: url('/fonts/Luminari_Fantasy.woff2') format('woff2');
}

@keyframes subhra-intro {
    0% {
        transform: scale(1.5);
        opacity: 0;
    }
    20% {
        transform: scale(1);
        opacity: 1;
    }
    80% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

@keyframes background-fade {
    0% {
        background-color: #000;
    }
    100% {
        background-color: #141414;
    }
}

@keyframes letter-glow {
    0%,
    100% {
        text-shadow: 0 0 5px rgba(229, 9, 20, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(229, 9, 20, 0.8);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.body{
    font-family: 'Josefin';
    background-color: #000000;
}

.page h1 {
    color: #DF9B6D;
    text-align: left;
}

.loader {
    font-family: 'Dune';
    font-weight: bold;
    color: #e50914;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    animation: background-fade 3s ease-in-out forwards;
}

.loader span {
    display: inline-block;
    animation: subhra-intro 3s ease-in-out, letter-glow 1.5s ease-in-out infinite;
}

.loader span:nth-child(1) {
    animation-delay: 0.1s;
}

.loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader span:nth-child(3) {
    animation-delay: 0.3s;
}

.loader span:nth-child(4) {
    animation-delay: 0.4s;
}

.loader span:nth-child(5) {
    animation-delay: 0.5s;
}

.loader span:nth-child(6) {
    animation-delay: 0.6s;
}

.fa-brands,
.fa-solid{
    color: #000000;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
}

.socials a {
    text-decoration: none;
    margin: 0 10px;
}

.social_icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s, box-shadow 0.3s; 
}

.social_icons i {
    font-size: 20px;
    display: flex; 
    justify-content: center;
    align-items: center;
}

.social_icons:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navigations {
    display: flex;
    justify-content: center;
    width: 100%;
}

.top-nav {
    width: 100%;
    background-color: #1a1a1a;
    padding: 10px 20px;
    color: white;
    position: relative;
    z-index: 1000;
    font-family: 'Dune';
    border-radius: 5px;
}

.nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.plus-icon, .hamburger {
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}

.plus-icon:hover, .hamburger:hover {
    transform: scale(1.1);
}

.nav-title {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
}

.main-menu, .secondary-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
}

.main-menu.active, .secondary-menu.active {
    transform: translateY(0);
}

.menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Dune';
    font-weight: 750;
    gap: 20px;
}

.menu-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.menu-item a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.menu-item a:hover::after {
    width: 100%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    z-index: 2001;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.main-menu.active .menu-item,
.secondary-menu.active .menu-item {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(0.1s * var(--delay));
}

.sponsor-btn {
    background-color: #DF9B6D;
    color: #000000;
    height: 25px;
    width: fit-content;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-btn:hover {
    transform: translate(0,2px);
}

.horizontal-rules {
    border: 2px dashed #f1f2f3;
    width: 85%;
    --delay: 1;
}

footer {
    margin-top: 45px;
    margin-bottom: 100px;
    text-align: center;
    background-color: #000;
    border-radius: 5px;
    color: #fff;
    font-family: 'Luminari';
}

footer th {
    text-align: center;
    text-decoration: none;
    align-items: center;
    font-size: 20px;
    color: #ffffff;
    background-color: #AF1B3F;
    padding: 10px;
    border-radius: 5px;
    cursor:pointer;
}

footer table{
    margin-left: auto;
    margin-right: auto;
    font-family: 'Dune';
    font-size: 16px;
    font-weight: lighter;
}

footer a {
    text-decoration: none;
    color: #ffffff;
    cursor:pointer;
    font-size: 15px;
}

.footer-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

#clock {
    display: block;
    float: center;
    color: #f0f0f0;
    font-size: 1em;
    background-color: #519E8A;
    padding: 5px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    font-family: 'Dune';
    font-weight: bold;
    animation-delay: 2.5s;
}

#time {
    color: inherit;
}

.topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 9999;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #519E8A;
    color: #ffffff;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    opacity: 75%;
}

.topBtn:hover {
    background-color: #555;
}

.content {
    background-image: url(/images/backdrop.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    z-index: -3;
    border-radius: 6px;
    opacity: 95%;
}

.cover{
    padding-top: 5vh;
    padding-bottom: 5vh;
    font-family: 'Dune';
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.cover h1 {
    text-align: center;
    color: #ffffff;
}

.menu-container {
    margin-top: 150px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
}

.menu-container a {
    position: absolute;
    text-decoration: none;
    width: 87.5px;
    height: 50px;
}

.menu-container a:nth-child(1) {
    top: 25px;
    left: -43.75px;
}

.menu-container a:nth-child(2) {
    top: 25px;
    right: -43.75px;
}

.menu-container a:nth-child(3) {
    bottom: 25px;
    left: -43.75px;
}

.menu-container a:nth-child(4) {
    bottom: 25px;
    right: -43.75px;
}

.m-item {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-size: 25px;
    padding: 5px;
    box-sizing: border-box;
    font-family: 'Dune';
}

.center-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e74c3c;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.center-button:focus {
    outline: none;
}

.center-button::before,
.center-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 4px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.center-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.center-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.center-button.plus::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.center-button.plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.m-item.hidden {
    opacity: 0;
    transform: scale(0);
}

.menu-container a:nth-child(1) .m-item.hidden {
    transform: translate(75px, 75px) scale(0);
}

.menu-container a:nth-child(2) .m-item.hidden {
    transform: translate(-75px, 75px) scale(0);
}

.menu-container a:nth-child(3) .m-item.hidden {
    transform: translate(75px, -75px) scale(0);
}

.menu-container a:nth-child(4) .m-item.hidden {
    transform: translate(-75px, -75px) scale(0);
}

.containers.box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    color: #fff;
    margin: 0 auto;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.container {
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
}

.container-content {
    padding-top: 5px;
    width: 85%;
    text-align: center;
    align-self: center;
    margin: 0 auto;
}

.container h3 a {
    padding: 15px;
    width: 85%;
    color: #fff;
    font-family: 'Dune';
    text-decoration: underline;
    text-align: center;
    align-self: center;
}

h1, h2, h3 {
    font-family: 'Dune';
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-family: 'Dune';
    color: #000;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
}

.btn {
    margin-top: 5px;
    background-color: #DF9B6D;
    color: #000000;
    width: fit-content;
    font-family: 'Luminari';
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    transform: translate(0,2px);
}

.footer-ads {
    display: inline-block;
    width: 1000px;
    height: 85px
}

.about {
    background-color: #000000;
    color: snow;
    background-image: url();
    margin-left: 15vw;
    margin-right: 15vw;
    text-align: center;
}

.about h1 {
    text-align: left;
    color: #DF9B6D;
}

.about img{
    max-width: 300px;
    border-radius: 75%;
    cursor: pointer;
}

.about img:hover {
    transform: translate(0,-2px);
}

.about-content {
    text-align: center;
    margin: auto;
    color: #fff;
}

.education-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    gap: 20px;
    margin-top: 20px;
  }

#education, #quotes, #photos, #accolades, #degrees {
    width: 75%;
    border: 1px white dashed;
}

.pics-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.quote-container {
    max-width: 1200px;
    margin: 25px auto 25px auto;
    padding: auto;
}

.quote:hover, .school-timeline:hover {
    transform: translate(0,-2px);
}

.quote {
    background: #f9f9f9;
    border-left: 7px solid #DF9B6D;
    margin: 1em 1px;
    padding: 1em 1px;
    position: relative;
    border-radius: 15px;
}

.quote:before {
    color: #DF9B6D;
    content: '"';
    font-size: 4em;
    position: absolute;
    left: 10px;
    top: -10px;
}

.quote-text {
    color: #333;
    font-size: 1.2em;
    line-height: 1.6;
    margin: 0;
    padding: 0 2vw 0 2.5vw;
    font-style: italic;
}

.quote-author {
    color: #ed8742;
    font-size: 1em;
    font-style: normal;
    margin-top: 10px;
    padding-left: 40px;
    padding-right: 2vw;
    text-align: right;
}

.about ul {
    list-style-type: none;
}

.about a {
    text-decoration: none;
    color: #DF9B6D;
}

.policy-sections {
    text-align: left;;
}

.policy-sections h2,.policy-sections h3 {
    font-family: 'Luminari';
}

.policy-index .policy-list, .policy-index h2{
    text-align: center;
    font-family: 'Luminari';
}

.definitions {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.terminology-list,
.abbreviation-list {
    padding-left: 2rem;
    margin-bottom: 2rem;
    background-color: #f9f9f9;
}

.terminology-item,
.abbreviation-item {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #444;
}

.term {
    font-weight: 500;
    color: #222;
}

.reference,
.abbreviation {
    font-weight: 500;
    color: #2c5282;
}

.errors{
    text-align: center;
    padding-top: 20vh;
    padding-bottom: 20vh;
    color: #ffffff;
}

.error-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 200px;
    height: 200px;
    position: relative;
    margin: auto;
}

.back-button {
    font-size: 1.5em;
    cursor: pointer;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    animation: fadeIn 1s ease-out;
}

.cosmic-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.cosmic-search-input {
    width: 100%;
    padding: 15px 45px;
    font-size: 16px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: white;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cosmic-search-input:focus {
    outline: none;
    border-color: #7b2fff;
    box-shadow: 0 0 20px rgba(123, 47, 255, 0.3);
    transform: scale(1.02);
}

#waveCanvas {
    width: 100%;
    height: 10vh;
}

.wikis, .wikis img, .wikis a {
    text-align: left;
    border-radius: 5px;
    color: #007bff;
}

.wikis h2, .wikis h3, .wikis h4, .wikis p, .wikis ul {
    text-align: left;
    color: #ffffff;
}

.contact-form {
    max-width: 1000px; 
    margin: 0 auto; 
    display: block;
    height: 100vh;
    border: 2.5px dashed #007bff;
    opacity: 0;
    padding: 5px;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.iframe-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #3498db;
    border-radius: 50%;
    animation: pulse 1.2s infinite;
}

.formbtn {
    background-color: #007bff;
    padding: 5px;
    border-radius: 15px;
    font-size: large;
}

.contact-form.loaded {
    opacity: 1;
}

.contact-details iframe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.school-timeline {
    position: relative;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
  
.timeline-item {
    margin-bottom: 20px;
    width: 80%;
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 4px solid #2c5282;
}
  
.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #007bff;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #007bff;
}

.degree-timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #DF9B6D;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #ed8742;
}
  
.edu-logo {
    float: right;
    margin: 10px;
}

.school-time-line-year, 
.school-time-line-degree, 
.school-time-line-marks, 
.school-time-line-committee, 
.school-time-line-school, 
.school-time-line-type {
    font-family: 'Luminari';
    color: #000000;
    font-weight: lighter;
    text-align: left;
    margin-left: 30px;
}

.school-time-line-year {
    font-family: 'Dune';
    font-weight: bold;
    color: #DF9B6D;
}

.blue-time {
    color: #007bff;
}