@media (min-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background: #EE9832;
        transition: all 0.3s ease-in-out;
        padding-top: 60px;
        color: white;
        z-index: 1050;
    }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #EE9832;
        transition: all 0.3s ease-in-out;
        padding-top: 60px;
        color: white;
        z-index: 1050;
    }
}

.sidebar.active {
    left: 0;
}

.menu-icon,
.close-icon {
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    font-size: 24px;
    color: black;
}

.close-icon {
    display: none;
}

/* Close button inside sidebar */
#sidebar .btn-danger {
    display: none;
    /* Initially hidden */
}

@media (min-width: 768px) {
    ul li a {
        text-decoration: none;
        color: #6E3D1C;
        display: block;
        padding: 10px;
        font-size: 30px !important;
    }
}

@media (max-width: 768px) {
    ul li a {
        text-decoration: none;
        color: #6E3D1C;
        display: block;
        padding: 10px;
        font-size: 22px !important;
    }
}

@media (min-width: 768px) {
    .claypot-logo {
        height: 65px;
        width: auto;
    }
}

@media (max-width: 767px) {
    .claypot-logo {
        height: 50px;
        width: auto;
    }
}



/* desktop service dropdown css */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-item {
    color: #6E3D1C !important;
    font-size: 20px !important;
    letter-spacing: 1px;
}

.dropdown-item:hover {
    background-color: #EE9832;
    color: white !important;
}



/* mobile service dropdown css */
.mobile-dropdown {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    display: block !important;
    padding-left: 1rem;
}

.mobile-dropdown.show {
    max-height: 500px;
}

.dropdown-toggle-icon.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.sub-menu {
    font-size: 14px !important;
    padding-left: 40px !important;
}

.dropdown-item {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
}