﻿:root {
    --color-theme-1: #14100D;
    --color-theme-2: #441A05;
    --color-theme-7: #F9F5EA;
    --color-theme-9: #FFFFFF;
}

.text-primary {
    color: var(--color-theme-1);
}

.bg-primary {
    background-color: var(--color-theme-1);
}

.text-secondary {
    color: var(--color-theme-2);
}

.bg-secondary {
    background-color: var(--color-theme-2);
}

.text-light {
    color: var(--color-theme-7);
}

.bg-light {
    background-color: var(--color-theme-7);
}

.text-white {
    color: var(--color-theme-9);
}

.bg-white {
    background-color: var(--color-theme-9);
}

.font-kumbh {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 700;
}

.font-nunito {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-weight: 700;
}

.slide-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: none;
}

.footer-large-text {
    font-size: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .footer-large-text {
        font-size: 2.5rem;
    }
}

.mobile-menu-drawer {
    transition: transform 0.3s ease-in-out;
}

@media (min-width: 1024px) {
    #carousel-content-wrapper {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 1440px;
        padding: 0 6rem;
    }
}

@media (max-width: 1023px) {
    #carousel-content-wrapper {
        position: relative;
        width: 100%;
    }
}

#desktop-modal-menu {
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    width: 400px;
    display: none;
}

@media (min-width: 1024px) {
    #desktop-modal-menu {
        display: block;
    }
}

#desktop-modal-menu.is-open {
    transform: translateX(0);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

    .hamburger-icon .line {
        height: 2px;
        background: currentColor;
        transition: all 0.3s ease-in-out;
    }

    .hamburger-icon.is-open .line-top {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-icon.is-open .line-middle {
        opacity: 0;
    }

    .hamburger-icon.is-open .line-bottom {
        transform: translateY(-8px) rotate(-45deg);
    }


.value-image-container:hover .value-image {
    transform: scale(0.95) rotateY(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card {
    transition: all 0.3s ease-in-out;
}

.scroll-card img {
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(68, 26, 5, 0.4);
}

.scroll-card img:hover {
    transform: scale(1.05);
}

.blog-article {
    transition: all 0.3s ease-in-out;
}

    .blog-article:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.pandit-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.om-symbol {
}

@media (max-width: 767px) {

    #prev-pandit-btn, #next-pandit-btn {
        position: absolute;
        top: calc(50% + 40px);
        transform: translateY(-50%);
        margin-left: 0;
        margin-right: 0;
    }

    #prev-pandit-btn {
        left: 0;
    }

    #next-pandit-btn {
        right: 0;
    }

    #prev-blog-btn, #next-blog-btn {
        padding: 0.5rem;
        top: calc(50% + 40px);
        display: block;
    }

    #prev-blog-btn {
        left: 0;
    }

    #next-blog-btn {
        right: 0;
    }
}

@media (min-width: 768px) {
    #prev-pandit-btn {
        left: -4rem;
    }

    #next-pandit-btn {
        right: -4rem;
    }
}
.detail-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .detail-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(68, 26, 5, 0.2);
    }