/*** Spinner Start ***/
:root {
    --bs-primary: #fcce2b;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.PageBanner {
    padding: 120px 0 50px;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    animation: border-transform 4s linear infinite alternate forwards;
}

.navbar-brand {
    line-height: 0.2;
}

.navbar-brand h1 {
    font-size: 35px;
}

.navbar-brand small {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-weight: 400 !important;
    font-family: "Merienda", cursive !important;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
    font-family: 'Open Sans', sans-serif !important;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}


/*** Button Start ***/
.btn.btn-primary {
    border: 0;
    background-color: #fcce2b;
    color: #050709;
}

.btn.btn-primary:hover {
    background: #050709 !important;
    color: #fcce2b !important;
}

.btn {
    font-weight: 600;
    transition: .5s;
    text-transform: uppercase;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

@keyframes border-transform {
    0% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(0px);
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }

    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(-20px);
    }
}

/*** Button End ***/


/*** Navbar Start ***/
.nav-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.nav-bar.nav-sticky {
    position: fixed;
    background: rgb(50 48 48 / 90%);
    box-shadow: 0 10px 30px rgba(5, 7, 9, 0.12);
    border-color: rgba(0, 0, 0, .08);
    backdrop-filter: blur(8px);
}

.navbar .mobile-nav-close {
    display: none;
}

.navbar .navbar-nav .nav-link {
    padding: 10px 11px;
    font-weight: 500;
    font-size: 15px;
    transition: .5s;
    text-transform: uppercase;
    color: #b9b9b9;
}

@media (max-width: 991.98px) {
    #navbarCollapse #enquiryToggle {
        display: block;
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    #navbarCollapse #menuPdfBtn {
        display: block;
        width: 100%;
        margin-top: 12px;
        text-align: center;
    }
}

#menuPdfBtn {
    position: relative;
    overflow: hidden;
}

#loader {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9999;
    font-size: 65px;
    text-align: center;

    color: #fff;
    font-family: tahoma;
}



#loader::after {
    width: 280px;
    height: 280px;
    border-color: rgba(5, 7, 9, 0.08);
    animation-delay: 0.6s;
}

#loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    animation: loaderFloat 2.2s ease-in-out infinite;
}

#loader .loader-text {
    position: absolute;
    top: calc(50% + 120px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #050709;
    text-transform: uppercase;
    animation: loaderGlow 1.8s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes loaderFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-6px);
    }
}

@keyframes loaderGlow {

    0%,
    100% {
        opacity: 0.55;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-6px);
    }
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

.footer {
    margin-top: 0;
}

.dropdown-item {
    padding: 7px 15px;
}


.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 200px;
    padding: 0;
}

.home-area-title {
    font-size: 4.0rem;
    font-family: "Merienda", cursive !important;
    font-weight: 700 !important;
    line-height: 1.2;
    color: #fff;
}

.hero-creative {
    padding: 60px 0 60px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #ffe9c8;
    color: #004
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
}

.text-primary {
    color: #FCCE2B !important;
}

/*** Navbar End ***/


.rac_inr_pages_banner {
    padding: 135px 0 70px;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.rac_photos_banner {
    background-image: url(../img/about_banner.webp);
}

.rac_contact_banner {
    background-image: url(../img/contact_banner.webp);
}

.rac_page_title {
    text-align: center;
}

.rac_page_title h1 {
    color: #FCCE2B;
    font-weight: 700;
    font-size: 60px;
}

.rac_breadcrumbs {
    display: inline-flex;
    gap: 10px;
    color: #ffffff;
}

.rac_breadcrumbs a {
    color: #ffffff;
}

/*** Gallery Start ***/
.rac_gallery_section {
    background: #fffaf0;
}

.rac_gallery_item {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #1d1d1d;
    box-shadow: 0 18px 35px rgba(5, 7, 9, 0.12);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rac_gallery_img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.rac_gallery_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    background: linear-gradient(135deg, rgba(5, 7, 9, 0.15), rgba(5, 7, 9, 0.65));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rac_gallery_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(5, 7, 9, 0.18);
}

.rac_gallery_item:hover .rac_gallery_img {
    transform: scale(1.08);
}

.rac_gallery_item:hover .rac_gallery_overlay {
    opacity: 1;
}

@media (max-width: 575.98px) {
    .rac_gallery_img {
        height: 190px;
    }
}

/*** Gallery End ***/
/*** Hero Creative Start ***/
.hero-creative {
    position: relative;
    background-image: url(../img/banner_bg.webp);
    background-size: cover;
    padding: 150px 0 60px;
    background-repeat: no-repeat;
    background-position: top left;
    overflow: hidden;
    z-index: 1;
}

.hero-creative::before {
    content: " ";
    background-image: url(../img/banner_shapes.webp);
    width: 100%;
    z-index: -1;
    height: 100%;
    animation: 10s circlular linear infinite;
    position: absolute;
    top: 0;
    background-size: contain;
    background-position: center;
    left: -31px;
    background-repeat: no-repeat
}

@keyframes circlular {
    from {
        -webkit-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-12px) rotate(0deg);
        transform: rotate(0deg) translate(-12px) rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        transform: rotate(360deg) translate(-12px) rotate(-360deg);
    }
}

.hero-creative::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(212, 167, 98, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5, 7, 9, 0.05) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px;
    opacity: 0.35;
    pointer-events: none;
}

.hero-creative .hero-blur {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.6;
    pointer-events: none;
}

.hero-creative .hero-blur-1 {
    top: -80px;
    left: -40px;
    background: radial-gradient(circle, rgba(212, 167, 98, 0.6), transparent 60%);
    animation: floatPulse 7s ease-in-out infinite;
}

.hero-creative .hero-blur-2 {
    bottom: -120px;
    right: -60px;
    background: radial-gradient(circle, rgba(5, 7, 9, 0.25), transparent 60%);
    animation: floatPulse 8s ease-in-out infinite reverse;
}

.hero-creative .hero-orbit {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 167, 98, 0.4);
    top: 24%;
    right: 6%;
    animation: slowSpin 18s linear infinite;
    pointer-events: none;
}

.hero-creative .hero-kicker {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 24px rgba(5, 7, 9, 0.08);
}

.hero-creative .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 8px 0 28px;
    color: #5f5f5f;
    font-weight: 600;
}

.hero-creative p {
    color: #b4b4b4;
    margin: 20px 0 30px !important
}

.hero-creative .hero-badges span {
    background: #fffcf8;
    box-shadow: 0 10px 24px rgba(5, 7, 9, 0.08);
    border: 1px solid rgba(212, 167, 98, 0.25);
    border-radius: 999px;
    padding: 8px 14px;
}

.menu-pdf-cta {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    background: #1f1f1f;
    color: #fcce2b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 12px 30px rgba(5, 7, 9, 0.18);
    overflow: hidden;
}

.menu-pdf-cta:hover {
    color: #050709;
    background: #fcce2b;
    text-decoration: none;
}

.menu-pdf-cta .menu-pdf-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff4d4f;
    box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.6);
    animation: pulse-dot 1.6s infinite;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.6);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(255, 77, 79, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 79, 0);
    }
}

.menu-pdf-fixed {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1080;
    min-width: 170px;
}

@media (max-width: 991.98px) {
    .menu-pdf-fixed {
        top: auto;
        bottom: 24px;
        right: 12px;
        transform: none;
        min-width: auto;
    }
}

.hero-creative .hero-image {
    border-radius: 24px !important;
    transform: translateY(-6px);
}

.hero-creative .hero-btn-secondary {
    background: transparent !important;
    border: 1px solid rgba(212, 167, 98, 0.6) !important;
    color: var(--bs-dark) !important;
}

.hero-creative .hero-btn-secondary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(10px) scale(1.03);
    }
}

@keyframes slowSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 991.98px) {
    .hero-creative .hero-orbit {
        display: none;
    }

    .home-area-title {
        font-size: 2.5rem;
    }

    .hero-creative {
        background-position: center;
    }
}

/*** Hero Creative End ***/

/*** Footer Creative Start ***/
.footer-creative {
    position: relative;
    padding: 80px 0 30px;
    color: #f7f3e8;
    background: url("../img/footer-bg.jpg") center/cover no-repeat;
    /* background: url("../img/1.jpg") center/cover no-repeat; */
    overflow: hidden;
}

.footer-creative .footer-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(5, 7, 9, 0.9), rgba(5, 7, 9, 0.7)),
        radial-gradient(circle at 20% 20%, rgba(252, 206, 43, 0.2), transparent 45%);
    z-index: 0;
}

.footer-creative .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
}


.footer-creative h5,
.footer-creative h3 {
    color: #fcce2b;
    margin-bottom: 35px;
}

.footer-brand img {
    margin-bottom: 25px;
}

.footer-creative p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 30px
}

.footer-creative .footer-links,
.footer-creative .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-creative .footer-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-creative .footer-links a:hover {
    color: #fcce2b;
    transform: translateX(4px);
}

.footer-creative .footer-links li {
    position: relative;
    padding-left: 18px;
    margin-left: 6px;
    transition: margin-left .2s ease;
}

.footer-creative .footer-links li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #fcce2b;
    font-size: 18px;
    line-height: 1.1;
    opacity: 1;
    transition: opacity .2s ease;
}

.footer-creative .footer-links li:hover {
    margin-left: 0;
}

.footer-creative .footer-links li:hover::before {
    opacity: 0;
}

.footer-creative .footer-contact i {
    color: #fcce2b;
    margin-right: 10px;
}

.footer-creative .footer-contact li {
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.footer-creative .footer-social {
    display: flex;
    gap: 10px;
}

.footer-creative .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 206, 43, 0.15);
    color: #fcce2b;
    transition: transform .2s ease, background .2s ease;
}

.footer-creative .footer-social a:hover {
    transform: translateY(-3px);
    background: rgba(252, 206, 43, 0.35);
}

.footer-creative .footer-bottom {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    justify-content: center;
}

/*** Footer Creative End ***/

/*** Enquiry Panel Start ***/
.enquiry-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(92vw, 400px);
    padding: 22px 28px 28px;
    background:
        radial-gradient(circle at 15% 20%, rgba(252, 206, 43, 0.18), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    box-shadow: -20px 0 45px rgba(5, 7, 9, 0.2);
    transform: translateX(110%);
    transition: transform .55s cubic-bezier(.2, .9, .2, 1);
    z-index: 1060;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    overflow-y: auto;
}

body.enquiry-open .enquiry-panel {
    transform: translateX(0);
}

.enquiry-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 9, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 1055;
}

body.enquiry-open .enquiry-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.enquiry-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(252, 206, 43, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(5, 7, 9, 0.04) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px;
    opacity: 0.25;
    pointer-events: none;
}

.enquiry-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    z-index: 9;
    border-radius: 12px;
    background: rgba(5, 7, 9, 0.08);
    color: var(--bs-dark);
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background .2s ease;
}

.enquiry-close:hover {
    transform: rotate(90deg);
    background: rgba(252, 206, 43, 0.35);
}

.enquiry-head {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.enquiry-kicker {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(252, 206, 43, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
}

.enquiry-head h3 {
    margin: 6px 0 8px;
    color: #050709;
    font-size: 22px;
}

.enquiry-head p {
    color: #6b6b6b;
    margin: 0;
}

.enquiry-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.enquiry-field {
    display: grid;
    gap: 3px;
}

.enquiry-field label {
    font-weight: 600;
    color: #242628;
    font-size: 14px
}

.enquiry-field input,
.enquiry-field textarea {
    border: 1px solid rgba(5, 7, 9, 0.1);
    border-radius: 5px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color .2s ease, box-shadow .2s ease;
    font-family: inherit;
    font-size: 15px;
}

.enquiry-field input:focus,
.enquiry-field textarea:focus {
    outline: none;
    border-color: rgba(252, 206, 43, 0.9);
    box-shadow: 0 0 0 3px rgba(252, 206, 43, 0.2);
}

/*** Enquiry Panel End ***/

.bg-2e2e2e {
    background-color: #2e2e2e;
}

.rac_about_wrapper {
    position: relative;
    background-image: url(../img/about_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    padding: 80px 0 80px;
}

.rac_about_wrapper::before {
    content: " ";
    background-image: url(../img/about_shapes.webp);
    width: 100%;
    height: 100%;
    animation: 10s circlular linear infinite;
    position: absolute;
    top: 0;
    background-size: contain;
    background-position: center;
    left: 0;

}

@keyframes circlular {
    from {
        -webkit-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -moz-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -ms-transform: rotate(0deg) translate(-12px) rotate(0deg);
        -o-transform: rotate(0deg) translate(-12px) rotate(0deg);
        transform: rotate(0deg) translate(-12px) rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -moz-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -ms-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        -o-transform: rotate(360deg) translate(-12px) rotate(-360deg);
        transform: rotate(360deg) translate(-12px) rotate(-360deg);
    }
}

.rac_about_content {
    position: relative;
    max-width: fit-content;
    margin: auto;
}

.rac_about_content::before {
    background-image: url(../img/about_leaf1.webp);
    width: 314px;
    height: 250px;
    left: -130px;
    top: 0;
}

.rac_about_content::after {
    background-image: url(../img/about_leaf2.webp);
    width: 356px;
    height: 431px;
    right: -200px;
    bottom: 5px;
}

.rac_about_box {
    border: 1px solid #3d3d3d;
    background: #292929;
    border-radius: 20px;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.event {
    padding: 80px 0 80px;
}

/*** Mobile Slide Nav ***/
@media (max-width: 991.98px) {
    body.nav-open {
        overflow: hidden;
    }

    .footer-creative {
        background: none;
    }

    .navbar .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(88vw, 360px);
        padding: 90px 24px 24px;
        background: #2d2c2c;
        transform: translateX(110%);
        transition: transform .55s cubic-bezier(.2, .9, .2, 1);
        z-index: 1050;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(6px);
    }

    .navbar .mobile-nav-close {
        position: absolute;
        top: 16px;
        left: 16px;
        display: inline-flex !important;
        width: 34px;
        height: 34px;
        border: 0;
        border-radius: 12px;
        background: #f3f3f3;
        color: #2f2f2f;
        font-size: 22px;
        line-height: 1;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        z-index: 1101;
        transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .navbar .mobile-nav-close:hover {
        transform: rotate(90deg);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        background: #e7e7e7;
    }

    .navbar .navbar-collapse.collapsing {
        height: 100vh;
        transition: transform .55s cubic-bezier(.2, .9, .2, 1);
    }

    .navbar .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar .navbar-nav {
        gap: 6px;
        margin-bottom: 20px;
    }

    .navbar .navbar-nav .nav-link,
    .navbar .navbar-nav .dropdown {
        opacity: 0;
        padding: 7px 0px;
        transform: translateX(16px);
        transition: opacity .4s ease, transform .4s ease;
    }

    .navbar .navbar-collapse.show .navbar-nav .nav-link,
    .navbar .navbar-collapse.show .navbar-nav .dropdown {
        opacity: 1;
        transform: translateX(0);
    }

    .navbar .navbar-nav>*:nth-child(1) {
        transition-delay: .08s;
    }

    .navbar .navbar-nav>*:nth-child(2) {
        transition-delay: .12s;
    }

    .navbar .navbar-nav>*:nth-child(3) {
        transition-delay: .16s;
    }

    .navbar .navbar-nav>*:nth-child(4) {
        transition-delay: .20s;
    }

    .navbar .navbar-nav>*:nth-child(5) {
        transition-delay: .24s;
    }

    .navbar .navbar-nav>*:nth-child(6) {
        transition-delay: .28s;
    }

    .navbar .navbar-nav>*:nth-child(7) {
        transition-delay: .32s;
    }

    .navbar .navbar-nav>*:nth-child(8) {
        transition-delay: .36s;
    }

    .navbar .dropdown-menu {
        position: static;
        border: 0;
        box-shadow: none;
        background: transparent;
        padding-left: 12px;
    }

    .navbar .dropdown-menu.show {
        display: block;
        width: 100%;
        background: transparent !important;
        padding-left: 5px;
        border-left: 1px solid #dcd8d8;
        border-radius: 0;
    }

    .dropdown .dropdown-menu a:hover {
        background: none;
        color: #fff;
    }

    .navbar .dropdown-menu .dropdown-item {
        border-radius: 999px;
        padding: 8px 14px;
        color: #e3e3e3 !important;
        text-transform: uppercase;
        font-size: 13px;
    }

    .navbar .navbar-toggler {
        border: 0;
        box-shadow: none;
        z-index: 9999;
    }

    .navbar-brand h1 {
        font-size: 33px;
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(212, 167, 98, 0.25), rgba(5, 7, 9, 0.55));
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: opacity .4s ease;
    }

    .navbar .dropdown-toggle::after {
        float: right;
    }

    .mobile-nav-backdrop.is-active {
        opacity: 1;
        z-index: 1;
        pointer-events: auto;
    }
}

/*** Mobile Slide Nav End ***/


/*** Events Start ***/
.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(212, 167, 98, 0.7);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}

/*** Events End ***/


/*** service start ***/
.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: var(--bs-primary);
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}

.services-area {
    padding: 80px 0 80px;
    background-color: #000;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(5, 7, 9, 0.75), rgba(5, 7, 9, 0.75)),
        url("../img/service_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.rac_service_box {
    border: 1px solid #3d3d3d;
    background: #292929;
    border-radius: 20px;
    padding: 0 15px 15px;
    position: relative;
    text-align: center;
    margin: 50px auto 0;
    min-height: 200px;
}


.rac_service_text {
    margin-top: 20px;
}

.rac_service_icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 0;
    outline: 10px solid #202020;
}

.rac_service_icon:hover {
    outline: 10px solid #202020;
}

.rac_service_icon.icon1 {
    background: linear-gradient(180deg, #FF4343 0%, #FF7676 100%);
}

.rac_service_icon.icon2 {
    background: linear-gradient(180deg, #fcce2b 0%, #894c09 100%);
}

.rac_service_icon.icon3 {
    background: linear-gradient(180deg, #65B500 0.01%, #9BEB36 100%);
}

.rac_service_icon.icon4 {
    background: linear-gradient(180deg, #2895FA 0.01%, #8CC8FF 100%);
}

.rac_service_icon.icon5 {
    background: linear-gradient(180deg, #9643FF 0%, #BB85FF 100%);
}

.rac_service_icon.icon6 {
    background: linear-gradient(180deg, #FB3CD1 0%, #FF74E0 100%);
}

.rac_service_icon.icon7 {
    background: linear-gradient(180deg, #3963F5 0%, #7C9AFF 100%);
}

.rac_service_icon.icon8 {
    background: linear-gradient(180deg, #0ABCD5 0%, #4FE6FB 100%);
}

.rac_service_text {
    margin-top: 20px;
}

.rac_service_text h4 {
    color: #fff;
    font-size: 1.25rem;
}

.rac_service_text p {
    margin: 10px 0 5px;
}

.rac_service_text a {
    font-size: 14px;
    font-weight: 600;
    color: var(--rac-primary-color);
}

.rac_service_text a:hover img {
    animation: rac_lr 1s infinite alternate;
}

@keyframes rac_lr {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(10px)
    }
}

.creative-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 30px;
    padding: 50px 30px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
}

.creative-card:hover {
    transform: translateY(-20px) rotateX(10deg);
    background: rgba(212, 175, 55, 0.08);
    border-color: #D4AF37;
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.creative-card i {
    font-size: 4rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E8C1 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.5s;
}

.creative-card h3 {
    color: #fff;
}


h2 {
    font-size: 3.0rem;
}

.btn-luxury:hover::before {
    left: 0;
}

/*** Services End ***/


/*** Menu Start ***/
.menu .nav-item a.active {
    background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}

/*** Menu End ***/


/*** Youtube Video start ***/
.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(254, 218, 154, 0.1), rgba(254, 218, 154, 0.1)), url(../img/fact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-white);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

/*** Youtube Video End ***/


/*** Blog Start ***/
.blog-item {
    position: relative;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.3)
}

.blog-item .blog-content {
    position: relative;
    transform: translateY(-50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item .blog-content a.btn h5 {
    transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
    color: var(--bs-primary) !important;
}

/*** Blog End ***/


/*** Team Start ***/
.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: 0.9s;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: 0.9s;
}

.team-item:hover .team-content {
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: 0.5s;
}

.team-item:hover .team-content h4 {
    color: var(--bs-dark) !important;
}

.team-item:hover .team-content p {
    color: var(--bs-white);
}

/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
    border: 1px solid var(--bs-primary);
    padding: 20px 20px;
}



.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    display: block;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}

/*** testimonial End ***/

/* About page testimonial (creative) */
.testimonial-section-alt {
    background: linear-gradient(180deg, #fffdf5, #ffffff);
    position: relative;
}

.testimonial-cards .owl-stage-outer {
    padding: 12px 6px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(5, 7, 9, 0.08);
    border: 1px solid rgba(5, 7, 9, 0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(252, 206, 43, 0.35), transparent 60%);
    transform: rotate(20deg);
    pointer-events: none;
}

.testimonial-card .card-body {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.testimonial-card p {
    font-size: 15px;
    color: #4a4a4a;
}

.avatar-lg {
    width: 64px !important;
    height: 64px;
    object-fit: cover;
    border: 3px solid rgba(252, 206, 43, 0.5);
}

.testimonial-avatar-stack {
    display: inline-flex;
    align-items: center;
}

.testimonial-avatar-stack img,
.testimonial-avatar-stack .more {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 8px 20px rgba(5, 7, 9, 0.18);
    margin-left: -12px;
    background: #050709;
    color: #fcce2b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.testimonial-avatar-stack img:first-child,
.testimonial-avatar-stack .more:first-child {
    margin-left: 0;
}

.testimonial-cards .owl-dots {
    text-align: center;
    margin-top: 18px;
}

.testimonial-cards .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 4px;
    background: rgba(5, 7, 9, 0.2);
}

.testimonial-cards .owl-dot.active span {
    background: #fcce2b;
}

/* Why choose us creative */
.why-choose {
    background: linear-gradient(135deg, #fffdf5 0%, #ffffff 60%, #fff7e0 100%);
}

.why-choose .display-5 {
    font-family: 'Playball', cursive;
    letter-spacing: 0.2px;
}

.why-blob {
    position: absolute;
    pointer-events: none;
    opacity: 0.35;
    mix-blend-mode: multiply;
}

.why-blob-left {
    top: -40px;
    left: -80px;
    max-width: 420px;
}

.why-blob-right {
    bottom: -60px;
    right: -30px;
    max-width: 260px;
}

.why-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 22px 28px;
    box-shadow: 0 16px 38px rgba(5, 7, 9, 0.08);
    border: 1px solid rgba(5, 7, 9, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(5, 7, 9, 0.12);
}

.why-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fcce2b;
    color: #050709;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(252, 206, 43, 0.35);
}

.why-number {
    position: absolute;
    right: 18px;
    bottom: 12px;
    font-weight: 800;
    font-size: 22px;
    color: rgba(5, 7, 9, 0.07);
    letter-spacing: 1px;
}

/* Mission & Vision creative */
.mission-vision {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
}

.mv-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 22px 20px 26px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(5, 7, 9, 0.06);
    box-shadow: 0 16px 36px rgba(5, 7, 9, 0.08);
    overflow: hidden;
}

.mv-card-alt {
    background: #fffaf1;
}

.mv-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #fcce2b;
    color: #050709;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 22px rgba(252, 206, 43, 0.32);
}

.mv-accent {
    position: absolute;
    right: 18px;
    bottom: 12px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(5, 7, 9, 0.06);
    letter-spacing: 2px;
    pointer-events: none;
}

/* Services page */
.service-hero {
    background-color: #0b0d11;
}

.service-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px 24px;
    border: 1px solid rgba(5, 7, 9, 0.06);
    box-shadow: 0 14px 32px rgba(5, 7, 9, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(5, 7, 9, 0.12);
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #fcce2b;
    color: #050709;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    box-shadow: 0 8px 18px rgba(252, 206, 43, 0.32);
}

.feature-chip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 15px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(5, 7, 9, 0.06);
    box-shadow: 0 10px 24px rgba(5, 7, 9, 0.06);
    height: 100%;
}

.feature-chip .chip-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(252, 206, 43, 0.2);
    color: #050709;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Menu page */
.menu-highlight {
    background: #fffaf1;
    border: 1px solid rgba(5, 7, 9, 0.06);
}

.menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fcce2b;
    color: #050709;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 10px;
}

.menu-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(5, 7, 9, 0.06);
    box-shadow: 0 14px 32px rgba(5, 7, 9, 0.08);
    padding: 22px 20px 18px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(5, 7, 9, 0.12);
}

.menu-card-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.menu-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(252, 206, 43, 0.18);
    color: #050709;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.menu-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: grid;
    gap: 6px;
}

.menu-list li {
    position: relative;
    padding-left: 16px;
    color: #4a4a4a;
}

.menu-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fcce2b;
}

.package-chip {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 16px;
    border: 1px solid rgba(5, 7, 9, 0.08);
    box-shadow: 0 12px 26px rgba(5, 7, 9, 0.07);
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.package-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(5, 7, 9, 0.1);
}


/*** Contact start ***/
.contact-form {}

/*** Contact End ***/

/*** Contact Page Start ***/

.contact-page-section {
    background: #fffaf0;
    position: relative;
    overflow: hidden;
}

.contact-page-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(252, 206, 43, 0.12), transparent 40%),
        radial-gradient(circle at 85% 10%, rgba(5, 7, 9, 0.08), transparent 35%);
    pointer-events: none;
}

.contact-kicker {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(252, 206, 43, 0.18);
    color: #4a3b0c;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.contact-highlight {
    background: linear-gradient(135deg, rgba(5, 7, 9, 0.95), rgba(45, 45, 45, 0.92));
    border-radius: 20px;
    padding: 24px;
    color: #f7f3e8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 20px 45px rgba(5, 7, 9, 0.15);
}

.contact-highlight h4 {
    margin-bottom: 8px;
    color: #fcce2b;
}

.contact-highlight p {
    margin-bottom: 0;
    color: rgba(247, 243, 232, 0.85);
}

.contact-highlight-icons {
    display: flex;
    gap: 12px;
}

.contact-highlight-icons span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(252, 206, 43, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fcce2b;
    font-size: 18px;
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 18px 40px rgba(5, 7, 9, 0.08);
    position: relative;
    z-index: 1;
}

.contact-info-card h3,
.contact-form-card h3 {
    margin-bottom: 12px;
    color: #050709;
}

.contact-info-card p {
    color: #6b6b6b;
}

.contact-info-list {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-info-item h6 {
    margin-bottom: 4px;
    color: #050709;
}

.contact-info-item p {
    margin-bottom: 0;
    color: #6b6b6b;
}

.contact-info-item a {
    color: #050709;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: #fcce2b;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(252, 206, 43, 0.2);
    color: #050709;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #050709;
    color: #fcce2b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background .2s ease;
}

.contact-social a:hover {
    transform: translateY(-3px);
    background: #fcce2b;
    color: #050709;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 12px;
    border: 1px solid rgba(5, 7, 9, 0.12);
    padding: 10px 14px;
    box-shadow: none;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: rgba(252, 206, 43, 0.9);
    box-shadow: 0 0 0 3px rgba(252, 206, 43, 0.2);
}

.contact-map-section {
    padding: 0 0 90px;
    background: #fffaf0;
}

.map-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(5, 7, 9, 0.08);
    overflow: hidden;
}

.map-header {
    padding: 26px 30px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.map-header h3 {
    margin-bottom: 6px;
}

.map-embed iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .contact-highlight {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*** Contact Page End ***/


/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/


@media(max-width:776px) {
    h2 {
        font-size: 2.0rem;
    }
}

/*** Intro Video Overlay Start ***/
body.intro-playing {
    overflow: hidden;
}

.intro-video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 9, 0.97);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    transition: opacity 0.35s ease;
}

.intro-video-overlay.intro-hidden {
    opacity: 0;
    pointer-events: none;
}

.intro-video-overlay__panel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 0;
    max-width: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9000, #fb5e00 65%, #ff4600 100%);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35), 0 35px 65px rgba(0, 0, 0, 0.45);
}

.intro-video-overlay__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(252, 206, 43, 0.08), transparent 45%);
    opacity: 0.7;
    pointer-events: none;
    mix-blend-mode: screen;
}

.intro-video-overlay__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 50%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
    mix-blend-mode: screen;
    background-size: 80px 80px;
}

.intro-video-overlay__player {
    position: absolute;
    inset: 0;
    border-radius: 0;
    overflow: hidden;
    z-index: 2;
}

.intro-video-overlay__player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.intro-video-overlay__close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    background: rgb(255 228 95);
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    z-index: 9;
}

.intro-video-overlay__close:hover {
    background: #f00;
    color: #fff;
}

.intro-video-overlay__close-icon {
    font-size: 1.35rem;
    line-height: 1;
}

.intro-video-overlay__caption {
    margin-top: 1.2rem;
    color: rgba(244, 242, 236, 0.9);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .intro-video-overlay {
        padding: 12px;
    }

    .intro-video-overlay__close {
        top: 12px;
        right: 12px;
    }
}

/*** Intro Video Overlay Brand ***/
.intro-video-overlay__brand {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.intro-video-overlay__brand h1 {
      font-family: khand !important;
    font-size: clamp(3rem, 6vw, 5rem);
    color: #fff;
    text-transform: unset;
    text-shadow: 1px 14px 35px rgb(0 0 0);
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 800 !important;
}

/*** Intro Video Overlay End ***/