.headerButtonMenu li a,
.subMenu li a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.headerButtonMenu li a,
.headerMainBox,
.subMenu li a {
    border-bottom: 1px solid var(--border-color);
}

.headerButtonMenu li a,
.mainLi a {
    text-decoration: none;
    color: #e7e1e1;
}

header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff;
}

.headerMainBox {
    width: 100%;
    position: relative;
    z-index: 10;
}

.headerRow {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logoBox {
    flex-basis: 20%;
}

.companyLogo {
    width: 230px;
    object-fit: cover;
}

.headerNavigation {
    width: max-content;
    flex-basis: 60%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerList {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.mainLi {
    padding: 35px 20px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    position: relative;
}

.headerButton,
.headerButtonMenu li a,
.subMenu li a {
    font-weight: 400;
    transition: 0.3s;
}

.mainLi span {
    transition: 0.3s;
    margin-left: 6px;
}

.mainLi a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.mainLi:hover {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

    .headerButtonBox:hover span,
    .mainLi:hover span {
        transform: rotate(-180deg);
    }

.subMenu {
    display: none;
    position: absolute;
    top: 70px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 250px;
    left: 10px;
    background-color: #fff;
}

    .subMenu li:last-child {
        border: none;
    }

    .headerButtonMenu li a:hover,
    .subMenu li a:hover {
        background-color: var(--hover-bg-color);
        border-bottom: 1px solid var(--primary-color);
    }

.headerButtonBox:hover .headerButtonMenu,
.menuItem:hover .subMenu {
    display: block;
}

.headerButtonBox {
    width: 120px;
    position: relative;
    padding: 25px 0;
    display: inline-block;
    vertical-align: top;
}

    .headerButtonBox + .headerButtonBox {
        margin-left: 8px;
    }

.headerButton {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    border: none;
    outline: 0;
    width: 100%;
}

.btnrandevu {
    width: 130px !important;
}

.btngiris {
    width: 80px !important;
}

.headerButton span {
    margin-left: 10px;
    transition: 0.3s;
}

.headerButton.primary {
    background-color: var(--primary-color);
    color: white;
}

    .headerButton.primary:hover {
        background-color: var(--color3-color);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

.headerButton.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

    .headerButton.secondary:hover {
        background-color: var(--hover-bg-color);
        border-color: var(--primary-color);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

.headerButton span {
    font-size: 14px;
}

.phaName,
.phaNameBox {
    margin-left: 8px;
}

    .f-number,
    .footerTitle,
    .phaName,
    .phaNameBox p {
        font-weight: 600;
    }

.headerButtonMenu {
    display: none;
    position: absolute;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 220px;
    top: 70px;
    right: 0;
    background-color: #fff;
    transition: 0.3s;
    overflow: hidden;
}

    .headerButtonMenu li {
        transition: 0.3s;
    }

.mobileHeaderMain,
.mobileHeaderMenu .phaButonBox {
    display: none;
}

/* Hamburger Menu Button Base Styles */
.hamburgerMenu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

    .hamburgerMenu span {
        width: 100%;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
        display: block;
    }

    .hamburgerMenu:hover span {
        background: #dc2626;
    }

    .hamburgerMenu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburgerMenu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburgerMenu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

.phaButonBox {
    width: 220px;
    padding: 16px 0;
    position: relative;
}

.phaButton {
    width: 220px;
    background-color: var(--color3-color);
    padding: 4px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.panelProfilePic,
.pha2ToggleBox img {
    height: 30px;
    width: 30px;
    object-fit: cover;
}

.phaButtonActive {
    background-color: var(--primary-color);
}

.phaLine1 {
    display: flex;
    align-items: center;
}

.panelProfilePic {
    border: 1px solid #fff;
    border-radius: 100%;
}

.phaName {
    color: #fff;
}

.phaLine1 span {
    font-size: 14px;
    margin-left: auto;
    margin-right: 8px;
    color: #fff;
    transition: 0.3s;
}

.phaButton2 {
    width: 300px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 16px 16px 8px;
    border-radius: 8px;
    transition: 0.3s;
    position: absolute;
    right: 0;
    top: 60px;
    display: none;
}

.pha2ToggleBox,
.phaLine2 {
    background-color: #f6f6f6;
}

.contactBox,
.footerDot,
.footerLastLine,
footer {
    position: relative;
}

.panelProfilePicOpen {
    height: 44px;
    width: 44px;
    object-fit: cover;
    border: 1px solid #fff;
    border-radius: 100%;
    margin-left: 8px;
}

.phaLine2 {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 8px 0;
    flex-wrap: wrap;
}

.pha2ToggleBox,
.phaToggleClickler {
    align-items: center;
    cursor: pointer;
}

.phaToggleClickler {
    display: flex;
    flex-basis: 100%;
    padding: 4px 0;
}

.phaNameBox span {
    font-size: 13px;
}

.phaChevron {
    margin-left: auto;
    margin-right: 12px;
    transition: 0.3s;
}

.phaLine2Toggler {
    flex-basis: 100%;
    display: none;
}

.pha2ToggleBox {
    display: flex;
    transition: 0.3s;
    padding: 8px;
}

    .pha2ToggleBox:nth-child(odd) {
        background-color: #f0f0f0;
    }

    .pha2ToggleBox img {
        border-radius: 100%;
        border: 1px solid #fff;
        margin-right: 8px;
    }

.logOut,
.phaGreyButton,
.phaSeperatorBox a {
    padding: 12px;
    border-radius: 8px;
    color: var(--text-color);
    transition: 0.3s;
    text-decoration: none;
}

.rotate180 {
    transform: rotate(180deg);
    transition: 0.3s;
}

.phaGreyButton {
    margin: 12px 0;
    background: #f6f6f6;
    text-align: center;
    display: block;
}

    .logOut:hover,
    .notifications:hover,
    .phaGreyButton:hover {
        background-color: var(--primary-color);
        color: #fff;
    }

.phaSeperatorBox {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
}

    .logOut,
    .phaSeperatorBox a {
        display: flex;
        align-items: center;
        width: 100%;
        margin: 8px 0;
    }

.dashboard {
    background-color: var(--color3-color);
    color: #fff !important;
}

.logOut i,
.phaSeperatorBox a i,
.phaSeperatorBox a img {
    margin-right: 8px;
}

footer {
    background-color: #2c2c2c;
    margin-top: 200px;
    width: 100%;
}

.contactBox {
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 25%, #f97316 50%, #fb923c 75%, #fbbf24 100%);
    border-radius: 32px;
    height: 180px;
    padding: 32px;
    top: -90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footerLogoBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 33%;
    height: 100%;
}

.footerlogoimg {
    height: 80px !important;
}

.footerNumberBox {
    flex-basis: calc(33% - 2px);
    border-right: 1px solid #ff9da1;
    border-left: 1px solid #ff9da1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Simple WhatsApp Button Styles */
.whatsapp-button-simple {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-button-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.whatsapp-icon-small {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.whatsapp-button-simple:hover .whatsapp-icon-small {
    transform: scale(1.1);
}

.button-text {
    font-size: 16px;
    font-weight: 600;
}

.footerSocialIcons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 33%;
}

.f-number {
    font-size: 39.1px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 16px;
}

.f-mail,
.footerTitle {
    font-size: 20px;
    color: #fff;
}

.f-mail {
    text-decoration: none;
}

.footerSocialIcons li {
    margin: 0 8px;
}

    .footerSocialIcons li a {
        font-size: 24px;
        text-decoration: none;
        color: #fff;
        background: linear-gradient(135deg, #dc2626 0%, #ea580c 25%, #f97316 50%, #fb923c 75%, #fbbf24 100%);
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        border-radius: 12px;
    }

        .footerSocialIcons li a:hover {
            background: linear-gradient(135deg, #fbbf24 0%, #fb923c 25%, #f97316 50%, #ea580c 75%, #dc2626 100%);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

.footerTitle {
    margin-bottom: 20px;
}

.footerUlNav li {
    padding: 8px 0;
    margin: 8px 0;
    width: max-content;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

    .footerUlNav li:hover {
        border-bottom: 1px solid #f5f3f4;
    }

    .footerUlNav li a {
        color: #f5f3f4;
        text-decoration: none;
    }

.footerListRow {
    margin-top: -40px;
}

.footerUlButons li {
    margin: 8px 0;
}

.footerLastLine {
    color: #f5f3f4;
    font-size: 13px;
    margin-top: 4px;
    /* padding: 20px 20px; */
    padding-bottom: 20px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
}

    .footerLastLine p {
        width: max-content;
        color: #fff;
    }

.footerLastUl {
    width: max-content;
    display: flex;
}

    .footerLastUl li a {
        margin: 0 16px;
        text-decoration: none;
        color: #f5f3f4;
    }

.footerDot::after {
    content: "";
    height: 5px;
    width: 5px;
    background-color: #f5f3f4;
    position: absolute;
    right: -2px;
    border-radius: 100%;
    top: calc(50% - 2.5px);
}

@media (min-width: 0) and (max-width: 575px) {
    .mobileHeaderLastButonList li a,
    .mobileMainLi a {
        color: var(--text-color);
        text-decoration: none;
    }

    .footerLastLine p,
    .footerTitle,
    .footerUl {
        text-align: center;
    }

    .headerMainBox {
        padding: 16px 12px;
    }

    .footerSocialIcons,
    .headerButtonBox,
    .mobileSubUl,
    .phaButonBox {
        display: none;
    }

    /* Mobil iÃ§in header navigation'Ä± gizle */
    .headerNavigation {
        display: none !important;
    }

    .headerRow {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .logoBox {
        /* flex-basis: auto; */
        order: 1;
    }

    .hamburgerMenu {
        display: flex !important;
        order: 2;
        margin-left: auto;
        width: 30px;
        height: 30px;
        flex-direction: column;
        justify-content: space-around;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }

        .hamburgerMenu span {
            width: 100%;
            height: 3px;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
            display: block;
        }

    .mobileHeaderMain {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
        z-index: 9999;
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

        .mobileHeaderMain.show {
            opacity: 1;
            visibility: visible;
        }

    .mobileHeaderOverlay {
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 3;
    }

    .mobileHeaderMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100%;
        background-color: #fff;
        z-index: 4;
        overflow-y: auto;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .mobileHeaderMain.show .mobileHeaderMenu {
        right: 0;
    }

    .mobileLogoRow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0 16px 24px;
    }

    .mobileLogo img {
        width: 160px;
        object-fit: cover;
    }

    .mobileCloseIcon {
        padding: 0.5px 16px;
    }

        .mobileCloseIcon svg {
            height: 40px;
            width: 40px;
            fill: var(--text-color);
        }

    .mobileSubUl li {
        padding: 16px 32px;
    }

    .mobileMainLi {
        font-weight: 700;
    }

    .mobileSubMenuButon {
        padding: 16px;
        display: flex;
        font-weight: 700;
        transition: 0.3s;
    }

        .mobileSubMenuButon span {
            margin-left: auto;
            transition: 0.3s;
        }

    .mobileMenuMainHref {
        padding: 16px;
        display: block;
    }

    .mobileMenuActive {
        background-color: var(--hover-bg-color);
        color: var(--primary-color);
    }

    .mobileSubMenuActive {
        transform: rotate(-180deg);
    }

    .mobileLastButonBox {
        width: calc(100% - 32px);
        margin: 16px auto;
        position: relative;
    }

    .mobileHeaderLastButon {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        width: 100%;
        background-color: var(--primary-color);
        color: #fff;
        border-radius: 16px;
        outline: 0;
        box-shadow: none;
        border: 1px solid var(--primary-color);
        transition: 0.3s;
    }

        .mobileHeaderLastButon span {
            margin-left: 16px;
            transition: 0.3s;
        }

    .mobileHeaderLastButonList {
        width: 100%;
        border: 1px solid var(--border-color);
        border-radius: 0 0 16px 16px;
        display: none;
        background-color: #fff;
    }

        .mobileHeaderLastButonList li {
            padding: 16px 34px;
        }

    .mobileHeaderLastButonActive {
        border-radius: 16px 16px 0 0;
    }

    .mobileSocialIconRow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        position: relative;
        bottom: 0;
    }

    .mobileSocialIconBox {
        font-size: 22px;
        padding: 10px;
        background: var(--border-color);
        border-radius: 8px;
        color: var(--primary-color);
    }

    .mobileHeaderMenu .phaButonBox {
        display: block;
        width: 100%;
        padding: 0 16px;
        margin: 16px 0;
    }

    .phaButton {
        width: 100%;
        padding: 12px;
    }

    .phaButton2 {
        width: 100%;
        position: relative;
        top: auto;
        margin-top: 8px;
    }

    .footerUl {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
    }

    .contactBox {
        padding: 12px;
        height: auto;
        flex-direction: column;
    }

    .footerLogoBox {
        padding: 24px 0;
    }

    .footerNumberBox {
        border-top: 1px solid #ff9da1;
        border-right: none;
        border-left: none;
        padding: 24px 0;
    }

    .footerLastUl {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .footerLastLine p {
        width: 100%;
    }

    .headerButtonBox {
        width: 100%;
        padding: 0;
        margin: 8px 0;
        display: block;
    }

        .headerButtonBox + .headerButtonBox {
            margin-left: 0;
        }

    .headerButton {
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .container,
    .container-sm {
        max-width: none;
        width: calc(100vw - 32px);
    }

    .flexEnd {
        align-items: flex-end;
    }

    .customReverseRow {
        flex-direction: column-reverse;
    }

    .customCenterRow {
        align-items: center;
    }

    .headerMainBox {
        padding: 16px 12px;
    }

    .footerSocialIcons,
    .mobileLastButonBox,
    .mobileSocialIconRow,
    .mobileSubUl {
        display: none;
    }

    /* Tablet iÃ§in header navigation'Ä± gizle ve hamburger menÃ¼yÃ¼ gÃ¶ster */
    .headerNavigation {
        display: none !important;
    }

    .headerRow {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
    }

    .logoBox {
        /* flex-basis: auto; */
        order: 1;
    }

    .headerButtonBox {
        padding: 0;
        margin-left: auto;
        order: 2;
    }

    .headerButtonMenu {
        top: 42px;
    }

    .hamburgerMenu {
        display: flex !important;
        order: 3;
        margin-left: 16px;
        width: 30px;
        height: 30px;
        flex-direction: column;
        justify-content: space-around;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }

        .hamburgerMenu span {
            width: 100%;
            height: 3px;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
            display: block;
        }

    .mobileHeaderMain {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
        z-index: 9999;
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

        .mobileHeaderMain.show {
            opacity: 1;
            visibility: visible;
        }

    .mobileHeaderOverlay {
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 3;
    }

    .mobileHeaderMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100%;
        background-color: #fff;
        z-index: 4;
        overflow-y: auto;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .mobileHeaderMain.show .mobileHeaderMenu {
        right: 0;
    }

    .mobileLogoRow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0 16px 24px;
    }

    .mobileLogo img {
        width: 160px;
        object-fit: cover;
    }

    .mobileCloseIcon {
        padding: 0.5px 16px;
    }

        .mobileCloseIcon svg {
            height: 40px;
            width: 40px;
            fill: var(--text-color);
        }

    .mobileSubUl li {
        padding: 16px 32px;
    }

    .mobileMainLi {
        font-weight: 700;
    }

        .mobileMainLi a {
            text-decoration: none;
            color: var(--text-color);
        }

    .mobileSubMenuButon {
        padding: 16px;
        display: flex;
        font-weight: 700;
        transition: 0.3s;
    }

        .mobileSubMenuButon span {
            margin-left: auto;
            transition: 0.3s;
        }

    .mobileMenuMainHref {
        padding: 16px;
        display: block;
    }

    .mobileMenuActive {
        background-color: var(--hover-bg-color);
        color: var(--primary-color);
    }

    .mobileSubMenuActive {
        transform: rotate(-180deg);
    }

    .mobileHeaderLastButonActive {
        border-radius: 16px 16px 0 0;
    }

    .phaButonBox {
        margin-left: auto;
    }

    .footerNumberBox {
        border-right: none;
        flex-basis: calc(50% - 1px);
    }

    .footerLogoBox {
        flex-basis: 50%;
    }

    .footerUl {
        margin-bottom: 60px;
    }

    .footerLastLine {
        justify-content: center !important;
    }

    .footerLastUl {
        margin-top: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1139px) {
    .flexEnd {
        align-items: flex-end;
    }

    .customCenterRow {
        align-items: center;
    }

    .headerMainBox {
        padding: 16px 12px;
    }

    .mobileLastButonBox,
    .mobileSocialIconRow,
    .mobileSubUl {
        display: none;
    }

    /* KÃ¼Ã§Ã¼k desktop iÃ§in header navigation'Ä± gizle ve hamburger menÃ¼yÃ¼ gÃ¶ster */
    .headerNavigation {
        display: none !important;
    }

    .headerRow {
        justify-content: space-between;
        align-items: center;
    }

    .logoBox {
        /* flex-basis: auto; */
        order: 1;
    }

    .headerButtonBox {
        padding: 0;
        margin-left: auto;
        order: 2;
    }

    .headerButtonMenu {
        top: 42px;
    }

    .hamburgerMenu {
        display: flex !important;
        order: 3;
        margin-left: 16px;
        width: 30px;
        height: 30px;
        flex-direction: column;
        justify-content: space-around;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }

        .hamburgerMenu span {
            width: 100%;
            height: 3px;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
            display: block;
        }

    .mobileHeaderMain {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
        z-index: 9999;
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

        .mobileHeaderMain.show {
            opacity: 1;
            visibility: visible;
        }

    .mobileHeaderOverlay {
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 3;
    }

    .mobileHeaderMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100%;
        background-color: #fff;
        z-index: 4;
        overflow-y: auto;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .mobileHeaderMain.show .mobileHeaderMenu {
        right: 0;
    }

    .mobileLogoRow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0 16px 24px;
    }

    .mobileLogo img {
        width: 160px;
        object-fit: cover;
    }

    .mobileCloseIcon {
        padding: 0.5px 16px;
    }

        .mobileCloseIcon svg {
            height: 40px;
            width: 40px;
            fill: var(--text-color);
        }

    .mobileSubUl li {
        padding: 16px 32px;
    }

    .mobileMainLi {
        font-weight: 700;
    }

        .mobileMainLi a {
            text-decoration: none;
            color: var(--text-color);
        }

    .mobileSubMenuButon {
        padding: 16px;
        display: flex;
        font-weight: 700;
        transition: 0.3s;
    }

        .mobileSubMenuButon span {
            margin-left: auto;
            transition: 0.3s;
        }

    .mobileMenuMainHref {
        padding: 16px;
        display: block;
    }

    .footerTitle,
    .footerUl {
        padding-left: 80px;
    }

    .mobileMenuActive {
        background-color: var(--hover-bg-color);
        color: var(--primary-color);
    }

    .mobileSubMenuActive {
        transform: rotate(-180deg);
    }

    .mobileHeaderLastButonActive {
        border-radius: 16px 16px 0 0;
    }

    .phaButonBox {
        margin-left: auto;
    }

    .footerUl {
        margin-bottom: 60px;
    }

    .footerLastLine {
        justify-content: center !important;
        flex-direction: column;
    }

    .footerLastUl {
        margin-top: 16px;
    }
}

@media (min-width: 1140px) and (max-width: 1399px) {
    .logoBox {
        flex-basis: 15%;
    }

    .headerNavigation {
        flex-basis: 63%;
    }

    .customColForIpadPro2 {
        width: 25% !important;
    }

    .container, .container-sm {
        max-width: none;
        width: calc(100vw - 32px);
    }
}

.button-group {
    display: flex;
    gap: 8px;
    background: #f8f9fa;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.modal-fullscreen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .modal-fullscreen.show {
        opacity: 1;
    }

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 400px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-fullscreen.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 20px;
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h2 {
        margin: 0;
        font-size: 1.5rem;
        color: #fff;
        font-weight: 600;
    }

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    transition: color 0.2s ease;
}

    .close-modal:hover {
        color: rgba(255, 255, 255, 0.8);
    }

.login-container {
    padding: 30px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label {
        font-weight: 500;
        color: var(--text-color);
        font-size: 14px;
    }

    .form-group input {
        padding: 12px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s ease;
        background-color: #f8f9fa;
    }

        .form-group input:focus {
            border-color: var(--primary-color);
            outline: none;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(255, 70, 77, 0.1);
        }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .forgot-password:hover {
        color: var(--color3-color);
    }

.login-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

    .login-button:hover {
        background-color: var(--color3-color);
        transform: translateY(-2px);
    }

.social-login {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

    .social-login p {
        color: var(--text-color);
        margin-bottom: 15px;
        font-size: 13px;
    }

.social-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-button {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-size: 13px;
}

    .social-button:hover {
        background-color: var(--hover-bg-color);
        border-color: var(--primary-color);
    }

    .social-button.google i {
        color: #DB4437;
    }

    .social-button.facebook i {
        color: #4267B2;
    }

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        padding: 4px;
    }

    .headerButton {
        width: 100%;
        justify-content: center;
    }

    .social-buttons {
        flex-direction: column;
    }
}

.login-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    margin-top: 8px;
}

    .login-dropdown.show {
        display: block;
    }

    .login-dropdown::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 20px;
        width: 16px;
        height: 16px;
        background: #fff;
        border-left: 1px solid var(--border-color);
        border-top: 1px solid var(--border-color);
        transform: rotate(45deg);
    }

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .form-group label {
        font-size: 14px;
        color: var(--text-color);
    }

    .form-group input {
        padding: 8px 12px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 14px;
    }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
}

.login-button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.social-login {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

    .social-login p {
        text-align: center;
        font-size: 13px;
        color: var(--text-color);
        margin-bottom: 10px;
    }

.social-buttons {
    display: flex;
    gap: 10px;
}

.social-button {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
}

    .social-button:hover {
        background: var(--hover-bg-color);
    }

    .social-button.google i {
        color: #DB4437;
    }

    .social-button.facebook i {
        color: #4267B2;
    }

@media (max-width: 768px) {
    .login-dropdown {
        width: 100%;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        margin-top: 0;
    }

        .login-dropdown::before {
            display: none;
        }
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .form-header h3 {
        margin: 0;
        font-size: 18px;
        color: var(--text-color);
    }

.back-to-login {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: color 0.3s;
}

    .back-to-login:hover {
        color: var(--primary-color);
    }

.forgot-password-form {
    padding: 20px;
}

    .forgot-password-form .login-button {
        margin-top: 10px;
    }

    .forgot-password-form .form-group {
        margin-bottom: 15px;
    }

    .forgot-password-form label {
        font-size: 14px;
        color: var(--text-color);
        margin-bottom: 5px;
    }

    .forgot-password-form input {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 14px;
    }

        .forgot-password-form input:focus {
            border-color: var(--primary-color);
            outline: none;
        }

.user-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    min-width: 180px;
    height: 44px;
    white-space: nowrap;
}

    .user-button .user-name {
        flex: 1;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0 2px;
    }

    .user-button i {
        font-size: 12px;
        color: #666;
    }

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}

    .user-avatar:hover {
        transform: scale(1.1);
    }

.user-avatar-large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease;
}

    .user-avatar-large:hover {
        transform: scale(1.1);
    }

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    display: none;
    z-index: 1000;
}

    .user-dropdown.show {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .user-dropdown::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 20px;
        width: 16px;
        height: 16px;
        background: white;
        border-left: 1px solid #e9ecef;
        border-top: 1px solid #e9ecef;
        transform: rotate(45deg);
        z-index: -1;
    }

.user-info {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    background: #f8f9fa;
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-fullname {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 13px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-menu-items {
    padding: 8px 0;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .user-menu-item:hover {
        background-color: #f8f9fa;
    }

    .user-menu-item i {
        font-size: 16px;
        width: 20px;
        text-align: center;
        color: #666;
    }

    .user-menu-item.logout {
        border-top: 1px solid var(--border-color);
        color: #dc3545;
    }

        .user-menu-item.logout:hover {
            background-color: #fff1f1;
        }

        .user-menu-item.logout i {
            color: #dc3545;
        }

@media (max-width: 991px) {
    .mobileHeaderMain {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

        .mobileHeaderMain.show {
            opacity: 1;
            visibility: visible;
        }

    .mobileHeaderMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100%;
        background: #fff;
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .mobileHeaderMain.show .mobileHeaderMenu {
        right: 0;
    }

    .mobileMainUl {
        flex: 1;
        overflow-y: auto;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .mobileLastButonBox {
        padding: 16px;
        border-top: 1px solid #eee;
        background: #fff;
        margin-top: auto;
    }

    .mobile-user-info {
        margin-bottom: 16px;
        padding: 16px;
        background: #f8f9fa;
        border-radius: 12px;
        border: 1px solid #eee;
    }

    .mobile-menu-items {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mobile-menu-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 8px;
        background: #fff;
        color: #333;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        border: 1px solid #eee;
        transition: all 0.2s;
    }

        .mobile-menu-item:hover {
            background: #f8f9fa;
        }

        .mobile-menu-item.logout {
            color: #dc3545;
        }

            .mobile-menu-item.logout:hover {
                background: #fff1f1;
            }

    .mobileSocialIconRow {
        display: flex;
        justify-content: center;
        gap: 16px;
        padding: 16px;
        border-top: 1px solid #eee;
        background: #fff;
    }

    .mobileSocialIconBox {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #f8f9fa;
        color: var(--primary-color);
        transition: all 0.2s;
    }

        .mobileSocialIconBox:hover {
            background: var(--primary-color);
            color: #fff;
        }
}

.user-menu {
    position: relative;
    width: 130px;
    max-width: 130px;
}

.user-button {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .user-button:hover {
        background: rgba(0, 0, 0, 0.05);
    }

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 0.9rem;
    color: #2c3e50;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: calc(100% + -225px);
    /* right: 0; */
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    display: none;
    z-index: 1000;
}

    .user-dropdown.show {
        display: block;
        animation: slideDown 0.3s ease;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.user-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details {
    flex: 1;
}

.user-fullname {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.25rem;
}

.user-email {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

.user-menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .user-menu-item:hover {
        background: #f8f9fa;
        color: var(--primary-color);
    }

    .user-menu-item i {
        width: 20px;
        text-align: center;
        color: #6c757d;
    }

    .user-menu-item:hover i {
        color: var(--primary-color);
    }

    .user-menu-item.logout {
        margin-top: 0.5rem;
        color: #dc3545;
        background: transparent;
        border: none;
        cursor: pointer;
        text-align: left;
        font-size: 0.9rem;
    }

        .user-menu-item.logout:hover {
            background: #dc3545;
            color: white;
        }

            .user-menu-item.logout:hover i {
                color: white;
            }

@media (max-width: 991px) {
    .headerButtonBox.menuItem.user-menu {
        margin-left: 0;
        width: auto;
    }

    .user-button {
        min-width: auto;
        padding: 6px 8px;
    }

        .user-button .user-name {
            display: none;
        }

        .user-button i {
            display: none;
        }

    .user-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 16px 16px 0 0;
        margin-top: 0;
        max-height: 85vh;
        overflow-y: auto;
    }

        .user-dropdown::before {
            display: none;
        }
}

/* Hamburger Menu Active States for All Responsive Breakpoints */
@media (min-width: 0) and (max-width: 575px) {
    .hamburgerMenu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburgerMenu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburgerMenu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .hamburgerMenu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburgerMenu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburgerMenu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (min-width: 992px) and (max-width: 1139px) {
    .hamburgerMenu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburgerMenu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburgerMenu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
