* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

:root {
    --bs-primary: #0A1A3A;
    /* Deep Luxury Navy */
    --bs-secondary: #3A5BCF;
    /* Polished Sapphire / Indigo */
    --bs-tertiary: #D4AF37;
    /* Premium Gold */

    --bs-body-bg: #ECE7E1;
    /* Soft Warm Ivory */
    --bs-body-color: #4A4A4A;
    /* Rich Dark Grey */
    --bs-gray-color: #4A4A4A12;
    /* Translucent grey */

    --bs-notification: #D4AF37;
    /* Gold Accent */
    --bs-bg-card: #F2EEE9;
    /* Soft Card Beige */
}



@font-face {
    font-family: 'Title';
    src: url('../fonts/Teko-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Normal';
    src: url('../fonts/TiroDevanagariMarathi-Regular.ttf') format('truetype');
}


body {
    width: 100%;
    background-color: var(--bs-body-bg);
    color: black;
    font-family: 'Normal';
    position: relative;
    overflow-x: hidden;
}

.bg-card {
    background-color: var(--bs-bg-card);
}

footer {
    background-color: var(--bs-primary);
}

.notification {
    color: var(--bs-notification);
}

.navbar-link {
    color: white;
    font-weight: 700;
}


.primary-color {
    background-color: var(--bs-primary);
}

.text-color-primary {
    color: var(--bs-primary);
}

.font-title {
    font-family: 'Title';
    color: black;
}

.font-title-english {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: black;
}

.emblem-img {
    width: 75px;
    aspect-ratio: 3/5;
}


.logo-img {
    width: 100px;
    aspect-ratio: 1;
}

@media (max-width: 576px) {

    .emblem-img {
        width: 75px;
        aspect-ratio: 3/4;
    }

    .logo-img {
        width: 75px;
        aspect-ratio: 1;
    }
}

.carousel-img {
    width: 100%;
    max-height: 600px;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

.carousel-inner {
    background-color: #f8f9fa;
}

.member-img-parent {
    background: linear-gradient(to bottom, #3F51AF, #49AFFF);
}

.member-img {
    object-position: center;
}

.member-card {
    min-height: 250px;
}

.card-top {
    height: 30%;
}


.card-img-parent {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: white;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.card-img {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    object-fit: contain;
    border: none;
    background-color: #9ecefb;


}

.card-description {
    position: absolute;
    width: 100%;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#mobile-menu {
    position: fixed;
    width: 95%;
    height: 100vh;
    top: 0;
    left: -95%;
    background-color: white;
    transition: left 0.5s ease-in-out;
    overflow-y: auto;
    z-index: 1000;
}


.map-container {
    max-height: 600px;
    height: 60vh;
}

.post-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow-y: hidden;
}

.loadin {
    opacity: 0;
    transform: translateY(45px);
    transition: transform 0.6s, opacity 0.9s;

    &.loaded {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0s;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(0%) brightness(0);
}


.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


#google_translate_element {
    /* max-width: 190px; */
    /* overflow: hidden; */
    height: 40px;
}


.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}




.translate-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #f8f9fb;
    border: 1px solid #e1e4ea;
    border-radius: 8px;
    width: fit-content;
    font-family: "Inter", sans-serif;
}

.translate-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Optional: improve Google Translate dropdown appearance */
.goog-te-gadget {
    font-size: 0 !important;
    /* Hide default label */
}

.goog-te-gadget select {
    font-size: 14px !important;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    outline: none;
    cursor: pointer;
}

.goog-te-gadget select:hover {
    border-color: #999;
}