.content {
    min-height: calc(90vh - 100px);
}

:root {
    --primary-rgb: 16, 91, 122;
    --primary-color: #105B7A;
    --secondary-color: #5CA793;
    --accent-color: #5CA793;
    --light-bg: #f4fcfc;
    --dark-text: #1a2e35;
    --light-text: #5a6e75;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(16, 91, 122, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --gradient-primary: linear-gradient(135deg, #105B7A 0%, #0a3d52 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.navbar-creative {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #008A8D;
}

    .navbar-creative.scrolled {
        background: #105B7A;
        backdrop-filter: blur(10px);
        padding: 10px 0;
        box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        width: 90%;
        margin: 20px auto 0;
        border-radius: 50px;
        left: 0;
        right: 0;
        position: fixed;
        top: 0;
        border: 1px solid rgba(255,255,255,0.1);
    }

.navbar-brand-modern {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-creative.scrolled .navbar-brand-modern {
    color: #ffffff !important;
}

.navbar-brand-icon {
    /*background: #5CA793;*/
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    /*transform: rotate(-10deg);
    transition: transform 0.3s ease;*/
}

/*.navbar-brand-modern:hover .navbar-brand-icon {
    transform: rotate(0deg) scale(1.1);
    background: #ffffff;
    color: #105B7A;
}*/

.nav-link-modern {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 5px;
    padding: 8px 16px !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-creative.scrolled .nav-link-modern {
    color: #ffffff !important;
}

.nav-link-modern:hover, .nav-link-modern.active {
    background: #5CA793;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(92, 167, 147, 0.4);
}

.navbar-creative.scrolled .nav-link-modern:hover,
.navbar-creative.scrolled .nav-link-modern.active {
    background: #5CA793;
    color: white !important;
    box-shadow: 0 4px 15px rgba(92, 167, 147, 0.4);
}

.btn-login-nav {
    background: #fff;
    color: #105B7A !important;
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 25px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .btn-login-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        background: #f8f9fa;
    }

.navbar-creative.scrolled .btn-login-nav {
    background: #ffffff;
    color: #105B7A !important;
}

    .navbar-creative.scrolled .btn-login-nav:hover {
        background: #5CA793;
        color: white !important;
    }

.glass-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 20px;
    padding-left: 20px;
    transition: all 0.3s ease;
}

    .glass-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .glass-input:focus {
        background: rgba(255, 255, 255, 0.2);
        border-color: #5CA793;
        color: #fff;
        box-shadow: 0 0 15px rgba(92, 167, 147, 0.3);
        outline: none;
    }

.navbar-creative.scrolled .glass-input {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

    .navbar-creative.scrolled .glass-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

.btn-search-custom {
    border-radius: 20px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    transition: all 0.3s ease;
}

    .btn-search-custom:hover {
        background: #5CA793;
        color: white;
        border-color: #5CA793;
    }

.navbar-creative.scrolled .btn-search-custom {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

    .navbar-creative.scrolled .btn-search-custom:hover {
        background: #5CA793;
        color: white;
        border-color: #5CA793;
    }

.dropdown-menu-creative {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 15px;
    padding: 10px;
    border-top: 3px solid #105B7A;
}

.dropdown-item {
    border-radius: 10px;
    padding: 8px 15px;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #1a2e35;
}

    .dropdown-item:hover {
        background: rgba(92, 167, 147, 0.1);
        color: #105B7A;
        transform: translateX(5px);
    }

.dropdown-divider {
    border-top-color: rgba(0,0,0,0.1);
    margin: 8px 0;
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    color: white;
}

.navbar-creative.scrolled .navbar-toggler {
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/*.hero-carousel {
    margin-top: 78px;
}*/

    .hero-carousel .carousel-item {
        height: auto;
        min-height: auto;
        background-color: transparent;
    }

        .hero-carousel .carousel-item img {
            height: auto;
            width: 100%;
        }

.hero-caption {
    bottom: 25%;
    z-index: 10;
}

    .hero-caption h5 {
        font-family: 'Noto Sans Devanagari', sans-serif;
        font-size: 3.5rem;
        font-weight: 700;
        color: #fff;
        text-shadow: 0 4px 10px rgba(0,0,0,0.5);
        margin-bottom: 20px;
        opacity: 0;
        animation: slideInDown 1s ease-out forwards;
    }

    .hero-caption p {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.9);
        font-weight: 300;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0;
        animation: slideInUp 1s ease-out 0.3s forwards;
    }

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    margin: 0 5px;
    background-color: var(--accent-color);
    border: none;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    width: 60px;
    opacity: 1;
    transform: scale(1.1);
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

    .carousel-control-prev:hover, .carousel-control-next:hover {
        opacity: 1;
    }

.carousel-control-icon-bg {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-icon-bg,
.carousel-control-next:hover .carousel-control-icon-bg {
    background: var(--accent-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    /*.hero-carousel .carousel-item {
        height: 70vh;
    }*/

    .hero-caption h5 {
        font-size: 2rem;
    }

    .hero-caption p {
        font-size: 1rem;
    }

    .carousel-caption {
        bottom: 20%;
    }
}

.footer {
    background: linear-gradient(to right, #105B7A, #0e4b65);
    color: #ffffff;
    padding: 35px 0 0px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

    .footer::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
        animation: rotateGlow 20s linear infinite;
        pointer-events: none;
    }

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.footer-links {
    list-style-type: none;
    padding-left: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-links a:hover {
            color: #5CA793;
            transform: translateX(5px);
            text-shadow: 0 0 10px rgba(92, 167, 147, 0.4);
        }

.social-link {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: white !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-right: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--brand-color, #555);
        z-index: -1;
        transform: translateY(100%);
        transition: transform 0.4s ease;
    }

    .social-link:hover::before {
        transform: translateY(0);
    }

    .social-link:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        border-color: transparent;
    }

.social-facebook {
    --brand-color: #3b5998;
}

.social-twitter {
    --brand-color: #1da1f2;
}

.social-instagram {
    --brand-color: #e1306c;
}

.social-youtube {
    --brand-color: #ff0000;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.acc-trigger-btn {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

    .acc-trigger-btn:hover {
        transform: translateY(-50%) scale(1.1) rotate(15deg);
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        box-shadow: 0 0 20px rgba(16, 91, 122, 0.6);
    }

    .acc-trigger-btn::after {
        content: '';
        position: absolute;
        top: -5px;
        bottom: -5px;
        left: -5px;
        right: -5px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.5);
        opacity: 0;
        animation: pulse-ring 2s infinite;
    }

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.acc-panel {
    position: fixed;
    top: 50%;
    right: 90px;
    transform: translateY(-50%) translateX(50px);
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 10000;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.8);
}

    .acc-panel.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }

.acc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acc-control-group {
    margin-bottom: 20px;
    background: rgba(255,255,255,0.5);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
}

.acc-control-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: #888;
}

.resize-btn-group {
    display: flex;
    gap: 8px;
}

.resize-btn {
    flex: 1;
    background: white;
    border: 1px solid #eee;
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    color: #333;
}

    .resize-btn:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.contrast-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s;
}

    .contrast-toggle:hover {
        border-color: var(--accent-color);
    }

    .contrast-toggle.active {
        background: #222;
        color: #ffff00;
        border-color: #222;
    }

.goog-te-gadget-simple {
    background: white !important;
    border: 1px solid #eee !important;
    padding: 10px !important;
    border-radius: 10px !important;
    width: 100% !important;
}

body.high-contrast {
    background-color: #000 !important;
    color: #ffff00 !important;
}

    body.high-contrast img {
        filter: grayscale(100%) !important;
    }

    body.high-contrast .navbar-creative.scrolled,
    body.high-contrast .acc-panel,
    body.high-contrast .footer {
        background: #000 !important;
        border: 2px solid #ffff00 !important;
    }

    body.high-contrast h1, body.high-contrast h2, body.high-contrast h3,
    body.high-contrast h5, body.high-contrast p, body.high-contrast a,
    body.high-contrast i {
        color: #ffff00 !important;
    }

    body.high-contrast .btn-custom,
    body.high-contrast .acc-trigger-btn,
    body.high-contrast .lang-btn {
        background: #ffff00 !important;
        color: #000 !important;
        font-weight: bold;
    }

.lang-tabs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.lang-btn {
    flex: 1;
    padding: 8px 5px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    color: #444;
    text-align: center;
}

    .lang-btn:hover, .lang-btn.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-balloon-frame,
.skiptranslate,
.goog-tooltip,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

body {
    top: 0px !important;
}

@media (max-width: 576px) {
    .acc-panel {
        width: 90%;
        right: 5%;
        left: 5%;
        transform: translateY(-50%) scale(0.9);
    }

        .acc-panel.active {
            transform: translateY(-50%) scale(1);
        }
}
