* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Syne';
}

html,
body {
    height: 100%;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

/* Hide scrollbar for all elements */
* {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    display: none;
}

/* Ensure body still scrolls smoothly */
body {
    overflow-y: scroll;
}

#minicircle {
    transition: cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
    background-color: #fff;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

#minicircle.enlarged {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

#minicircle span {
    color: #00246B;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#minicircle.enlarged span {
    opacity: 1;
}

#main {
    width: 100%;
    background-color: #CADCFC;
}

#landingPage {
    width: 100%;
    height: 100vh;
    background-color: #00246b;
    position: relative;
    padding-top: 40px;
    /* Add padding to account for fixed nav */
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#particles-js .particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* ✅ keep pointer-events enabled for mousemove */
    pointer-events: auto;
    z-index: 0;
}

#landingMain,
#landingfooter {
    position: relative;
    z-index: 1;
}


#nav {
    color: white;
    padding: 20px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #CADCFC;
    background-color: #00246b;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

#nav a {
    font-weight: 585;
    color: white;
    text-decoration: none;
    font-size: 1.4vw;
    text-transform: uppercase;
}

#nav .menuDiv {
    /* background-color: red; */
    width: fit-content;
    display: flex;
    gap: 2vw;
    justify-content: space-between;
    align-items: center;
}

#nav .menuDiv h4 {
    font-size: 1.2vw;
    text-transform: uppercase;
}

#baricon {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

#baricon::before,
#baricon::after {
    content: '';
    position: absolute;
    right: 0;
    background-color: #CADCFC;
    transition: all 0.4s ease-in-out;
}

#baricon::before {
    width: 100%;
    top: 0;
    height: 2px;
}

#baricon::after {
    width: 100%;
    bottom: 0;
    height: 3px;
}

#baricon.active::before,
#baricon.active::after {
    background-color: #00246b;
}

#baricon.active::before {
    transform: translateY(9px) rotate(45deg);
}

#baricon.active::after {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    /* Changed from left to right */
    width: 30%;
    /* Set to 50% width */
    height: 100vh;
    background-color: #FCA311;
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;
    z-index: 999;
}

.menu-overlay nav {
    display: flex;
    flex-direction: column;
    height: 70%;
    width: 100%;
}

.menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu {
    padding-top: 6vw;
    padding-left: 1vw;
}

.custom-hr {
    color: #00246B;
}

.mobile-menu h1 a {
    color: #00246B;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    font-size: 6vw;
    line-height: 100%;
}

#nav-bottom {
    height: 30%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding-bottom: 3vw;
}

#nav-socials {
    display: flex;
    /* justify-content: space-around; */
    gap: 5px;
    padding-left: 1vw;
    align-items: flex-end;
}

#nav-socials a {
    font-family: 'Bebas Neue', sans-serif;
    color: #00246B;
    font-size: 1.1vw;
    font-weight: 400;
    text-transform: uppercase;
}

#nav-socials a i {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
    margin-left: 2px;
    pointer-events: none;
}

#nav-socials a:hover i {
    opacity: 1;
    transform: translateX(0);
}

#nav-video {
    height: 60%;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

#nav-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Hide native video controls for all browsers */
#nav-video video::-webkit-media-controls {
    display: none !important;
}

#nav-video video::-webkit-media-controls-enclosure {
    display: none !important;
}

#nav-video video::-webkit-media-controls-panel {
    display: none !important;
}

#nav-video video::-webkit-media-controls-play-button,
#nav-video video::-webkit-media-controls-start-playback-button,
#nav-video video::-webkit-media-controls-fullscreen-button,
#nav-video video::-webkit-media-controls-toggle-closed-captions-button,
#nav-video video::-webkit-media-controls-volume-slider,
#nav-video video::-webkit-media-controls-mute-button,
#nav-video video::-webkit-media-controls-timeline,
#nav-video video::-webkit-media-controls-current-time-display,
#nav-video video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

#nav-video video {
    pointer-events: none;
    /* Prevents interaction (no hover controls) */
}

#landingMain {
    width: 80vw;
    color: #CADCFC;
    padding-top: 4vw;
    padding-left: 33px;
    text-transform: uppercase;
    line-height: 0.9;
    margin-top: var(--content-top-margin);
}

#landingMain h1 {
    width: 100%;
    font-size: clamp(6rem, 11vw, 13rem);
    opacity: .6;
    line-height: 0.85;
}

.hero-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5vw;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sacramento {
    text-transform: capitalize;
    font-family: 'Sacramento', cursive;
    font-size: 5.5rem;
    font-weight: 400;
    color: #FCA311;
}

#landingfooter {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10vw;
    padding-right: 2vw;
    padding-top: 3vw;
}

.lfooter3 {
    margin-bottom: .8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: auto;
}

#slashimg {
    height: 100%;
    padding: 0px 10px;
}

#slashimg img {
    height: 100%;
}

#slashtxt a {
    color: #CADCFC;
    font-size: 1.2rem;
    font-weight: 200;
    text-decoration: none;
    text-transform: uppercase;
}

.bounding {
    overflow: hidden;
    display: inline-block;
}

.bounding-elem {
    display: block;
    transform: translateY(100%);
}

#landingMain .bounding {
    display: block;
}

.slash-image {
    height: 20px;
    width: auto;
    flex-shrink: 0;
}

.footer-link {
    color: #CADCFC;
    font-size: 1.2rem;
    font-weight: 200;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

#infopage {
    min-height: 90vh;
    background-color: #00246B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vh;
}

#supportedBy {
    width: 100%;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    flex-direction: column;
}

.supporth1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    color: #CADCFC;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0.8;

    position: relative;
    /* needed for the underline */
    display: inline-block;
    /* so underline fits text width */
    margin-bottom: 2rem;
    /* spacing below heading */
}

.supporth1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    /* distance from text */
    width: 100%;
    height: 3px;
    /* underline thickness */
    background-color: #FCA311;
    /* your accent color */
    border-radius: 2px;
}


/* Container */
#supporterlogo {
    display: flex;
    justify-content: center;
    /* center the whole row */
    align-items: center;
    /* vertical center of each card */
    gap: 2rem;
    /* spacing between cards */
    padding: 2rem 1rem;
    box-sizing: border-box;
    /* keep the page background elsewhere (body or parent) as #00246B */
}

/* Card (uniform size) */
.supporter-card {
    width: 220px;
    /* fixed card width for consistent alignment */
    height: 120px;
    /* fixed card height for consistent alignment */
    display: flex;
    align-items: center;
    /* center content vertically */
    justify-content: center;
    /* center content horizontally */
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    /* subtle glass */
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-sizing: border-box;
}

/* Hover */
.supporter-card:hover {
    transform: translateY(-6px);
    border: #fca21177 1px solid;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
    /* neutral lift */
}

/* Logo image */
.supporter-card img {
    max-height: 68px;
    /* keeps logos uniformly sized */
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    /* white/light on dark by default */
    transition: filter 0.2s ease, transform 0.2s ease;
}

/* Reveal original logo colors on hover (no glow) */
.supporter-card:hover img {
    filter: none;
    transform: scale(1.02);
}

/* Logo + text (for the department item) */
.logo-with-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.logo-with-text span {
    color: #CADCFC;
    /* your light text color */
    font-size: 0.88rem;
    line-height: 1;
    margin-top: 0.25rem;
    text-align: center;
}

/* Heading (ensure center) */
#supportedByHeading {
    text-align: center;
    color: #CADCFC;
    margin: 0 0 1.6rem;
    letter-spacing: 1px;
}

/* Responsive: shrink cards on small screens and allow wrapping */
@media (max-width: 1100px) {
    .supporter-card {
        width: 190px;
        height: 110px;
    }

    #supporterlogo {
        gap: 1.25rem;
        padding: 2rem 1rem;
    }

    .supporter-card img {
        max-height: 58px;
    }
}

@media (max-width: 640px) {

    /* allow wrapping into two rows on small screens */
    #supporterlogo {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .supporter-card {
        width: calc(50% - 1rem);
        height: 92px;
    }

    .logo-with-text span {
        font-size: 0.78rem;
    }
}


#description {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#description h2 {
    color: #CADCFC;
    font-size: 1.5vw;
    line-height: 1.1;
    text-transform: capitalize;
    font-family: 'Bebas Neue';
    letter-spacing: 5px;
}

.sacramentoinfo {
    letter-spacing: 0cm;
    text-transform: capitalize;
    font-family: 'Sacramento', cursive;
    font-size: 3vw;
    color: #FCA311;
    font-weight: 400;
}

.splittext {
    display: block;
    overflow: hidden;
    transform-origin: bottom left;
}

#domains {
    min-height: 100vh;
    width: 100%;
    background-color: #00246B;
    overflow: hidden;
}

#floatinghead {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.scroll-item {
    display: flex;
    align-items: center;
    gap: 2vw;
    padding: 0 1vw;
    white-space: nowrap;
}

.scroll-item h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8vw;
    color: #CADCFC;
    font-weight: 650;
}

.fullstop {
    height: 2vw;
    width: 2vw;
    background-color: #FCA311;
    border-radius: 50%;
}

#grid {
    height: fit-content;
    width: 100%;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #CADCFC;
    padding: 1vw;
    gap: 2vw;
}

.box {
    height: 14vw;
    margin: 5vw 0;
    border-left: 1px solid #cadcfc5c;
}

.box h2 {
    font-size: 2.3vw;
    color: #FCA311;
    letter-spacing: 0.1vw;
    font-family: 'Bebas Neue', sans-serif;
}

.box h3 {
    width: 80%;
    font-size: 1.2vw;
    text-align: left;
}

#domaindesc {
    height: 30%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

#domaindesc .data {
    width: 38%;
    margin-bottom: 6vw;
    padding: 0 2vw;
}

.data h2 {
    color: #CADCFC;
    text-align: right;
    font-size: 1vw;
}

.data h2 span {
    text-transform: capitalize;
    font-family: 'Sacramento', cursive;
    color: #FCA311;
    font-size: 1.5vw;
}

#page2 {
    padding-top: clamp(1vw, 1vw, 1vw);
    padding-left: clamp(2.5vw, 4vw, 4vw);
    width: 100%;
    height: fit-content;
    padding-bottom: clamp(4vw, 8vw, 10vw);
    background-color: #CADCFC;
}

.page2-heading {
    color: #00246B;
    font-family: 'Bebas Neue';
    font-size: clamp(2rem, 5vw, 5rem);
    margin-bottom: 2rem;
    padding-left: 2vw;
    text-align: center;
    font-weight: 400;
    opacity: .8;
}

#elem {
    position: relative;
    border-top: 1px solid #00246B;
    width: 85%;
    height: calc(clamp(2rem, 4vw, 4rem) * 2.5);
    /* Height based on h1 font size */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 4rem) 1.5vw;
    /* Added vertical padding */
}

#elem h1 {
    opacity: .8;
    font-size: clamp(1.5rem, 4vw, 4rem);
    color: #00246B;
    text-transform: uppercase;
    line-height: 1;
    /* Added to ensure consistent text height */
    font-family: 'Bebas Neue';
    font-weight: 400;
}

#elem h4 {
    color: #00246B;
    font-size: clamp(0.8rem, 1.2vw, 1.2rem);
    text-transform: uppercase;
}

#elem img {
    opacity: 0;
    /* width: clamp(8rem, 16vw, 16rem); */
    height: 140%;
    position: absolute;
    z-index: 999;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: none;
}

.elemlast {
    border-bottom: 1px solid #00246B;
}

#team {
    width: 100%;
    min-height: 100vh;
    background-color: #CADCFC;
    position: relative;
    overflow: hidden;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-family: 'Bebas Neue';
    color: rgba(0, 36, 107, 0.315);
    white-space: nowrap;
    pointer-events: none;
}

.grid>div {
    grid-row: var(--r);
    grid-column: var(--c);
}

.elem {
    position: relative;
    cursor: pointer;
}

.elem img {
    transition: transform 0.3s ease;
}

.elem:hover img {
    transform: scale(1.05);
}

.flip-card-back {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5vw;
}

.flip-card-back h2 {
    color: #00246B;
    font-family: 'Bebas Neue';
    font-size: 2.5vh;
    text-align: center;
    letter-spacing: 1px;
}

.flip-card-back .designation {
    color: #00246B;
    font-size: 1rem;
    font-weight: 500;
}

.social-links-team {
    display: flex;
    gap: 1.5vw;
    margin-top: 0.5vw;
}

.social-links-team a {
    color: #00246B;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links-team a:hover {
    color: #FCA311;
    transform: translateY(-2px);
}

#footer {
    width: 100%;
    min-height: 45vh;
    background-color: #00246B;
    border-bottom: 1.5px solid #CADCFC;
    display: flex;
    justify-content: space-between;
}

#footerleft {
    height: 100%;
    width: 44%;
}

#footerleft h1 {
    color: #CADCFC;
    opacity: .6;
    font-size: clamp(5rem, 12vw, 12rem);
    padding: 40px 20px;
    text-transform: uppercase;
    line-height: .5;
    font-weight: 600;
    font-family: 'Bebas Neue';
    letter-spacing: 5px;
}

#copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#copyright h4 {
    color: #CADCFC;
    padding: 10px 20px;
    font-size: clamp(.7rem, 1.2vw, 1.2rem);
}

#footeright {
    height: 100%;
    width: 56%;
}

#footeright h2 {
    color: #CADCFC;
    font-family: 'Bebas Neue';
    text-align: center;
    /* letter-spacing: 3px; */
    padding-top: 70px;
    font-size: 1.5rem;
}

#email {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

#mail {
    width: 60%;
    padding: 15px 25px;
    border: 1px solid #CADCFC;
    border-radius: 50px;
    background: transparent;
    color: #CADCFC;
    font-size: 1.2rem;
    outline: none;
    transition: all 0.3s ease;
}

#mail:focus {
    border-color: #FCA311;
    box-shadow: 0 0 10px rgba(252, 163, 17, 0.2);
}

#mail::placeholder {
    color: #CADCFC;
    opacity: 0.6;
}

#btn {
    position: relative;
    width: 50px;
    height: 50px;
}

#email input[type="button"] {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 50%;
    background-color: #FCA311;
    cursor: pointer;
    transition: all 0.3s ease;
}

#email i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00246B;
    font-size: 1.5rem;
    pointer-events: none;
}

#email input[type="button"]:hover {
    transform: scale(1.1);
    background-color: #CADCFC;
}



.company-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address {
    color: #CADCFC;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    padding-left: 20px;
}

.socials-heading {
    color: #CADCFC;
    font-size: 1.2rem;
    margin: 30px 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    color: #CADCFC;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #FCA311;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #CADCFC;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #CADCFC;
    background-color: #00246b;
}

.rights {
    font-size: 0.9rem;
    opacity: 0.8;
}

.privacy {
    color: #CADCFC;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.privacy:hover {
    opacity: 1;
}

#project-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,36,107,0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: opacity 0.3s;
}

#project-overlay.hidden {
    display: none;
}

.project-overlay-content {
    width: 48vw;
    height: 80vh;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,36,107,0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    animation: overlayPopIn 0.4s cubic-bezier(.4,0,.2,1);
}

#project-overlay-top {
    width: 100%;
    height: 30%;
    flex: 0 0 35%;
    background: linear-gradient(120deg, #CADCFC 60%, #FCA311 100%);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2vw 2vw 1vw 2vw;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,36,107,0.06);
}

#project-overlay-top h1 {
    color: #00246B;
    font-size: 3vw;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .15vw;
    text-align: center;
    text-shadow: 0 2px 8px #fff8;
}

#project-overlay-top video {
    width: 40%;
    height: 95%;
    max-width: 340px;
    object-fit: cover;
    border-radius: 10px;
}

#project-overlay-middle {
    flex: 0 0 18%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: linear-gradient(120deg, #eaf1fb 60%, #fca31122 100%);
    padding: 1.2vw 2vw;
    border-bottom: 1px solid #CADCFC;
    gap: 2vw;
    border-top: 1px solid #CADCFC;
    border-radius: 0 0 0 0;
    box-shadow: 0 2px 8px rgba(0,36,107,0.04);
}

.project-middle-left h1,
.project-middle-right h1 {
    font-size: 1.2vw;
    color: #00246B;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    margin: 0 0 0.5vw 0;
    letter-spacing: 0.5px;
}

.project-middle-left span,
.project-middle-right span {
    color: #FCA311;
    font-weight: 700;
    font-family: inherit;
}

.project-middle-left {
    background-color: transparent;
}

.project-middle-right {
    display: flex;
    flex-direction: column;
    gap: 0.2vw;
}

#project-overlay-bottom {
    flex: 1 1 47%;
    background: linear-gradient(120deg, #fff 60%, #cadcfc 100%);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    display: flex;
    padding: 0.25vw 2vw 0.25vw 2vw;
    overflow-y: auto;
}

.projectTeam {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* border-left: 2px solid #CADCFC; */
    padding-left: 1.5vw;
}

.projectDesc p {
    color: #00246B;
    font-size: 1.08rem;
    line-height: 1.6;
    font-family: 'Syne', sans-serif;
    margin: 0;
    opacity: 0.92;
}

.projectTeam h2 {
    color: #00246B;
    font-size: 1.25vw;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 0.5vw;
    letter-spacing: 1px;
    font-weight: 500;
}

.projectTeam ul {
    list-style: disc inside;
    padding-left: 0;
    margin: 0;
}

.projectTeam li {
    color: #00246B;
    font-size: 1vw;
    font-family: 'Syne', sans-serif;
    margin-bottom: 0.3vw;
}

.projectDesc {
    flex: 2 1 60%;
    padding-right: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: justify;
}

.projectDesc h2 {
    color: #00246B;
    font-size: 1.3vw;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
    margin-bottom: 0.7vw;
    background-clip: text;
    font-weight: 500;
}

/* --- Project Overlay Close Button --- */
.project-overlay-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: #FCA311;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px #00246b22;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.project-overlay-close:hover {
    background: #00246B;
    color: #FCA311;
}

/* Responsive for close button */
@media (max-width: 600px) {
    .project-overlay-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .project-overlay-content {
        width: 90vw;
        max-width: 98vw;
        min-width: 0;
        height: fit-content;
        border-radius: 4vw;
    }
    #project-overlay-top {
        flex-direction: column;
        padding: 4vw 2vw 2vw 2vw;
    }

    #project-overlay-top h1 {
        font-size: 8vw;
        margin-bottom: 1vw;
    }

    #project-overlay-top video {
        width: 80%;
        height: 40vw;
        min-height: 90px;
        max-width: 80%;
    }
    #project-overlay-middle {
        flex-direction: column;
        gap: 1vw;
        padding: 2vw 3vw;
        justify-content: normal;
    }
    #project-overlay-bottom {
        flex-direction: column;
        gap: 1vw;
        padding: 2vw 3vw;
    }

    .project-middle-left,
    .project-middle-right {
        width: 100%;
        text-align: left;
    }

    .project-middle-left h1,
    .project-middle-right h1 {
        font-size: 3.5vw;
    }

    .projectDesc h2 {
        font-size: 4vw;
        margin-bottom: 1vw;
    }

    .projectDesc {
        flex: none;
        width: 100%;
        padding: 0;
    }

    .projectTeam {
        border-left: none;
        border-top: 2px solid #CADCFC;
        padding-left: 0;
        padding-top: 1vw;
        min-width: 0;
    }

    .projectTeam h2 {
        font-size: 3.5vw;
        margin-bottom: 1vw;
    }

    .projectTeam li {
        font-size: 3vw;
        margin-bottom: 0.8vw;
    }

    .sacramentoinfo {
        font-size: 8vw;
    }

    #elem img {
        display: none;
    }

    #nav-socials a{
        font-size: 5vw;
        line-height: .8;
    }
}



@media screen and (max-width: 768px) {

    #minicircle {
        display: none;
    }

    #landingPage {
        width: 100%;
        height: 100vh;
        background-color: #00246b;
        position: relative;
        padding-top: 55px;
    }

    #nav {
        color: white;
        padding: 15px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #CADCFC;
        background-color: #00246b;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    #nav a {
        font-weight: 585;
        color: white;
        text-decoration: none;
        font-size: 2vh;
        text-transform: uppercase;
    }

    #nav .menuDiv {
        margin-right: 2vh;
        width: max-content;
        display: flex;
        gap: 2vw;
        justify-content: space-between;
        align-items: center;
    }

    #nav .menuDiv h4 {
        display: none;
    }

    #baricon {
        width: 20px;
        height: 12px;
        cursor: pointer;
        position: relative;
        z-index: 1000;
    }

    #baricon::before,
    #baricon::after {
        content: '';
        position: absolute;
        right: 0;
        background-color: #CADCFC;
        transition: all 0.4s ease-in-out;
    }

    #baricon::before {
        width: 70%;
        top: 0;
        height: 2px;
    }

    #baricon::after {
        width: 70%;
        bottom: 0;
        height: 2px;
    }

    #baricon.active::before,
    #baricon.active::after {
        background-color: #00246b;
    }

    #baricon.active::before {
        transform: translateY(5px) rotate(45deg);
    }

    #baricon.active::after {
        transform: translateY(-5px) rotate(-45deg);
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        /* Full width on mobile */
        height: 100vh;
        background-color: #FCA311;
        transform: translateX(100%);
        transition: all 0.4s ease-in-out;
        z-index: 999;
    }

    #menu-overlay nav {
        display: flex;
        flex-direction: column;
        height: 70%;
        width: 100%;
    }

    #nav-socials {
        flex-direction: column;
        line-height: .5;
        font-size: 1vh;
    }

    #nav-socials a i {
        opacity: 1;
        align-items: flex-end;
    }

    #nav-bottom {
        height: 20%;
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding-bottom: 3vw;
        padding-left: 1vh;
        padding-right: 1vh;
    }

    #nav-video{
        width: 50%;
        height: 90%;
    }

    .mobile-menu {
        padding-top: 20vw;
        padding-left: 2vw;
    }

    .mobile-menu h1 a {
        font-size: 10vh;
        line-height: 115%;
    }

    #landingMain {
        width: 90%;
        height: fit-content;
        padding-top: 20px;
        padding-left: 10px;
        line-height: 1;
    }

    #landingMain h1 {
        font-size: clamp(5.5rem, 25vw, 6rem);
        line-height: 85%;
    }

    .hero-heading {
        font-size: 4.5vw;
        letter-spacing: 1px;
    }

    .sacramento {
        font-size: 6.5vh;
    }

    #landingfooter {
        width: 100%;
        margin-top: 7vh;
        justify-content: center;
        padding: 0;
        gap: 18vw;
    }

    .lfooter3 {
        margin-bottom: 1.3vw;
    }

    #slashtxt a {
        font-size: 1.7vh;
    }

    .slash-image {
        height: 10px;
    }

    .footer-link {
        font-size: 1.7vh;
    }

    #infopage {
        padding: 30px 45px;
        min-height: 50vh;
    }

    #infopage h2.splittext {
        font-size: 4.5vw !important;
        line-height: 1.3 !important;
        letter-spacing: 0.5px !important;
        text-align: center;
    }

    /* Hide Swiper behavior on mobile */
    .swiper-container,
    .swiper-wrapper {
        all: unset;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .swiper-slide {
        all: unset;
        display: block;
        border-radius: 12px;
        padding: 20px;
        /* border-left: 4px solid #fca311; */
        border-bottom: 1px solid #FCA311;
    }

    .swiper-slide h2 {
        font-size: 5vw;
        color: #fca311;
        margin-bottom: 10px;
    }

    .swiper-slide h3 {
        font-size: 4vw;
        color: white;
        line-height: 1.5;
    }

    #floatinghead {
        text-align: center;
        margin-bottom: 20px;
    }

    .scroll-item h1 {
        font-size: 6vw;
        color: white;
        margin: 0 auto;
        line-height: 1.3;
    }

    #domaindesc {
        margin-top: 30px;
        padding: 0 16px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    #domaindesc .data {
        width: 90%;
    }

    #domaindesc h2 {
        font-size: 4.2vw;
        color: white;
        text-align: center;
        line-height: 1.5;
    }

    #domaindesc h2 span {
        color: #fca311;
        font-weight: 700;
        font-size: 2.2vh;
    }

    /* Prevent scrolling overlap */
    body {
        overflow-x: hidden;
    }

    #page2 {
        padding-top: clamp(1vh, 1vh, 1vh);
    }

    .page2-heading {
        font-size: clamp(2vh, 5vh, 5vh);
        margin-bottom: 2vh;
        padding-right: 5vh;
    }

    #elem {
        width: 95%;
        height: calc(clamp(2vh, 4vh, 4vh) * 2.5);
        padding: clamp(1.5vh, 4vh, 4vh) 1.5vh;
    }

    #elem h1 {
        font-size: clamp(1.5vh, 4vh, 4vh);
    }

    #elem h4 {
        font-size: clamp(0.8vh, 1.2vh, 1.2vh);
    }

    #supporttop {
        height: 40%;
        width: 100%;
        display: flex;
    }


    #stop-left {
        height: 100%;
        width: 40%;
    }

    #stop-left h1 {
        font-family: 'Bebas Neue';
        color: #00246B;
        font-size: 8vh;
        line-height: 75%;
        letter-spacing: .5vh;
        padding: 0 1vh;
    }

    #stop-left h1 span {
        color: #FCA311;
        font-family: 'Sacramento';
        font-weight: 400;
        letter-spacing: normal;
    }

    #stop-right {
        height: 100%;
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-around;
        padding: 1vh 1vh;
    }

    #stop-right h2 {
        color: #00246B;
        font-size: 1.5vh;
        width: 70%;
        text-align: right;
    }

    #stop-right-p2 {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        gap: 1vh;
    }

    #stop-right-p2 h4 {
        padding: 3px 3px;
        font-size: 1.3vh;
    }

    #stop-right-p2 h4:hover::after {
        bottom: 0;
        border-radius: 0;
    }

    #stop-right-p2 h4 a {
        text-decoration: none;
        color: #00246B;
        position: relative;
        z-index: 9;
    }

    #stop-right-p2 h4:hover a {
        color: #CADCFC;
    }

    .sbox.shrunk {
        flex: 1 1 calc(10% - 8px);
        /* 50% of the original 20% */
    }

    #supportuspage {
        width: 100%;
        background-color: #CADCFC;
        margin-top: 10vh;
        height: 75vh;
    }

    #suppotbottom {
        margin-top: 100vh;
    }

    .sbox {
        flex: 1 1 calc(20% - 8px);
        height: 120px;
        min-width: 60px;
        overflow: hidden;
        transition: flex 0.6s ease;
    }

    .sbox.expanded {
        flex: 1 1 100%;
        z-index: 1;
    }

    .sbox-content,
    .sbox-hover {
        transition: opacity 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .sbox-content h2 {
        font-size: 1.3vh;
    }

    .sbox-hover h3 {
        font-size: 1.05vh;
    }

    .flip-card-back h2 {
        padding-top: .7vh;
        font-size: 1rem;
    }

    .flip-card-back .designation {
        font-size: 0.75rem;
        text-align: center;
    }

    .social-links-team a {
        font-size: 1.1rem;
    }

    .flip-card-back h2,
    .flip-card-back .designation,
    .social-links-team {
        width: 100%;
        text-align: left;

    }

    .social-links-team {
        display: flex;
        justify-content: left;
    }


    .flip-card {
        width: 100%;
        max-width: 100px;
        /* previously 160px */
        height: 260px;
        /* previously 220px */
    }

    img {
        max-width: 200%;
    }

    .flip-card-back {
        width: 100%;
        padding: 0;
    }

    #footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #footerleft {
        border-bottom: 1.5px solid #CADCFC;
        width: 100%;
        height: auto;
        padding-bottom: 20px;
    }

    #footerleft,
    #footeright {
        width: 90%;
        height: auto;
    }

    #footerleft h1 {
        font-size: clamp(2.5rem, 10vw, 5rem);
        padding: 5px 10px;
        line-height: 1;
    }

    #copyright {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    #copyright h4,
    .address {

        padding: 0 10px;
        font-size: 3.9vw;
    }

    #footeright h2 {
        padding-top: 30px;
        font-size: 1.5rem;
    }

    #email {
        flex-direction: column;
        padding: 20px 0;
        gap: 10px;
    }

    #mail {
        width: 80%;
        font-size: 1rem;
        padding: 10px 20px;
    }

    #btn {
        width: 45px;
        height: 45px;
    }

    #email i {
        font-size: 1.2rem;
    }

    .socials-heading {
        display: none;
    }

    .social-links {
        gap: 5vw;
        margin-bottom: 1vw;
    }

    .social-links a {
        font-size: 5.3vw;
    }

    .footer-bottom {
        gap: 10px;
        text-align: center;
    }

    .rights,
    .privacy {
        font-size: 0.85rem;
    }

}

@media screen and (max-width: 480px) {}

@media screen and (max-height: 600px) {}