/* Gray color = #696E71 */
/* orange color = #EF721E */
/* blue color = #008BA6 */
/* green color = #B0D432 */

:root {
    --orange-color: #ef721e72;
    --orange-color1: rgb(239, 114, 30);
    --blur-color: #008BA6;
    --gray-color: #696E71;
    --green-color: #B0D432;
    --white-color: #fff;
    --text-white: #ffffff;
    --overlay-dark: rgba(71, 68, 68, 0.65);
    --gradient-blue-orange: linear-gradient(225deg, hsla(24, 87%, 53%, 1) 0%, hsla(190, 100%, 33%, 1) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #f8f7f8;
    font-family: 'Nunito Sans', sans-serif;
    overflow-x: hidden;
}


.heading-text {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 678;
    font-style: normal;
    font-variation-settings:
        "wdth" 100,
        "YTLC" 540;
}


.navbar-container {
    background-color: #f8f7f8;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-text-heading {
    font-weight: 600;
    font-size: 25px;
    color: var(--gray-color);
}

.logo-icon {
    position: relative;
}

.logo-icon .overlay-icon {
    position: absolute;
    top: 4px;
    left: 4px;
}

.nav-link {
    color: #2d2f35;
    margin-right: 1.5rem;
    font-weight: 500;
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #2d2f35;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

.icon-group i {
    font-size: 1.2rem;
    color: var(--gray-color);
    cursor: pointer;
}


/* Dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    background: #fff;
    border: none;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1050;
}

.sidebar.show {
    right: 0;
}

.sidebar-header {
    border-bottom: 1px solid #e5e5e5;
}

.sidebar-body {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.sidebar-link {
    padding: 0.75rem 0;
    font-weight: 500;
    color: #2d2f35;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
}

.sidebar-dropdown .sidebar-submenu,
.sidebar-subdropdown .sidebar-submenu {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.sidebar-dropdown:hover .sidebar-submenu,
.sidebar-subdropdown:hover .sidebar-submenu {
    display: flex;
}

.sidebar-submenu a {
    padding: 0.3rem 0;
    color: #444;
}

/* Responsive Fix */
@media (max-width: 991.98px) {
    .nav-links {
        display: none !important;
    }
}


.nested-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1060;
}

.nested-sidebar.show {
    right: 0;
}

.dropdown-container {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 130%;
    /* attach directly below the parent */
    left: 0;
    min-width: 240px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    transform: translateY(10px);
}

/* KEY FIX: stay open when hovering link OR dropdown */
.dropdown-container:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Dropdown items */
.dropdown-item-custom {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    color: #2d2f35;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Highlight on hover with smooth transition */
.dropdown-item-custom:hover {
    background-color: var(--orange-color);
    /* light orange */
}



/* Sidebar styling */
.right-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem 1.5rem;
}

/* Show sidebar */
.right-sidebar.active {
    right: 0;
}

/* Close button inside the sidebar */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    background-color: transparent;
    border: none;
    color: #333;
    cursor: pointer;
    z-index: 2001;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.bar-icon-btn {
    border: 0px;
    font-size: 25px;
    background-color: transparent;
}

/* Hide bar icon on small screens */
@media (max-width: 991px) {
    .bar-icon-btn {
        display: none;
    }
}

/*========================= Navbar end======================= */

/* ==============================breadcrumb start============================= */

.breadcrumb-section {
    background:
        linear-gradient(to right, rgba(1, 33, 45, 0.864), rgba(1, 33, 45, 0.4)),
        url('../Photos/Services/s7') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 100px 20px;
    color: #fff;
}


.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content p {
    font-weight: lighter;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.custom-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    flex-wrap: wrap;
}

.custom-breadcrumb i {
    color: var(--text-color);
    /* red arrow */
}


@media (max-width: 767.98px) {
    .breadcrumb-content {
        text-align: center;
    }
}

/* ==============================breadcrumb end  =============================*/
.custom-faq-section {
    padding: 80px 0;
}

.custom-faq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-faq-title {
    color: var(--blur-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.custom-faq-heading {
    font-size: 40px;
    font-weight: lighter;
    margin: 10px 0 20px;
}

.custom-faq-desc {
    font-family: "Nuntio Sans",sans-serif;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.custom-faq .accordion-button {
    background-color: #f6f4f4;
    color: #111;
    font-weight: 500;
    padding: 18px;
}

.custom-faq .accordion-button:not(.collapsed) {
    background-color: var(--blur-color);
    color: #fff;
    box-shadow: none;
}

.custom-faq .accordion-body {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #eee;
    color: #444;
}

.custom-faq .accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg fill='black' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform 0.3s;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .custom-faq-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .custom-faq-heading {
        font-size: 30px;
    }
}

/*==================================== Footer start=============================  */

.footer-marblex {
    background-image: linear-gradient(rgba(0, 0, 0, 0.797), rgba(0, 0, 0, 0.808)), url(../Photos/Services/s7);
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.footer-marblex a.footer-link {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.footer-marblex a.footer-link:hover {
    color: var(--blur-color);
}

/* Responsive background image for mobile */
@media (max-width: 768px) {
    .footer-marblex {
        background-image: linear-gradient(rgba(0, 0, 0, 0.797), rgba(0, 0, 0, 0.808)), url(../Photos/Services/s7);
    }
}

/*==================================== Footer end=============================  */