@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    /* --primary:#ca8833;
    --primary-dark:#c27d2b;
    --primary-light:#ebbf55;
    --secondary:#bdbec0; */
    --primary-dark: #1D3557;
    /* Navy Blue */
    --primary-light: #343A40;
    /* Charcoal Gray */

    /* Gradients */
    --primary: linear-gradient(135deg, #1D3557, #343A40);
    --secondary: linear-gradient(#1D3557, #343A40, #1D3557);

    /* text color */
    --text-primary: #BFC0C2;
    --text-secondary: #FFFFFF;
    --text-hover: #c27d2b;
    --hover: #c27d2b;
    --font-family-primary: "Inter", sans-serif;
    --font-family-secondary: "Gilda Display", serif;
}


/* utility font family classes */
.font-family-primary {
    font-family: var(--font-family-primary);
}

.font-family-secondary {
    font-family: var(--font-family-secondary);
}

/* utility color classes*/
.primary {
    background: var(--primary);
    /* Use 'background' for gradients */
}

.primary-light {
    background-color: var(--primary-light);
    /* For solid colors */
}

.secondary {
    background-color: var(--secondary);
}

.primary-dark {
    background-color: var(--primary-dark);
    /* For solid colors */
}

.burger {
    background-color: var(--hover);
}

.secondary {
    background: var(--secondary);
    /* Use 'background' for gradients */
}

.bg-hover {
    background-color: var(--text-hover);
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-tertiary:hover {
    color: var(--text-hover);
}

.text-hover {
    color: var(--text-hover);
    transition: color 0.6s ease-in-out;
}

.active {
    color: var(--text-hover);
}

.rounded {
    border-radius: 50px;
    border: 1px solid gray;
    box-sizing: border-box;
    background: var(--primary);
    box-shadow: 0 4px 4px var(--text-primary);
}

/* header Css Property */


header {
    position: absolute;
    /* Default state */
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: none;
    transition: all 2s ease-in-out;
}

.absolute-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    box-shadow: 0 2px 4px var(--text-primary);
}

.parallax {
    background-image: url(https://res.cloudinary.com/di2oizyaa/image/upload/v1749799646/MUKE1043_hglb0r.jpg);
    /* Ensure path is correct */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    /* Required for inner content alignment */
}

/* slider */


.hero-swiper .swiper-slide {
    background-position: center center;
    background-size: cover;
    object-fit: contain;
}

.hero-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
}

.swiper-pagination-progressbar {
    background-color: transparent;
    box-shadow: 0 0 2px white;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}


element.style {
    transform: translate3d(0px, 0px, 0px) scaleX(0.666667) scaleY(1);
    transition-duration: 300ms;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--hover);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
}
.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal{
    width:30%;
    margin:50px auto 0 auto;
    position: relative;
}
.hero::after{
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 4;
    top:0;
}
/* Enable 3D perspective */
.perspective {
  perspective: 1000px;
}

/* Preserve 3D space */
.transform-style-preserve {
  transform-style: preserve-3d;
}

/* Hide the backface by default */
.backface-hidden {
  backface-visibility: hidden;
}

.clicked{
    background:linear-gradient(135deg, #1D3557, #343A40);
    color:var(--hover)
}
/* medium size */
@media only screen and (max-width:768px) {
    header {
        position: static
    }

    .rounded {
        border-radius: 0;
        background: none;
        border: none;
        border-bottom: 1px solid gray;
        box-shadow: 0 0 0 0;
    }

    .navbar-show {
        height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .parallax {
        background-size: contain;
        background-position: center center;
    }
    .swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal{
        width:70%;
    }
}