/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
/* Floating icons container */
.floating-icons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* Floating call icon */
.floating-icon {
    background-color: #28a745;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.floating-icon:hover {
    transform: scale(1.1);
}

/* WhatsApp floating icon */
.floating-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.2s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* Blinking animation - disabled, icons show steady */
.blink {
    /* animation removed - show steady */
}


/* Call number section (initially hidden) */
.call-number-section {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    z-index: 9999;
    border-radius: 8px 0 0 0;
}

.call-number-section h4 {
    margin-bottom: 10px;
    color: #333;
}

.call-number-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333 !important;
    font-weight: 600;
}

.call-number-section a {
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.call-number-section button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
}

/* Navbar call & whatsapp buttons - kept for fallback */
.navbar-contact-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-call-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s;
}

.navbar-call-btn:hover {
    background-color: #e08e00;
    color: #fff !important;
}

.navbar-wa-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #25D366;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s;
}

.navbar-wa-btn:hover {
    background-color: #1ebe5d;
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .navbar-contact-btns {
        padding: 10px 0;
        flex-wrap: wrap;
    }
}

.button-container {
    display: flex;
    gap: 20px;
  }
  
  .glass-button {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
  }
  
  .glass-button:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    transform: scale(0.5);
    opacity: 0;
    pointer-events: none;
  }
  
  .glass-button:hover:before {
    transform: scale(1);
    opacity: 1;
  }
  
  .glass-button:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(115deg, rgba(0, 255, 255, 0.6), rgba(0, 128, 255, 0.6));
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .glass-button:hover:after {
    opacity: 1;
  }
  
  .glass-button:focus {
    outline: none;
  }
  
  .glass-button i {
    font-size: 18px; /* Size of the call icon */
    color: #00ff7f; /* Color for the call icon */
  }




/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Top Info Bar ***/
.top-info-bar {
    background-color: #1a1a2e;
    color: #ccc;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-info-bar a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.top-info-bar a:hover {
    color: var(--primary);
}

.top-info-bar i {
    color: var(--primary);
    margin-right: 5px;
}

/* Hide address on small screens, keep only email */
@media (max-width: 575.98px) {
    .top-info-bar .top-address {
        display: none !important;
    }
    .top-info-bar .d-flex {
        justify-content: center;
    }
}

/*** Site Header — sticky, 3-zone layout ***/
.site-header {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 65px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    position: sticky;
    top: 0;
    z-index: 1050;
    overflow: visible;
}

/* Zone 1 — Logo */
.header-logo {
    display: flex;
    align-items: center;
    padding: 6px 20px;
    background: #fff;
    min-width: 160px;
    flex-shrink: 0;
    z-index: 2;
}

.header-logo img {
    height: 50px;
    width: auto;
}

/* Zone 2 — Nav links */
.header-nav {
    display: flex;
    align-items: center;
    flex: 1;
    background: #fff;
    padding: 0 8px;
    gap: 0;
}

.header-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 16px;
    height: 65px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #444;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.header-nav-link i {
    color: var(--primary);
    font-size: 12px;
}

.header-nav-link:hover {
    color: var(--primary);
    background: #fffaf2;
}

.header-nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Zone 3 — Action buttons */
.header-actions {
    display: flex;
    align-items: stretch;
    background: #1a1a2e;
    flex-shrink: 0;
    z-index: 2;
}

.header-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    background: #1a1a2e;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: background 0.2s;
}

.header-call-btn i {
    color: var(--primary);
    font-size: 15px;
}

.header-call-btn:hover {
    background: #111827;
    color: #fff !important;
}

.header-book-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    background: var(--primary);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.header-book-btn i {
    font-size: 14px;
}

.header-book-btn:hover {
    background: #e08e00;
    color: #fff !important;
}

/* Hamburger toggle */
.header-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    background: #1a1a2e;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}

.header-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Toggle open state — X icon */
.header-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header-toggle.open span:nth-child(2) {
    opacity: 0;
}
.header-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {

    .site-header {
        flex-wrap: nowrap;
        min-height: 56px;
        position: sticky;
        top: 0;
        z-index: 1050;
    }

    /* Logo row */
    .header-logo {
        min-width: 0;
        padding: 6px 12px;
        flex: 1;
    }

    .header-logo img {
        height: 40px;
    }

    /* Actions stay right of logo on mobile */
    .header-actions {
        order: 1;
        flex-shrink: 0;
    }

    /* Toggle button */
    .header-toggle {
        display: flex;
        order: 2;
        flex-shrink: 0;
    }

    /* Call btn */
    .header-call-btn {
        padding: 0 10px;
        font-size: 12px;
        gap: 4px;
    }

    /* Book btn */
    .header-book-btn {
        padding: 0 10px;
        font-size: 11px;
        gap: 4px;
    }

    /* Nav dropdown — full width, below header, fixed position */
    .header-nav {
        display: none;
        position: fixed;
        top: 56px; /* fallback, JS overrides this */
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        padding: 0;
        border-top: 3px solid var(--primary);
        gap: 0;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        z-index: 1049;
        max-height: calc(100vh - 56px);
        overflow-y: auto;
    }

    .header-nav.open {
        display: flex;
    }

    .header-nav-link {
        height: auto;
        padding: 15px 24px;
        border-bottom: 1px solid #f0f0f0;
        border-left: 4px solid transparent;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: all 0.2s;
    }

    .header-nav-link i {
        width: 18px;
        text-align: center;
        color: var(--primary);
        font-size: 14px;
    }

    .header-nav-link:hover {
        background: #fffaf2;
        border-left-color: var(--primary);
        color: var(--primary);
    }

    .header-nav-link.active {
        background: #fff8ee;
        border-left-color: var(--primary);
        color: var(--primary);
        border-bottom: 1px solid #f0f0f0;
    }
}

@media (max-width: 400px) {
    /* Very small screens — show only icons in action buttons */
    .header-call-btn .btn-text,
    .header-book-btn .btn-text {
        display: none;
    }
    .header-call-btn,
    .header-book-btn {
        padding: 0 10px;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.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(--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(--primary);
    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(--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;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
}
.banner {
    background-image: url(img/sakshi.png);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.banner h1 {
    font-size: 50px;
}
.booking-form {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}
.booking-form input,
.booking-form select,
.booking-form button {
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.booking-form button {
    background-color: orange;
    color: #fff;
    cursor: pointer;
}
/* About Us and Why Choose Us Section */
.about-why {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    align-items: center;
    background-color: #fff;
}
.text-section {
    flex: 1;
    max-width: 50%;
}
.text-section h2 {
    font-size: 28px;
    color: orange;
    margin-bottom: 10px;
    position: relative;
}
.text-section h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color:black;
    margin-top: 10px;
}
.text-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.text-section ul {
    list-style: disc;
    padding-left: 20px;
}
.text-section ul li {
    font-size: 18px;
    margin-bottom: 10px;
}
.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}
.image-section img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}
/* Gallery Section */
.gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    padding: 20px;
    background-color: #FCAE1E;
    margin-bottom: 50px;
}
.image-box {
    width: 30%;
    height: 250px; /* Set a fixed height for all images */
    overflow: hidden; /* Ensure images don’t overflow their containers */
    transition: transform 0.5s ease;
}
.image-box:hover {
    transform: scale(1.1);
}
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the container without stretching */
    border-radius: 10px;
    margin-bottom: 50px;
}
/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.page-header-inner {
    background: rgba(5, 14, 36, 0.7);
    height: 100%;
}
.footer {
    position: relative;
    margin-top: -50px;
    padding-top: 8px;
}
.orange-text {
    color: orange;
}


.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.footer {
    padding: 20px 0; /* Add padding for better spacing */
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .footer .col-lg-2 {
        text-align: center; /* Center logo on smaller screens */
    }
    .footer .col-lg-10 {
        flex-direction: column; /* Stack icons vertically */
        align-items: center; /* Center items */
    }
    .footer .d-flex {
        margin-bottom: 20px; /* Add margin between items */
    }
}

@media (max-width: 768px) {
    .footer .d-flex.flex-column.align-items-center {
        width: 100%; /* Ensure full width for each item */
    }
}
@media (max-width: 768px) {
    .col-lg-10 {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
    }
}

/* Responsive About-Why Section */
@media (max-width: 768px) {
    .about-why {
        flex-direction: column;
        padding: 25px 15px;
    }
    .text-section,
    .image-section {
        max-width: 100%;
        width: 100%;
    }
    .image-section {
        margin-top: 20px;
    }
    .gallery {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .image-box {
        width: 90%;
    }
    .banner {
        height: 250px;
    }
    .banner h1 {
        font-size: 30px;
    }
}

/* Responsive carousel logo */
.carousel-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .carousel-logo {
        width: 130px;
        height: 130px;
    }
    .button-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .glass-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Fix container overflow on mobile */
@media (max-width: 575.98px) {
    .container-xxl {
        overflow-x: hidden;
    }
    .navbar-logo-area img {
        max-height: 40px;
    }
}
