:root {
    --font-khand: "Khand", sans-serif;
    --font-manrope: "Manrope", sans-serif;
    --font-outfit: "Outfit", sans-serif;
    --font-inter: "Inter", sans-serif;
}

.font-khand {
    font-family: var(--font-khand);
}

.font-manrope {
    font-family: var(--font-manrope);
}

.font-outfit {
    font-family: var(--font-outfit);
}

.font-inter {
    font-family: var(--font-inter);
}

.section-wrapper {
    position: relative;
    --max-width: 1520px;
    --padding: 1rem;
    width: min(var(--max-width), 100% - var(--padding) * 2);
    margin-inline: auto;
}

@media (max-width: 1600px) {
    .section-wrapper {
        --max-width: 1200px;
    }
}

@media (max-width: 1300px) {
    .section-wrapper {
        --max-width: 1120px;
    }
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/satoshi/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/satoshi/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../font/satoshi/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Preeti';
    src: url('../font/preeti/Preeti-Normal.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Preeti';
    src: url('../font/preeti/Preeti-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'KalpanaUttam';
    src: url('../font/KalpanaUttam\ i\ Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@theme {
    --font-satoshi: 'Satoshi', sans-serif;
    --font-preeti: 'Preeti', sans-serif;
    --font-kalpana: 'KalpanaUttam', sans-serif;
}

@layer utilities {
    .font-satoshi {
        font-family: 'Satoshi', sans-serif;
    }

    .font-preeti {
        font-family: 'Preeti', sans-serif;
    }

    .font-kalpana {
        font-family: 'KalpanaUttam', sans-serif;
    }
}

.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 9999;
    transition: all 400ms ease-in-out;
}

.app-header.sticky-header {
    backdrop-filter: blur(6px);
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.app-header .section-wrapper {
    transition: all 400ms ease-in-out;
}

.app-header.sticky-header .section-wrapper {
    padding-block: 0;
}

.app-header.sticky-header .section-wrapper nav {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.app-header.sticky-header .primary-navigation {
    border: none;
    border-radius: 0;
}

.nav-item {
    font-size: clamp(0.875rem, 0.5955rem + 0.4367vw, 1.125rem);
    font-weight: bolder;
    text-transform: uppercase;
}

.app-header.sticky-header .header-logo {
    padding-bottom: 0px !important;
}

.app-header.sticky-header .header-logo>div {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.nav-item a {
    text-decoration: none;
    color: inherit;
}

/* ==================== HAMBURGER BUTTON ==================== */
.hamburger i {
    transition: transform 0.3s ease;
}

.nav-items.active+.hamburger i {
    transform: rotate(90deg);
}

.dropdown-menu li {
    padding-block: 10px;
}

@media (max-width: 900px) {
    .primary-navigation {
        background: #006899 !important;
    }

    .app-header:has(.primary-navigation nav.nav-active) {
        height: 100%;
    }

    .app-header.sticky-header {
        backdrop-filter: blur(6px);
        background-color: rgba(255, 255, 255, 0.9);
    }

    .app-header .section-wrapper {
        max-width: 100%;
        width: 100%;
        padding-block: 0;
    }

    .app-header.sticky-header .section-wrapper {
        padding-block: 0;
    }

    .primary-navigation {
        border-radius: 0;
        border: none;
    }

    .primary-navigation nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: translateY(-200%);
        opacity: 0;
        background-color: white !important;
        z-index: 10;
        transition: transform 0.4s ease, opacity 0.4s ease;
        border-radius: 0;
        border: none;
        overflow-y: scroll;
    }

    .primary-navigation nav.nav-active {
        transform: translateY(0);
        opacity: 1;
    }

    .primary-navigation nav .nav-items {
        width: 100%;
    }

    .primary-navigation nav {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        padding-top: 100px;
    }

    .nav-item {
        padding-block: 20px;
        padding-left: 20px;
        border-bottom: 1px solid #e2e2e2;
    }

    .nav-item {
        font-size: 18px;
        width: 100%;
    }

    .dropdown-menu {
        transition: all 300ms ease-in-out;
        background-color: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu.open {
        max-height: 500px;
        opacity: 100;
        opacity: 1;
        visibility: visible;
        padding-top: 20px;
    }

    .dropdown-menu li:not(:last-child) {
        padding-block: 20px;
        border-bottom: 1px solid #e2e2e2;
    }

    .dropdown-menu li:last-child {
        padding-top: 20px;
    }
}

.primary-navigation {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.48) 100%);
}

.landing-section {
    background: linear-gradient(180deg, rgba(120, 184, 215, 0.1) 0%, rgba(221, 221, 221, 0) 100%);
}

.gradient-text {
    background: linear-gradient(90deg, #0094DA 0%, #006899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.gradient-btn {
    background: linear-gradient(180deg, #66BFE9 0%, #0085C4 100%);
}

/* Allow slides to touch edges */
.video-slider .slick-list {
    overflow: hidden;
    padding: 0 !important;
}

/* Remove default slide spacing */
.video-slider .slick-slide {
    padding: 0 !important;
    transform: scale(.8);
    transition: all 0.4s ease-in-out;
    margin: 0;
}

/* Center slide scaling */
.video-slider .slick-center {
    transform: scale(1);
    z-index: 2;
}

@media (max-width:770px) {
    .video-slider .slick-current.slick-active {
        transform: scale(0.8);
    }
}

.video-slider {
    margin: 0 auto;
    max-width: 100%;
}

.video-slider iframe {
    border-radius: 1rem;
}

.card-bg {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.bg-temple {
    background: url('../image/dattatraya.svg') no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: 0;
}