:root {
    --primary: #1DB954;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}

.loading-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 8px;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
}

.btn {
    font-weight: 500;
    transition: .5s;
}

.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    color: rgba(255, 255, 255, .7);
}

.hero-header {
    margin-top: -75px;
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}

/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** Team Section ***/
.team-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}

.team-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 188, 156, 0.05) 0%, rgba(52, 152, 219, 0.05) 50%, rgba(155, 89, 182, 0.05) 100%);
    z-index: 1;
}

.team-container {
    position: relative;
    z-index: 2;
}

.team-floating-area {
    position: relative;
    height: 70vh;
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
}

/* Flowing Curved Ribbons */
.curved-ribbon {
    position: absolute;
    width: 400px;
    height: 200px;
    border-radius: 100px;
    opacity: 0.6;
    z-index: 2;
}

.ribbon-1 {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.3) 0%, rgba(22, 160, 133, 0.3) 100%);
    top: 10%;
    right: 10%;
    transform: rotate(-15deg);
    animation: flow-ribbon-1 20s ease-in-out infinite;
}

.ribbon-2 {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.3) 0%, rgba(230, 126, 34, 0.3) 100%);
    bottom: 20%;
    left: 5%;
    transform: rotate(25deg);
    animation: flow-ribbon-2 18s ease-in-out infinite;
}

.ribbon-3 {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3) 0%, rgba(192, 57, 43, 0.3) 100%);
    top: 40%;
    left: 30%;
    transform: rotate(-35deg);
    animation: flow-ribbon-3 22s ease-in-out infinite;
}

.ribbon-4 {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.3) 0%, rgba(142, 68, 173, 0.3) 100%);
    bottom: 10%;
    right: 25%;
    transform: rotate(45deg);
    animation: flow-ribbon-4 16s ease-in-out infinite;
}

.ribbon-5 {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.3) 0%, rgba(41, 128, 185, 0.3) 100%);
    top: 25%;
    left: 10%;
    transform: rotate(15deg);
    animation: flow-ribbon-5 24s ease-in-out infinite;
}

@keyframes flow-ribbon-1 {
    0%, 100% { transform: rotate(-15deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.05); }
    50% { transform: rotate(-20deg) scale(0.95); }
    75% { transform: rotate(-12deg) scale(1.02); }
}

@keyframes flow-ribbon-2 {
    0%, 100% { transform: rotate(25deg) scale(1); }
    25% { transform: rotate(30deg) scale(0.98); }
    50% { transform: rotate(20deg) scale(1.08); }
    75% { transform: rotate(28deg) scale(0.96); }
}

@keyframes flow-ribbon-3 {
    0%, 100% { transform: rotate(-35deg) scale(1); }
    25% { transform: rotate(-30deg) scale(1.06); }
    50% { transform: rotate(-40deg) scale(0.94); }
    75% { transform: rotate(-33deg) scale(1.03); }
}

@keyframes flow-ribbon-4 {
    0%, 100% { transform: rotate(45deg) scale(1); }
    25% { transform: rotate(50deg) scale(0.97); }
    50% { transform: rotate(40deg) scale(1.09); }
    75% { transform: rotate(47deg) scale(0.99); }
}

@keyframes flow-ribbon-5 {
    0%, 100% { transform: rotate(15deg) scale(1); }
    25% { transform: rotate(20deg) scale(1.04); }
    50% { transform: rotate(10deg) scale(0.92); }
    75% { transform: rotate(18deg) scale(1.07); }
}

.floating-team-member {
    position: absolute;
    text-align: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Mobile performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    /* Enhanced visual separation */
    padding: 10px;
    border-radius: 50%;
}

.floating-team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto 15px;
    /* Enhanced visual separation */
    position: relative;
    z-index: 10;
}

.floating-team-member:hover img {
    transform: scale(1.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border-color: var(--primary);
    border-width: 6px;
    z-index: 20; /* Bring hovered element to front */
}

.floating-team-member h5 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.floating-team-member:hover h5 {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.team-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.team-header h1 {
    color: var(--dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-header .btn {
    background: linear-gradient(45deg, #1abc9c, #3498db);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(26, 188, 156, 0.3);
}

/* Dragging states */
.floating-team-member {
    cursor: grab;
}

.floating-team-member:active {
    cursor: grabbing;
}

.floating-team-member.dragging {
    cursor: grabbing;
    z-index: 1000 !important;
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.floating-team-member.dragging img {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
    border-width: 5px;
}

.floating-team-member.dragging h5 {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Prevent text selection during drag */
.floating-team-member {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Mobile drag restrictions */
@media (max-width: 768px) {
    .floating-team-member {
        cursor: default;
        pointer-events: auto;
    }
    
    .floating-team-member:active {
        cursor: default;
    }
}

.floating-member-1 {
    top: 15%;
    left: 10%;
    animation: float-bubble-1 12s ease-in-out infinite;
}

.floating-member-2 {
    top: 25%;
    right: 15%;
    animation: float-bubble-2 15s ease-in-out infinite 2s;
}

.floating-member-3 {
    bottom: 30%;
    left: 20%;
    animation: float-bubble-3 18s ease-in-out infinite 4s;
}

.floating-member-4 {
    bottom: 20%;
    right: 25%;
    animation: float-bubble-4 14s ease-in-out infinite 6s;
}

.floating-member-5 {
    top: 45%;
    left: 45%;
    animation: float-bubble-5 16s ease-in-out infinite 8s;
}

.floating-member-6 {
    top: 35%;
    right: 35%;
    animation: float-bubble-6 13s ease-in-out infinite 1.5s;
}

.floating-member-7 {
    top: 60%;
    left: 15%;
    animation: float-bubble-7 17s ease-in-out infinite 3.5s;
}

.floating-member-8 {
    bottom: 40%;
    left: 40%;
    animation: float-bubble-8 15s ease-in-out infinite 5.5s;
}

.floating-member-9 {
    top: 20%;
    left: 60%;
    animation: float-bubble-9 14s ease-in-out infinite 7.5s;
}

.floating-member-10 {
    bottom: 15%;
    right: 40%;
    animation: float-bubble-10 19s ease-in-out infinite 9.5s;
}

@keyframes float-bubble-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(15px, -10px) scale(1.1);
    }
    50% {
        transform: translate(-8px, -20px) scale(0.9);
    }
    75% {
        transform: translate(25px, -5px) scale(1.05);
    }
}

@keyframes float-bubble-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-20px, 12px) scale(0.85);
    }
    50% {
        transform: translate(-30px, -8px) scale(1.15);
    }
    75% {
        transform: translate(-10px, 22px) scale(0.95);
    }
}

@keyframes float-bubble-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(22px, -12px) scale(1.08);
    }
    50% {
        transform: translate(35px, 5px) scale(0.92);
    }
    75% {
        transform: translate(12px, -25px) scale(1.12);
    }
}

@keyframes float-bubble-4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-25px, -12px) scale(0.88);
    }
    50% {
        transform: translate(-15px, 20px) scale(1.18);
    }
    75% {
        transform: translate(-35px, 2px) scale(0.95);
    }
}

@keyframes float-bubble-5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-12px, -22px) scale(1.1);
    }
    50% {
        transform: translate(20px, -30px) scale(0.9);
    }
    75% {
        transform: translate(27px, -12px) scale(1.05);
    }
}

@keyframes float-bubble-6 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-22px, 15px) scale(0.93);
    }
    50% {
        transform: translate(-10px, -25px) scale(1.12);
    }
    75% {
        transform: translate(-30px, 7px) scale(0.97);
    }
}

@keyframes float-bubble-7 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(27px, -15px) scale(1.07);
    }
    50% {
        transform: translate(12px, 22px) scale(0.89);
    }
    75% {
        transform: translate(35px, -7px) scale(1.13);
    }
}

@keyframes float-bubble-8 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-17px, -20px) scale(0.91);
    }
    50% {
        transform: translate(25px, -27px) scale(1.16);
    }
    75% {
        transform: translate(-27px, -10px) scale(0.94);
    }
}

@keyframes float-bubble-9 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-30px, 12px) scale(1.09);
    }
    50% {
        transform: translate(-15px, -35px) scale(0.87);
    }
    75% {
        transform: translate(-40px, 5px) scale(1.04);
    }
}

@keyframes float-bubble-10 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, 17px) scale(0.96);
    }
    50% {
        transform: translate(-25px, 27px) scale(1.14);
    }
    75% {
        transform: translate(32px, 7px) scale(0.92);
    }
}

.floating-team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto 15px;
    /* Enhanced visual separation */
    position: relative;
    z-index: 10;
}

.floating-team-member:hover img {
    transform: scale(1.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border-color: var(--primary);
    border-width: 6px;
    z-index: 20; /* Bring hovered element to front */
}

/* Touch-friendly interactions for mobile */
@media (hover: none) and (pointer: coarse) {
    .floating-team-member:active img {
        transform: scale(1.1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        border-color: var(--primary);
        border-width: 4px;
    }
    
    .floating-team-member:active h5 {
        background: var(--primary);
        color: #fff;
        transform: translateY(-3px);
    }
}

.floating-team-member h5 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.floating-team-member:hover h5 {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.team-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.team-header h1 {
    color: var(--dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-header p {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-header .btn {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    border: 1px solid var(--primary);
}

/* Background decorative elements */
.floating-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float-bg-bubble 10s infinite ease-in-out;
}

.bubble-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(26, 188, 156, 0.3), rgba(22, 160, 133, 0.3));
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.bubble-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.3), rgba(41, 128, 185, 0.3));
    top: 10%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(155, 89, 182, 0.3), rgba(142, 68, 173, 0.3));
    bottom: 15%;
    left: 8%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.bubble-4 {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(241, 196, 15, 0.3), rgba(243, 156, 18, 0.3));
    bottom: 25%;
    right: 12%;
    animation-delay: 1s;
    animation-duration: 14s;
}

@keyframes float-bg-bubble {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    .team-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .team-floating-area {
        height: auto;
        min-height: 50vh;
        padding: 20px 0;
    }
    
    .floating-team-member {
        position: relative !important;
        display: inline-block;
        margin: 15px 8px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        animation: float-mobile 4s ease-in-out infinite;
    }
    
    .floating-team-member img {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .floating-team-member h5 {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .team-header h1 {
        font-size: 2rem;
    }
    
    .team-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .floating-bubbles .bubble {
        transform: scale(0.5);
        opacity: 0.15;
    }
    
    .team-floating-area {
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .team-section {
        padding: 40px 0;
    }
    
    .team-header h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .team-header p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .floating-team-member {
        margin: 12px 5px;
    }
    
    .floating-team-member img {
        width: 90px;
        height: 90px;
        border-width: 2px;
    }
    
    .floating-team-member h5 {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .team-floating-area {
        min-height: 40vh;
        padding: 15px 0;
    }
    
    .floating-bubbles .bubble {
        display: none; /* Hide background bubbles on very small screens */
    }
}

/* Large phones and small tablets (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .floating-team-member img {
        width: 110px;
        height: 110px;
    }
    
    .floating-team-member h5 {
        font-size: 15px;
    }
}

/* Medium tablets (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .team-floating-area {
        height: 60vh;
    }
    
    .floating-team-member img {
        width: 130px;
        height: 130px;
    }
    
    /* Reduce animation range for medium screens */
    @keyframes float-bubble-1 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(30px, -20px) scale(1.05); }
        50% { transform: translate(-15px, -40px) scale(0.95); }
        75% { transform: translate(50px, -15px) scale(1.02); }
    }
    
    @keyframes float-bubble-2 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(-40px, 25px) scale(0.9); }
        50% { transform: translate(-60px, -20px) scale(1.08); }
        75% { transform: translate(-20px, 45px) scale(0.98); }
    }
    
    @keyframes float-bubble-3 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(45px, -30px) scale(1.04); }
        50% { transform: translate(70px, 15px) scale(0.94); }
        75% { transform: translate(25px, -50px) scale(1.06); }
    }
    
    @keyframes float-bubble-4 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(-50px, -25px) scale(0.92); }
        50% { transform: translate(-30px, 40px) scale(1.1); }
        75% { transform: translate(-70px, 5px) scale(0.97); }
    }
    
    @keyframes float-bubble-5 {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(-25px, -45px) scale(1.05); }
        50% { transform: translate(40px, -60px) scale(0.93); }
        75% { transform: translate(55px, -25px) scale(1.03); }
    }
}

@keyframes float-mobile {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.map-logo {
    width: 45px;  /* Desktop: Standard size */
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* Ensure proper text alignment */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 768px) {
    .map-logo {
        width: 32px;  /* Smaller logo on mobile */
        height: 32px;
    }

    .logo-text h1 {
        font-size: 20px;  /* Reduce MMC-MAP size */
    }

    .logo-text h6 {
        font-size: 10px;  /* Reduce AI Robotics Club text size */
    }
}

