.container {
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    padding-top: 58px;
    max-width: 400px
}

header {
    position: fixed;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    background-color: #fff;
    z-index: 200;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    height: 58px;
    overflow: hidden
}

.profile-container {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.profile-photo {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.menu-list-wrap {
    margin: 0;
    padding: 0;
}

/* ========================================
   🎨 ELEGANT LIGHT-THEMED MOBILE SIDEBAR
   Matches Website Color Scheme
   ======================================== */

.menu-list {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(88vw, 340px);
    height: 100dvh;
    height: 100vh;
    max-height: 100dvh;
    max-height: 100vh;
    background: #ffffff;
    background: linear-gradient(180deg, #f8fffe 0%, #ffffff 50%, #f5f9f8 100%);
    box-shadow: 4px 0 40px rgba(14, 102, 85, 0.15),
        inset -1px 0 0 rgba(14, 102, 85, 0.05);
    z-index: 1000;
    transition: left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border-radius: 0 28px 28px 0;
}

/* Subtle decorative pattern */
.menu-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(14, 102, 85, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Elegant top accent line */
.menu-list::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #0e6655 50%, #10b981 100%);
    z-index: 1;
    pointer-events: none;
}

.menu-list.active {
    left: 0;
}

/* Overlay for sidebar */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   🍔 MODERN HAMBURGER MENU ICON
   ======================================== */

.hamburger-menu {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1001;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 10px;
}

.hamburger-menu:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.hamburger-menu:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger-menu span {
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #0e6655 0%, #10b981 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu span:nth-child(1) {
    width: 20px;
}

.hamburger-menu span:nth-child(3) {
    width: 18px;
}

.hamburger-menu:hover span {
    background: linear-gradient(90deg, #10b981 0%, #0e6655 100%);
}

.hamburger-menu:hover span:nth-child(1),
.hamburger-menu:hover span:nth-child(3) {
    width: 24px;
}

.hamburger-menu.active {
    display: none;
}

/* Profile Container & Text for Header */
.profile-container {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.profileText {
    float: left;
    margin-top: 10px;
    text-align: left;
    margin-left: 20px;
    font-size: 15px;
    font-weight: 500;
}

.profileText p {
    font-size: 12px;
    color: var(--dark-blue);
}

.navBtn {
    position: absolute;
    right: 20px;
    top: 10px;
    text-align: right;
    width: 40px;
    height: 40px;
}

/* ========================================
   ✨ ELEGANT PROFILE CARD HEADER
   Light Theme with Teal Accents
   ======================================== */

.sidebar-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 24px;
    border: none;
    background: transparent;
    position: relative;
    margin: 16px 16px 24px;
    margin-top: max(env(safe-area-inset-top, 0px) + 3px, 19px);
    flex-shrink: 0;
    border-radius: 20px;
    z-index: 2;
}

/* Elegant light card background */
.sidebar-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 255, 254, 0.9) 100%);
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.15);
    box-shadow: 0 8px 32px rgba(14, 102, 85, 0.12),
        0 2px 8px rgba(14, 102, 85, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: -1;
}

/* Subtle glow effect */
.sidebar-header::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg,
            rgba(16, 185, 129, 0.1) 0%,
            transparent 50%);
    border-radius: 21px;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -2;
}

.sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* Modern teal gradient logo circle */
.logo-circle {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #10b981 0%, #0e6655 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35),
        0 4px 12px rgba(14, 102, 85, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

/* Subtle shimmer effect */
.logo-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 70%);
    transform: rotate(45deg);
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.logo-circle::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.logo-text h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.logo-text p {
    margin: 6px 0 0;
    font-size: 14px;
    color: #0e6655;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
}

/* Elegant underline accent */
.logo-text p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(16, 185, 129, 0.6) 50%,
            transparent 100%);
    transform: translateX(-50%);
}

/* Modern teal close button */
.sidebar-close {
    width: 40px;
    height: 40px;
    border: none;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 20px;
    color: #666;
    position: absolute;
    top: 18px;
    right: 18px;
    box-shadow: 0 4px 12px rgba(14, 102, 85, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(14, 102, 85, 0.1);
    z-index: 10;
}

.sidebar-close span {
    transition: all 0.3s ease;
    display: block;
}

.sidebar-close:hover {
    background: linear-gradient(135deg, #0e6655 0%, #10b981 100%);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(14, 102, 85, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.sidebar-close:active {
    transform: rotate(90deg) scale(0.95);
    box-shadow: 0 2px 8px rgba(14, 102, 85, 0.2);
}

/* ========================================
   🎯 ELEGANT MENU ITEMS - LIGHT THEME
   Clean cards with teal accents & icons
   ======================================== */

/* Sidebar Content Container */
.sidebar-content {
    flex: 1;
    padding: 0 18px calc(env(safe-area-inset-bottom, 0px) + 20px) 18px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    position: relative;
    z-index: 1;
}

/* Custom scrollbar */
.sidebar-content::-webkit-scrollbar {
    width: 5px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: rgba(16, 185, 129, 0.05);
    border-radius: 10px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.3), rgba(14, 102, 85, 0.3));
    border-radius: 10px;
    transition: background 0.3s ease;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.5), rgba(14, 102, 85, 0.5));
}

/* Elegant Menu Card Items */
.menu {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(14, 102, 85, 0.08),
        0 1px 3px rgba(14, 102, 85, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: slideInRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    transform: translateX(-20px);
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.08);
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Staggered animation */
.menu:nth-child(1) {
    animation-delay: 0.05s;
}

.menu:nth-child(2) {
    animation-delay: 0.1s;
}

.menu:nth-child(3) {
    animation-delay: 0.15s;
}

.menu:nth-child(4) {
    animation-delay: 0.2s;
}

.menu:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Left accent bar */
.menu::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #10b981, #0e6655);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover shimmer effect */
.menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(16, 185, 129, 0.1) 50%,
            transparent 100%);
    transition: left 0.5s ease;
}

.menu:hover {
    background: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    transform: translateX(4px) scale(1.01);
    box-shadow: 0 4px 16px rgba(14, 102, 85, 0.15),
        0 2px 8px rgba(14, 102, 85, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(16, 185, 129, 0.2);
}

.menu:hover::before {
    opacity: 1;
}

.menu:hover::after {
    left: 100%;
}

.menu:active {
    transform: translateX(2px) scale(0.99);
    box-shadow: 0 2px 6px rgba(14, 102, 85, 0.1);
}

/* Menu Label with Proper Icon Display */
.menu label {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 18px;
    margin: 0;
    font-size: 15.5px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    position: relative;
    text-align: left;
    gap: 14px;
    letter-spacing: 0.2px;
}

/* Icon Container - PROPERLY DISPLAYED */
.menu label .icon {
    width: 42px;
    height: 42px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(14, 102, 85, 0.08) 100%);
    border-radius: 12px;
    font-size: 19px;
    color: #0e6655;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(14, 102, 85, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    /* Ensure icon is visible */
    opacity: 1 !important;
    visibility: visible !important;
}

.menu:hover label .icon {
    background: linear-gradient(135deg, #10b981 0%, #0e6655 100%);
    color: white;
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3),
        0 0 0 3px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(16, 185, 129, 0.3);
}

.menu label:hover {
    color: #0e6655;
}

.menu label:active .icon {
    transform: scale(1.02);
}

/* Legacy icon styles - backup to ensure icons show */
.icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
    color: #0e6655;
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    /* Force visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

.menu:hover .icon {
    opacity: 1 !important;
    transform: scale(1.08);
    background: linear-gradient(135deg, #10b981 0%, #0e6655 100%);
    color: white;
}

.container {
    max-width: 500px;
    width: 100%;
    margin: unset;
    padding: 0 0;
    padding-top: 110px
}

.side-nav {
    width: 100%
}

.my-info {
    margin-bottom: 21vh
}

.clients-section-content {
    display: flex
}

.my-services-content-wrap {
    width: 100%
}

.my-pricing-content {
    flex-direction: column
}

.fun-facts-section-content {
    flex-wrap: wrap
}

.fun-facts-content-wrap {
    width: 50%;
    flex: unset;
    padding: 40px 20px
}

.blogs-content-wrap {
    max-width: 100% !important
}

.blog-item .img {
    height: 250px
}

.works-card .menu-list {
    position: relative;
    padding: 20px
}

.contact-bottom .info-list ul {
    flex-direction: column;
    justify-content: space-between
}

.contact-bottom .info-list li {
    max-width: 100%;
    width: unset !important
}

@media screen and (max-width:400px) {
    .clients-content-wrap {
        padding: 20px
    }

    .form-group {
        width: 100% !important;
        margin: 5px 0
    }
}

@media screen and (max-width:500px) {
    .works-content-wrap {
        width: 100% !important
    }

    .works-card .menu-list ul {
        flex-wrap: wrap
    }

    .works-card .menu-list ul li {
        margin: 10px 0
    }
}

@media screen and (min-height:800px) {
    .my-info {
        margin-bottom: 25vh
    }
}

@media screen and (min-height:850px) {
    .my-info {
        margin-bottom: 35vh
    }
}

/* Hide sidebar elements on desktop/laptop screens */
@media screen and (min-width: 651px) {

    .sidebar-header,
    .sidebar-footer,
    .logo-circle,
    .logo-text,
    .sidebar-close {
        display: none !important;
    }

    .menu-overlay {
        display: none !important;
    }

    .hamburger-menu {
        display: none !important;
    }

    .profile-container {
        display: none !important;
    }

    /* Restore the menu-list for desktop sidebar navigation */
    .menu-list {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        max-height: auto !important;
        background: #fff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        z-index: auto !important;
        transition: none !important;
        display: block !important;
        flex-direction: column !important;
        padding: 13px 5px !important;
        overflow: visible !important;
        border-radius: 5px !important;
    }

    .menu-list::before {
        display: none !important;
    }
}

/* Responsive menu for different screen heights */
@media screen and (max-width: 650px) and (max-height: 700px) {
    .sidebar-header {
        padding: 16px 14px 12px;
    }

    .logo-circle {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .logo-text h3 {
        font-size: 16px;
    }

    .logo-text p {
        font-size: 12px;
    }

    .sidebar-content {
        padding: 12px 14px calc(env(safe-area-inset-bottom, 0px) + 12px) 14px;
        gap: 10px;
    }

    .menu {
        height: 56px;
    }

    .menu label {
        padding: 0 14px;
        font-size: 14px;
        gap: 10px;
    }

    .menu label .icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }
}

@media screen and (max-width: 650px) and (max-height: 600px) {
    .sidebar-header {
        padding: 12px 12px 10px;
    }

    .logo-circle {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border: 2px solid rgba(255, 255, 255, 0.9);
    }

    .logo-text h3 {
        font-size: 15px;
    }

    .logo-text p {
        font-size: 11px;
    }

    .sidebar-content {
        padding: 10px 12px calc(env(safe-area-inset-bottom, 0px) + 10px) 12px;
        gap: 8px;
    }

    .menu {
        height: 52px;
        border-radius: 12px;
    }

    .menu label {
        padding: 0 12px;
        font-size: 13px;
        gap: 10px;
    }

    .menu label .icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
        border-radius: 8px;
    }
}

/* Extra small screens - landscape phones */
@media screen and (max-width: 650px) and (max-height: 500px) {
    .sidebar-header {
        padding: 10px 12px 8px;
    }

    .sidebar-logo {
        gap: 6px;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border: 2px solid rgba(255, 255, 255, 0.9);
    }

    .logo-text h3 {
        font-size: 14px;
    }

    .logo-text p {
        font-size: 10px;
    }

    .sidebar-close {
        width: 32px;
        height: 32px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }

    .sidebar-content {
        padding: 8px 12px calc(env(safe-area-inset-bottom, 0px) + 8px) 12px;
        gap: 6px;
    }

    .menu {
        height: 48px;
        border-radius: 10px;
    }

    .menu label {
        padding: 0 10px;
        font-size: 12px;
        gap: 8px;
    }

    .menu label .icon {
        width: 26px;
        height: 26px;
        font-size: 13px;
        border-radius: 8px;
    }
}