:root {
    --white: #ffffff;
    --whiteish: #fff9f2;
    --yellow: #f9db4a;
    --pink: #e0628e;
    --blue: #3478ed;
    --black: #000000;
    --grey: #d9d9d9;
    --grey2: #d9d9d9;
}
.test {
}
.test-line-container {
    width: 100%;
    display: none !important;
}
.test-line {
    position: absolute;
    z-index: 10000;
    border: dotted 1px black;
    height: 100%;
    width: 95%;
    max-width: 1500px;
}
/* will delete later */

/* Remove Bootstrap's default margins and padding for full screen */
.screen.row {
    margin-left: 0;
    margin-right: 0;
}

.screen .col,
.screen .col-lg-3 {
    padding-left: 0;
    padding-right: 0;
}

.white {
    background-color: var(--white);
}
.yellow {
    background-color: var(--yellow);
}
.pink {
    background-color: var(--pink);
}
.blue {
    background-color: var(--blue);
}
.black {
    background-color: var(--black);
}
.whiteish {
    background-color: var(--whiteish);
}
.whiteishblue {
    background-color: var(--whiteishblue);
}
.whiteish-text {
    color: var(--whiteish);
}
.no-a {
    text-decoration: none;
}
.full-page-section {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
}
.section {
    min-height: 70vh;
    min-height: 70dvh;
    width: 100%;
}
.full-main-page {
    height: calc(100vh);
    height: calc(100dvh);
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-image: url("../img/mainImg/Artboard 4.webp");
}
/* Tablet/iPad - Medium screens */
@media screen and (max-width: 1024px) {
    .full-main-page {
        background-image: url("../img/mainImg/Artboard 4 copy.webp");
    }
}

/* Mobile - Small screens */
@media screen and (max-width: 768px) {
    .full-main-page {
        background-image: url("../img/mainImg/Artboard 4 copy 2.webp");
    }
}

/* md device */
@media (max-width: 991px) {
    .contact-info {
        justify-content: start !important;
    }
}

.navbar {
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    width: 95%;
    max-width: 1500px;
    border: solid 1px black;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 40px;
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
}
.navbar-margin {
    padding-top: 100px;
}
/* Fix for mobile dropdown background */
.navbar-collapse {
}

/* Alternative: More specific targeting if needed */
.navbar .navbar-collapse.show {
}
.navbar-submission-button {
    border: solid 1px black;
    background: var(--blue);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    width: 100%;
    text-align: center;
    align-items: center;
    color: var(--white);
    font-weight: 500;
    padding: 10px 20px;
    font-size: 18px;
}
.navbar-submission-button:hover,
.navbar-submission-button.active {
    background: rgb(25, 69, 158);
    color: white;
}
.navbar-submission {
    margin-right: -20px;
}
/* Ensure the dropdown content area has yellow background */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.6);
        padding: 1rem;
        border-radius: 20px;
        margin-top: 20px;
        margin-left: -1px;
        margin-right: -1px;
        padding-bottom: 20px;
        border: solid 1px black;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    }

    .nav-item > .nav-link {
        color: #333;
    }
    .nav-item.active > .nav-link {
        color: #000000;
    }
    .navbar-submission {
        margin-right: 0 !important;
        width: 100%;
    }
    .navbar-submission-button {
        width: 100%;
    }
}

.nav-item {
    font-weight: 500;
    font-size: 18px;
}
.nav-item:hover,
.nav-item.active {
    font-weight: 700;
}

.line {
    border-top: 1px solid var(--black);
}
.grey-line2 {
    border-top: 2px solid var(--grey2);
}
.relative {
    display: relative;
}
.absolute {
    display: absolute;
}
.senara-logo {
    height: 100%;
    width: 20px;
}
.section-title {
    color: var(--whiteish);
    font-weight: 600;
    text-align: left;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}
.section-title-content {
    font-size: clamp(40px, 5vw, 80px);
    width: 95%;
    max-width: 1500px;
}
.running-line-wrapper {
    margin: auto;
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--whiteish);
    background-color: var(--pink);
}

.running-line {
    display: flex;
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
    white-space: nowrap;
    animation: scroll-left linear infinite;
}
.running-line-logo {
    height: clamp(36px, 8vw, 80px);
    width: auto;
    flex-shrink: 0;
}
.running-line2 {
    font-size: 30px;
    font-family: sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    animation: scroll-left linear infinite;
}

/* Default animation - will be overridden by JavaScript */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.box-shadow {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.footer-container {
    background-color: var(--blue);
    padding: 10px 0px;
}
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    color: var(--whiteish);
}
.footer-content {
    width: 90%;
    max-width: 1500px;
    margin-top: 20px;
}
.senara-footer-logo {
    text-align: left;
    margin-bottom: 5px;
}
.footer-text {
    font-size: 15px;
}
.footer-link-section {
    font-size: 15px;
    margin-right: 20px;
    margin-left: 20px;
}
.footer-link a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
}
.footer-link a:hover {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}
.contact-value {
    font-size: 15px;
    color: white;
    font-weight: 500;
}

.contact-value a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-value a:hover {
    opacity: 0.8;
}

.mb14 {
    margin-bottom: 14px;
}
.footer-title {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 600;
    color: var(--whiteish);
    letter-spacing: 0.5px;
    position: relative;
}
.footer-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}
.contact-info {
    display: flex;
    justify-content: end;
}
.footer-menu {
    display: flex;
    justify-content: center;
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 24px;
    margin-top: 24px;
    text-align: center;
}
.footer-menu2 {
    display: flex;
    justify-content: center;
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 12px;
    margin-top: 14px;
    text-align: center;
}
.footer-menu-content {
    padding-left: calc(5px + 1vw);
    padding-right: calc(5px + 1vw);
}
.bottom-footer {
    margin-top: 20px;
}
.fw200 {
    font-weight: 200;
}
.footer-social-container {
    text-align: end;
    margin-bottom: 5px;
}
.footer-social {
    color: var(--whiteish);
    font-size: 24px;
}
.copyright-container {
    margin-bottom: 5px;
    padding-top: 5px;
}
.ambient-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(255, 182, 193, 0.1) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(173, 216, 230, 0.125) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(255, 228, 196, 0.15) 0%,
            transparent 60%
        );
    filter: blur(20px);
}
.silent-text {
    color: rgba(255, 255, 255, 0.8);
}
.footer-title2 {
    letter-spacing: 0.5px;
}
/* Responsive font sizes */
@media (max-width: 768px) {
    .running-line-logo {
        height: clamp(28px, 12vw, 60px);
    }
    .footer-social-container {
        text-align: start;
    }
}

@media (max-width: 480px) {
    .running-line-logo {
        height: clamp(24px, 14vw, 48px);
    }
}
