@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Quicksand:wght@300..700&display=swap');
:root{
    --theme: #2d2c3b;
    --theme-dark: #232136;
    --theme-light: #39355d;
    --bs-primary:var(--theme);
    --bs-primary-rgb: 45, 44, 59;
}
footer .nav-link{
    width: auto;
}
body{
    font-family: "Quicksand", serif;
    font-size: clamp(0.75rem, 3.5vw, 0.90rem) !important; 
    background: var(--theme);
    color: #fff !important;
    font-weight: 300;
}


.avatar-group {
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -10px;
}
.more-avatars {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-left: -10px;
    color: #555;
}
.navbar-toggler{
    border: none;
}
.navbar-toggler-icon{
    width: 1.8em;
}
.navbar-toggler:focus{
    box-shadow: none;
}
/* width */
::-webkit-scrollbar {
width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
background: var(--theme-light);
}

/* Handle */
::-webkit-scrollbar-thumb {
background: var(--theme-dark);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: var(--theme);
}
#carouselHeroSection {
    .carousel-inner{
        height: 90vh;
    }
    .carousel-item {
        transition: transform 2s ease-in-out;
        will-change: transform;
        height: 100%;
    }
    .carousel-item.active img {
        transition: transform 2s ease-in-out;
        transform-origin: center center;
    }
    .carousel-item:nth-child(odd) img{
        transform: scale(1);
    }
    .carousel-item:nth-child(odd).active img {
        transform: scale(1.2);
    }
    .carousel-item:nth-child(even) img{
        transform: scale(1.6);
    }
    .carousel-item:nth-child(even).active img {
        transform: scale(1);
    }
     .tag-line {
        font-size: clamp(3.5rem, 3.5vw, 6rem) !important;
        font-weight: 400;
    }
}

.fs-7 {
    font-size: .90rem !important;
}
.fs-8 {
    font-size: .80rem !important;
}
.fs-9 {
    font-size: .70rem !important;
}
.fs-10 {
    font-size: .60rem !important;
}
.w-fit{
    width: fit-content !important;
}
.w-min{
    width: min-content !important;
}
.w-max{
    width: max-content !important;
}
.h-fit{
    height: fit-content !important;
}
.h-min{
    height: min-content !important;
}
.h-max{
    height: max-content !important;
}
.bg-primary-dark{
    background: var(--theme-dark);
} 
.heading-font {
    font-family: "Cormorant Garamond", serif;
}
.heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1rem, 3.5vw, 2.6rem) !important; 
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    color: #fff; /* Ensures text visibility */
    position: relative;
    background-color: var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw; /* Space between text and lines */
    padding: 10px 0;
    margin-bottom: 1.8rem;
}

.heading.left-none::before, .heading.right-none::after {
    display: none !important;
}
/* Lines on both sides */
.heading::before,
.heading::after {
    content: '';
    width: 8vw;
    height: 2px;
    background-color: #fff;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--theme);
    --bs-btn-border-color: var(--theme);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--theme-dark);
    --bs-btn-hover-border-color: var(--theme-dark);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--theme-dark);
    --bs-btn-active-border-color: var(--theme-dark);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--theme);
    --bs-btn-disabled-border-color: var(--theme);
}



/* Discover */
.slider{
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
    .slide{
        width: 50%;
        img{
            width: 100%;
        }
    }
}

/* Discover end */
.on-hover-feedin{
    overflow: hidden;
}
.on-hover-feedin img {
    transition: all 1s ease-in;
    object-fit: cover;
}

.on-hover-feedin:hover img {
    transform: scale(1.2); /* Zoom in by 20% */
}

.service {
    > div > div{
        min-height: 160px;
    }
    > div > div > .h5{
        min-height: 50px;
    }
}
.gallerys {
    .slide {
        padding: 0.7rem !important;
        transition: all 0.5s ease-in-out;
    }
    .slide.slick-active.slick-center {
        transform: scale(1);
        z-index: 3;
        position: relative;
    }
    .slick-prev, .slick-next{
        width: 50px;
        height: 50px;
        z-index: 3;
    }
    .slick-prev:before, .slick-next:before{
        font-size: 45px;
    }
    .slide.slick-active.slick-center + .slide.slick-slide {
        transform: scale(0.7) translateX(-90%);
    }
    .slide.slick-slide{
        transform: scale(0.7) translateX(90%);
    }
    .slide.slick-slide img{ 
        border-radius: 8px;
        overflow: hidden;
    }
}

.image-card {
    height: 400px;
    img.blur{
        object-fit: cover;
        filter: blur(2px);
    }
    img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain;
    }
}


@media screen and (max-width: 1024px) {
    .w-tab-100 {
        width: 75% !important;
    }
}
@media screen and (max-width: 786px) {
    .about-px-0{
        padding-left:0 !important;
        padding-right:0 !important;
    }
    
    #carouselHeroSection {
        .carousel-inner{
            height: 70vh;
        }
        .carousel-item {
            transition: transform 2s ease-in-out;
            will-change: transform;
            height: 100%;
        }
        .tag-line {
            font-size: clamp(1.5rem, 3.5vw, 4rem) !important;
            top: unset !important;
            bottom: 3% !important;
        }
    }
    .heading.left-none::before, .heading.right-none::after {
        display: block !important;
    }
    .heading {
        font-size: clamp(1.8rem, 3.5vw, 1.2rem) !important; 
        gap: 10px !important;
        margin-bottom: 1.2rem;
    }
    .heading::before, .heading::after {
        width: 20%;
    }
    .w-sm-100 {
        width: 100% !important;
    }
}