/* estedad font */
@font-face {
    font-family: 'Estedad';
    src: url('../css/fonts/estedad/Estedad-FD-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Estedad';
    src: url('../css/fonts/estedad/Estedad-FD-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Estedad';
    src: url('../css/fonts/estedad/Estedad-FD-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Estedad';
    src: url('../css/fonts/estedad/Estedad-FD-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Estedad';
    src: url('../css/fonts/estedad/Estedad-FD-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Estedad';
    src: url('../css/fonts/estedad/Estedad-FD-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Estedad';
    src: url('../css/fonts/estedad/Estedad-FD-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Estedad';
    src: url('../css/fonts/estedad/Estedad-FD-UltraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Estedad';
    src: url('../css/fonts/estedad/Estedad-FD-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}




/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-size: var(--body-font-size);
    font-family: 'Estedad', sans-serif;
    line-height: var(--body-line-height);
    font-weight: var(--body-font-weight);
    overflow-x: hidden;
}

body:not(.home) {
    background-color: #FAF8F0;
    color: var(--neutral800);
}

body.home {
    background-color: var(--neutral900);
    color: var(--primary100);
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: 'Estedad', sans-serif;
    font-size: inherit;
    border: none;
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1 {
    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);
    font-weight: var(--h1-font-weight);
}

h2 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
    font-weight: var(--h2-font-weight);
}

h3 {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
    font-weight: var(--h3-font-weight);
}

h4 {
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
    font-weight: var(--h4-font-weight);
}

h5 {
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    font-weight: var(--h5-font-weight);
}

h6 {
    font-size: var(--h6-font-size);
    line-height: var(--h6-line-height);
    font-weight: var(--h6-font-weight);
}

:root {
    /* Primary Colors */
    --primary100: #FFF6D9;
    --primary200: #FCE597;
    --primary300: #F7D563;
    --primary400: #F0C434;
    --primary500: #D9AF25;
    --primary600: #BF9817;
    --primary700: #A6810A;
    --primary800: #967201;

    /* Secondary Colors */
    --secondary100: #F2FEFF;
    --secondary200: #CAF7FC;
    --secondary300: #ADF0F7;
    --secondary400: #90E6F0;
    --secondary500: #6DDBE8;
    --secondary600: #34BECF;
    --secondary700: #1996A6;
    --secondary800: #0D7380;

    /* Neutral Colors */
    --neutral100: #F5F3EB;
    --neutral200: #EBE8E1;
    --neutral300: #D9D6D0;
    --neutral400: #B8B5AF;
    --neutral500: #A6A39E;
    --neutral600: #73716D;
    --neutral700: #4D4B49;
    --neutral800: #333230;
    --neutral900: #1A1918;
    --neutral1000: #141413;

    /* Success Colors */
    --success100: #D4F3F5;
    --success200: #98DBE1;
    --success300: #46B7C2;
    --success400: #00717C;
    --success500: #01464D;
    --success600: #012C30;

    /* Danger Colors */
    --danger100: #FDD3D0;
    --danger200: #F9B6B5;
    --danger300: #F36F6D;
    --danger400: #EC221F;
    --danger500: #C20C0A;
    --danger600: #940200;

    /* Warning Colors */
    --warning100: #FFFAD3;
    --warning200: #FFF18A;
    --warning300: #FBE53D;
    --warning400: #EFD409;
    --warning500: #C7B007;
    --warning600: #9F8D03;

    /* Default: Mobile */
    --h1-font-size: 24px;
    --h1-line-height: 44px;
    --h1-font-weight: 700;

    --h2-font-size: 21px;
    --h2-line-height: 38px;
    --h2-font-weight: 700;

    --h3-font-size: 18px;
    --h3-line-height: 32px;
    --h3-font-weight: 600;

    --h4-font-size: 17px;
    --h4-line-height: 30px;
    --h4-font-weight: 600;

    --h5-font-size: 16px;
    --h5-line-height: 26px;
    --h5-font-weight: 500;

    --h6-font-size: 15px;
    --h6-line-height: 24px;
    --h6-font-weight: 500;

    --body-font-size: 15px;
    --body-line-height: 24px;
    --body-font-weight: 400;

    --caption-font-size: 12px;
    --caption-line-height: 26px;
    --caption-font-weight: 400;

    --label-font-size: 12px;
    --label-line-height: 18px;
    --label-font-weight: 500;
}

@media (min-width: 768px) {

    /* Tablet */
    :root {
        --h1-font-size: 36px;
        --h1-line-height: 56px;

        --h2-font-size: 28px;
        --h2-line-height: 46px;

        --h3-font-size: 22px;
        --h3-line-height: 40px;

        --h4-font-size: 20px;
        --h4-line-height: 36px;

        --h5-font-size: 18px;
        --h5-line-height: 32px;

        --h6-font-size: 16px;
        --h6-line-height: 28px;

        --body-font-size: 15px;
        --body-line-height: 30px;

        --caption-font-size: 14px;
        --caption-line-height: 28px;

        --label-font-size: 12px;
        --label-line-height: 18px;
    }
}

@media (min-width: 1199px) {

    /* Desktop */
    :root {
        --h1-font-size: 44px;
        --h1-line-height: 70px;

        --h2-font-size: 32px;
        --h2-line-height: 50px;

        --h3-font-size: 26px;
        --h3-line-height: 44px;

        --h4-font-size: 22px;
        --h4-line-height: 40px;

        --h5-font-size: 20px;
        --h5-line-height: 36px;

        --h6-font-size: 18px;
        --h6-line-height: 32px;

        --body-font-size: 16px;
        --body-line-height: 32px;

        --caption-font-size: 14px;
        --caption-line-height: 28px;

        --label-font-size: 12px;
        --label-line-height: 20px;
    }
}

.ex-container {
    max-width: 100%;
    padding-inline: 16px;
    margin-inline: auto;

    @media (min-width:576px) {
        max-width: 576px;
    }

    @media (min-width:768px) {
        max-width: 768px;
    }

    @media (min-width:992px) {
        max-width: 992px;
    }

    @media (min-width:1200px) {
        max-width: 1200px;
    }
}

/* Default (mobile first) */
.ex-col-1 {
    width: calc(100% / 12 * 1);
    padding-inline: 16px;
}

.ex-col-2 {
    width: calc(100% / 12 * 2);
    padding-inline: 16px;
}

.ex-col-3 {
    width: calc(100% / 12 * 3);
    padding-inline: 16px;
}

.ex-col-4 {
    width: calc(100% / 12 * 4);
    padding-inline: 16px;
}

.ex-col-5 {
    width: calc(100% / 12 * 5);
    padding-inline: 16px;
}

.ex-col-6 {
    width: calc(100% / 12 * 6);
    padding-inline: 16px;
}

.ex-col-7 {
    width: calc(100% / 12 * 7);
    padding-inline: 16px;
}

.ex-col-8 {
    width: calc(100% / 12 * 8);
    padding-inline: 16px;
}

.ex-col-9 {
    width: calc(100% / 12 * 9);
    padding-inline: 16px;
}

.ex-col-10 {
    width: calc(100% / 12 * 10);
    padding-inline: 16px;
}

.ex-col-11 {
    width: calc(100% / 12 * 11);
    padding-inline: 16px;
}

.ex-col-12 {
    width: 100%;
    padding-inline: 16px;
}

/* Small devices (≥576px) */
@media (min-width: 576px) {
    .ex-col-sm-1 {
        width: calc(100% / 12 * 1);
    }

    .ex-col-sm-2 {
        width: calc(100% / 12 * 2);
    }

    .ex-col-sm-3 {
        width: calc(100% / 12 * 3);
    }

    .ex-col-sm-4 {
        width: calc(100% / 12 * 4);
    }

    .ex-col-sm-5 {
        width: calc(100% / 12 * 5);
    }

    .ex-col-sm-6 {
        width: calc(100% / 12 * 6);
    }

    .ex-col-sm-7 {
        width: calc(100% / 12 * 7);
    }

    .ex-col-sm-8 {
        width: calc(100% / 12 * 8);
    }

    .ex-col-sm-9 {
        width: calc(100% / 12 * 9);
    }

    .ex-col-sm-10 {
        width: calc(100% / 12 * 10);
    }

    .ex-col-sm-11 {
        width: calc(100% / 12 * 11);
    }

    .ex-col-sm-12 {
        width: 100%;
    }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
    .ex-col-md-1 {
        width: calc(100% / 12 * 1);
    }

    .ex-col-md-2 {
        width: calc(100% / 12 * 2);
    }

    .ex-col-md-3 {
        width: calc(100% / 12 * 3);
    }

    .ex-col-md-4 {
        width: calc(100% / 12 * 4);
    }

    .ex-col-md-5 {
        width: calc(100% / 12 * 5);
    }

    .ex-col-md-6 {
        width: calc(100% / 12 * 6);
    }

    .ex-col-md-7 {
        width: calc(100% / 12 * 7);
    }

    .ex-col-md-8 {
        width: calc(100% / 12 * 8);
    }

    .ex-col-md-9 {
        width: calc(100% / 12 * 9);
    }

    .ex-col-md-10 {
        width: calc(100% / 12 * 10);
    }

    .ex-col-md-11 {
        width: calc(100% / 12 * 11);
    }

    .ex-col-md-12 {
        width: 100%;
    }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .ex-col-lg-1 {
        width: calc(100% / 12 * 1);
    }

    .ex-col-lg-2 {
        width: calc(100% / 12 * 2);
    }

    .ex-col-lg-3 {
        width: calc(100% / 12 * 3);
    }

    .ex-col-lg-4 {
        width: calc(100% / 12 * 4);
    }

    .ex-col-lg-5 {
        width: calc(100% / 12 * 5);
    }

    .ex-col-lg-6 {
        width: calc(100% / 12 * 6);
    }

    .ex-col-lg-7 {
        width: calc(100% / 12 * 7);
    }

    .ex-col-lg-8 {
        width: calc(100% / 12 * 8);
    }

    .ex-col-lg-9 {
        width: calc(100% / 12 * 9);
    }

    .ex-col-lg-10 {
        width: calc(100% / 12 * 10);
    }

    .ex-col-lg-11 {
        width: calc(100% / 12 * 11);
    }

    .ex-col-lg-12 {
        width: 100%;
    }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
    .ex-col-xl-1 {
        width: calc(100% / 12 * 1);
    }

    .ex-col-xl-2 {
        width: calc(100% / 12 * 2);
    }

    .ex-col-xl-3 {
        width: calc(100% / 12 * 3);
    }

    .ex-col-xl-4 {
        width: calc(100% / 12 * 4);
    }

    .ex-col-xl-5 {
        width: calc(100% / 12 * 5);
    }

    .ex-col-xl-6 {
        width: calc(100% / 12 * 6);
    }

    .ex-col-xl-7 {
        width: calc(100% / 12 * 7);
    }

    .ex-col-xl-8 {
        width: calc(100% / 12 * 8);
    }

    .ex-col-xl-9 {
        width: calc(100% / 12 * 9);
    }

    .ex-col-xl-10 {
        width: calc(100% / 12 * 10);
    }

    .ex-col-xl-11 {
        width: calc(100% / 12 * 11);
    }

    .ex-col-xl-12 {
        width: 100%;
    }
}

.ex-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -16px;
}

.ex-d-block {
    display: block;
}

.ex-d-inline {
    display: inline;
}

.ex-d-inline-block {
    display: inline-block;
}

.ex-d-flex {
    display: flex;
}

.ex-d-inline-flex {
    display: inline-flex;
}

.ex-d-grid {
    display: grid;
}

.ex-d-inline-grid {
    display: inline-grid;
}

.ex-d-none {
    display: none;
}

@media (min-width: 576px) {
    .ex-d-sm-block {
        display: block;
    }

    .ex-d-sm-inline {
        display: inline;
    }

    .ex-d-sm-inline-block {
        display: inline-block;
    }

    .ex-d-sm-flex {
        display: flex;
    }

    .ex-d-sm-inline-flex {
        display: inline-flex;
    }

    .ex-d-sm-grid {
        display: grid;
    }

    .ex-d-sm-inline-grid {
        display: inline-grid;
    }

    .ex-d-sm-none {
        display: none;
    }
}

@media (min-width: 768px) {
    .ex-d-md-block {
        display: block;
    }

    .ex-d-md-inline {
        display: inline;
    }

    .ex-d-md-inline-block {
        display: inline-block;
    }

    .ex-d-md-flex {
        display: flex;
    }

    .ex-d-md-inline-flex {
        display: inline-flex;
    }

    .ex-d-md-grid {
        display: grid;
    }

    .ex-d-md-inline-grid {
        display: inline-grid;
    }

    .ex-d-md-none {
        display: none;
    }
}

@media (min-width: 992px) {
    .ex-d-lg-block {
        display: block;
    }

    .ex-d-lg-inline {
        display: inline;
    }

    .ex-d-lg-inline-block {
        display: inline-block;
    }

    .ex-d-lg-flex {
        display: flex;
    }

    .ex-d-lg-inline-flex {
        display: inline-flex;
    }

    .ex-d-lg-grid {
        display: grid;
    }

    .ex-d-lg-inline-grid {
        display: inline-grid;
    }

    .ex-d-lg-none {
        display: none;
    }
}

@media (min-width: 1200px) {
    .ex-d-xl-block {
        display: block;
    }

    .ex-d-xl-inline {
        display: inline;
    }

    .ex-d-xl-inline-block {
        display: inline-block;
    }

    .ex-d-xl-flex {
        display: flex;
    }

    .ex-d-xl-inline-flex {
        display: inline-flex;
    }

    .ex-d-xl-grid {
        display: grid;
    }

    .ex-d-xl-inline-grid {
        display: inline-grid;
    }

    .ex-d-xl-none {
        display: none;
    }
}


/* header */

.inner-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 82px;
}


.bg-footer {
    z-index: 0;
}

.footer-main {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.col-footer {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.col-footer p {
    font-size: 15px;

}

.col-footer a {
    font-size: 15px;
}

.col-footer span {
    border-bottom: 1px solid #F0C434;
    width: fit-content;
    margin-top: 20px;
    font-size: 16px;
}

.socialmedia-footer {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #F0C434;
    border-top: 1px solid #F0C434;

}

.copy-right {
    border-top: 1px solid;
    border-bottom: 1px solid;
}

.border-gradient-copy-right {
    border-image: linear-gradient(to right, #FBF5B7, #B38728) 1;

}

.col-footer ul li {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.col-footer ul {
    margin-top: 20px;
}


.header-right ul,
.header-left ul {
    display: flex;
    gap: 42px;
}

.header-right ul li a,
.header-left ul li a {
    color: var(--primary100);
    transition: 0.3s;
}

.header-right ul li.menu-item-has-children,
.header-left ul li.menu-item-has-children {
    position: relative;
}

.header-right ul li:hover>a,
.header-left ul li:hover>a {
    color: var(--primary500);
}

.header-right ul.sub-menu ul.sub-menu,
.header-left ul.sub-menu ul.sub-menu {
    right: 100%;
    top: 0;
}


.header-right ul.sub-menu,
.header-left ul.sub-menu {
    position: absolute;
    inset-inline-start: 0;
    top: 100%;
    z-index: 10;
    min-width: 200px;
    flex-direction: column;
    gap: 4px;
    background: var(--neutral800);
    transition: 0.3s;
    padding-block: 10px;
    opacity: 0;
    visibility: hidden;
}

.header-right li:hover>ul.sub-menu,
.header-left li:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible
}

.header-right ul.sub-menu a,
.header-left ul.sub-menu a {
    font-size: 14px;
    line-height: 24px;
    padding: 2px 16px;
    display: flex;
    white-space: nowrap;
}

.header-right ul.sub-menu a::before,
.header-left ul.sub-menu a::before {
    width: 8px;
    min-width: 8px;
    height: 8px;
    content: '';
    background: var(--primary400);
    display: inline-block;
    margin-inline-end: 6px;
    transform: rotate(45deg);
    transition: 0.3s;
    margin-top: 8px;
}

.header-right ul.sub-menu a:hover::before,
.header-left ul.sub-menu a:hover::before {
    transform: rotate(0);
}

.header-right ul:not(.sub-menu) li.menu-item-has-children>a,
.header-left ul:not(.sub-menu) li.menu-item-has-children>a {
    display: inline-flex;
    align-items: center;
}

.header-right ul li.menu-item-has-children>a::after,
.header-left ul li.menu-item-has-children>a::after {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    margin-inline-start: 6px;
    transition: 0.3s;
    border-top: 8px solid var(--primary400);
    border-right: 6px solid transparent;
    border-bottom: none;
    border-left: 6px solid transparent;
}

.header-right,
.header-left {
    display: flex;
    align-items: center;
    width: calc(50% - 130px);
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    position: relative;
    z-index: 11;
}

a.account-link {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid;
    border-radius: 24px;
    height: 48px;
    font-size: 14px;
    padding-inline: 20px;
    color: var(--primary500);
}


/* footer */
/* .ex-row{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 60px;
    align-items: start ;
    margin-bottom: 40px;
  } */

.socialmedia-footer {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #F0C434;
    border-top: 1px solid #F0C434;
    padding-top: 12px;
    align-items: center;

}

.copy-right {
    border-top: 1px solid;
    border-bottom: 1px solid;

}

.border-gradient-copy-right {
    border-image: linear-gradient(to right, #FBF5B7, #B38728) 1;
}

.ex-col-footer ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ex-col-footer h3 {
    font-size: 16px;
    border-bottom: 1px solid #F0C434;
    width: fit-content;
    margin-top: 20px;
}

.ex-col-footer .ex-contract-footer {
    display: flex;
    flex-direction: column;


}

.ex-contract-footer li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px !important;

}

.ex-col-footer-contract h3 {
    font-size: 16px;
    border-bottom: 1px solid #F0C434;
    width: fit-content;
    margin-top: 20px;
}

.mobile-menu-toggle {
    flex-direction: column;
    gap: 10px;
    position: relative;
    align-items: flex-end;
    margin-inline-start: 7px;
    cursor: pointer;
    width: 29px;
}

.mobile-menu-toggle.open .triangle {
    border-block-width: 9px;
    inset-inline-start: 100%;
    opacity: 0;
}

.mobile-menu-toggle .line {
    height: 3px;
    background: var(--secondary500);
    width: 27px;
    display: inline-block;
    transition: 0.5s;
    transform-origin: left center;
    transition-delay: 0s;
}







.mobile-menu-toggle .line.middle-line {
    width: 19px;
    transition-delay: 0.3s;
    transition: 0.3s;
}

.mobile-menu-toggle.open .top-line {
    transform: rotate(45deg);
    transition-delay: 0.3s;
    width: 37px;
    background: var(--primary500);
}

.mobile-menu-toggle.open .bottom-line {
    transform: rotate(-45deg);
    transition-delay: 0.3s;
    width: 37px;
    background: var(--primary500);
}

.mobile-menu-toggle.open .line.middle-line {
    width: 0;
}

.mobile-menu-toggle .triangle {
    width: 0;
    height: 0;
    position: absolute;
    border-block: 13px solid transparent;
    border-inline-start: 13px solid var(--primary400);
    inset-inline-start: -7px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.6s;
}

.ex-header {
    position: relative;
    margin-bottom: 57px;
}

.mobile-menu-logo-holder {
    transition: 0.5s;
    position: fixed;
    top: 0;
    left: calc(50% - 97px);
    z-index: 10;
    background: #000;
    border-radius: 0 0 30px 30px;
    width: 194px;
    border: 1px solid var(--secondary500);
    border-top: none;
    height: 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
}

.mobile-menu-logo-holder .inner {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.mobile-menu-logo-holder.open {
    width: calc(100% - 2px);
    height: 100%;
    left: 0;
    border-radius: 0;
    padding-top: 16px;
}


.mobile-menu-logo-holder a.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 10px;
    width: 194px;
    transition: 0.5s;
}

.mobile-menu-logo-holder::before {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 26px;
    height: 26px;
    background: var(--secondary500);
    z-index: 2;
}

.mobile-menu-logo-holder .inner ul {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-top: 30px;
}

.mobile-menu-logo-holder .inner ul li {
    opacity: 0;
    transition: 0.4s;
    transform: translateX(10px);
}

body:not(.home) .mobile-menu-logo-holder .inner ul li {
    color: #fff;
}

.mobile-menu-logo-holder.open .inner ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(1) {
    transition-delay: 0.3s;
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(2) {
    transition-delay: 0.5s;
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(3) {
    transition-delay: 0.7s;
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(4) {
    transition-delay: 0.9s;
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(5) {
    transition-delay: 1.1s;
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(6) {
    transition-delay: 1.3s;
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(7) {
    transition-delay: 1.5s;
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(8) {
    transition-delay: 1.7s;
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(9) {
    transition-delay: 1.9s;
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(10) {
    transition-delay: 2.1s;
}

.mobile-menu-logo-holder.open .inner ul>li:nth-child(11) {
    transition-delay: 2.3s;
}


main.main-login-page {
    direction: rtl;
    text-align: right;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    border: 1px solid;
    border-image: linear-gradient(45deg, var(--primary400), var(--primary600), var(--primary400)) 1;
    padding: 0 32px 32px;
    width: 370px;
    max-width: calc(100% - 32px);
    background: #FFFBEA;
    box-shadow: 0 0 20px 0 rgba(240, 196, 52, 0.17);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.panel-header .logo-box,
.login-box .logo-box {
    background: #000;
    border-radius: 0 0 22px 22px;
    width: 148px;
    border: 1px solid var(--secondary500);
    border-top: none;
    height: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 16px;
    justify-content: center;
}

.panel-header .logo-box::before,
.login-box .logo-box::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: var(--secondary500);
    z-index: 2;
}

.login-register {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 26px;
}

.login-register h3 {
    color: var(--neutral700);
    font-size: 20px;
    line-height: 35px;
    font-weight: 700;
}

.step-1 .emial-phone-username {
    height: 50px;
    background: #F5F2EB;
    font-size: 16px;
    width: 100%;
    padding-inline: 16px;
    text-align: center;
    border: 1px solid var(--secondary500);
    direction: ltr;
    color: var(--neutral700);
    margin-bottom: 14px;
}

.step-1 .emial-phone-username::placeholder {
    color: var(--neutral400);
    font-size: 14px;
}

span.send-code {
    height: 50px;
    background: var(--secondary500);
    font-size: 16px;
    width: 100%;
    padding-inline: 16px;
    color: var(--neutral700);
    border: 1px solid var(--primary500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.login-register,
.login-register-form {
    width: 100%;
}

.login-register .or {
    width: 100%;
    text-align: center;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-register .or span.h-line {
    width: 100%;
    display: inline-block;
    height: 1px;
    background: #FBF5B7;
}

.login-register .or span:not(.h-line) {
    font-size: 14px;
    line-height: 18px;
    margin-top: -10px;
    display: inline-block;
    background: #FFFBEA;
    padding-inline: 10px;
}

#google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    color: var(--neutral700);
    height: 50px;
    border: 2px solid;
    cursor: pointer;
    border-image: linear-gradient(45deg,
            #4285F4,
            #34A853,
            #FBBC05,
            #EA4335) 1;
    transition: 1s;
}

span#google-login span {
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

span#google-login:hover {
    border-image: linear-gradient(360deg,
            #4285F4,
            #34A853,
            #FBBC05,
            #EA4335) 1;
}

#github-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    color: var(--neutral700);
    height: 50px;
    border: 2px solid;
    cursor: pointer;
    font-size: 14px;
}

.social-login {
    width: 100%;
    display: flex;
    gap: 8px;
}



.step-2 {
    display: flex;
    width: 100%;
    gap: 4px;
    justify-content: space-between;
    align-items: center;
    direction: ltr;
}

.step-2 input {
    width: 15%;
    background: #FAF8F0;
    border: 1px solid var(--secondary500);
    height: 42px;
    text-align: center;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    background: var(--neutral900);
    height: 62px;
    align-items: center;
}

.panel-header .panel-header-right,
.panel-header .panel-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(50% - 74px);
    padding-inline: 22px;
}

.panel-header .panel-header-left a {
    display: inline-flex;
}

.panel-header .panel-header-left {
    justify-content: flex-end;
}

.panel-header .panel-header-right {
    gap: 22px;
}

.panel-header .panel-header-right .user {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--primary100);
}

.panel-header .panel-header-right .user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary500);
}

.panel-header .panel-header-right .user .text {
    display: flex;
    flex-direction: column;
}

.panel-header .panel-header-right .user .text span:nth-child(1) {
    font-size: 14px;
    line-height: 28px;
    font-weight: 700;
}

.panel-header .panel-header-right .user .text span:nth-child(2) {
    font-size: 12px;
    line-height: 20px;
}

span.extend-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}

span.extend-menu.extended {
    transform: rotateY(180deg);
}

.panel-body {
    display: flex;
}

.panel-body-sidebar {
    width: 250px;
    background: #FFFBEA;
    height: calc(100vh - 62px);
    border-inline-end: 1px solid var(--secondary500);
    padding: 12px;
    transition: 0.5s;
    overflow-x: hidden;
}

.panel-body-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.panel-body-sidebar li a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    padding-inline: 10px;
    color: var(--neutral700);
    font-weight: 500;
    line-height: 40px;
    transition: 0.3s;
    white-space: normal;
    justify-content: flex-start;
    border: 1px solid transparent;
}

.panel-body-sidebar li.active a,
.panel-body-sidebar li a:hover {
    background: #FFF6D9;
    border-color: var(--secondary300);
}

.loading-panel {
    width: 100%;
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF6D920;
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 10px;
}

.panel-body-sidebar.close {
    width: 66px;
}

.panel-body-sidebar li a span {
    white-space: nowrap;
    transition: 0.3s;
}

.panel-body-sidebar.close li a span {
    opacity: 0;
    visibility: hidden;
}

.panel-body-sidebar li a svg {
    min-width: 20px;
}



.panel-body-content {
    padding: 24px;
    flex-grow: 1;
    flex-basis: calc(100% - 250px);
}

.review-user-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.review-user-info-box {
    width: calc(25% - 18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
    border: 1px solid var(--secondary500);
    background: #FFFBEA;
}

.review-user-info-box p.value {
    font-size: 20px;
    color: var(--primary500);
    font-weight: 700;
}

.review-user-info-box .label {
    font-size: 12px;
    color: var(--neutral700);
    font-weight: 400;
}

.last-blog-notification {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.last-blog-notification-box {
    width: 50%;
    background: #FFFBEA;
    padding: 16px 24px;
    border: 1px solid var(--secondary500);
}

.last-blog-notification-box h3 {
    font-size: 22px;
    color: var(--neutral800);
}

.last-blog-notification-box.last-blog ul li a {
    font-size: 14px;
    transition: 0.3s;
    color: var(--neutral700);
    line-height: 27px;
    display: inline-block;
}

.last-blog-notification-box.last-blog ul li:not(:last-child) {
    padding-block: 2px;
}

.last-blog-notification-box.last-blog ul li:not(:last-child) {
    border-bottom: 1px solid var(--neutral300);
}

.last-blog-notification-box.last-blog ul li a:hover::before {
    transform: rotate(0);
}

.last-blog-notification-box.last-blog ul li a::before {
    width: 8px;
    height: 8px;
    content: '';
    background: var(--primary400);
    display: inline-block;
    margin-inline-end: 6px;
    transform: rotate(45deg);
    transition: 0.3s;
}

.last-blog-notification-box.last-blog ul li a:hover {
    color: var(--primary500);
}

li.notif-box {
    display: flex;
    justify-content: space-between;
    background: #FFFBEA;
    border: 1px solid var(--secondary300);
    cursor: pointer;
    padding: 10px 16px;
    font-size: 14px;
}

li.notif-box.unread {
    background: #fff3be;
    border: 1px solid var(--secondary500);
}

ul.user-all-notifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

li.notif-box .type {
    display: inline-flex;
    font-weight: 400;
    font-size: 12px;
    padding: 4px 10px;
    line-height: 20px;
    color: #fff;
}

li.notif-box.public .type {
    background-color: var(--success400);
}

li.notif-box.private .type {
    background-color: var(--warning500);
}

li.notif-box>div {
    display: flex;
    align-items: center;
    gap: 8px;
}

li.notif-box.unread>div {
    font-weight: 700;
    font-size: 14px;
}

li.notif-box.read>div {
    font-weight: 500;
}

li.notif-box .notif-meta {
    font-size: 12px;
    color: var(--neutral500);
}

.show-notif-overlay {
    position: fixed;
    inset: 0;
    background-color: #FFF6D920;
    backdrop-filter: blur(10px);
    z-index: 20;
}

.show-notif {
    width: 500px;
    position: fixed;
    min-height: 100px;
    z-index: 21;
    background: #fff;
    max-width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 16px;
}

.show-notif:not(.success) .skeleton {
    background-color: #e2e2e2;
    position: relative;
    overflow: hidden;
}

.show-notif:not(.success) .skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: skeleton-loading 1.2s infinite;
}

@keyframes skeleton-loading {
    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}


.show-notif:not(.success) h4 {
    width: 140px;
    height: 26px;
    margin-bottom: 16px;
}

.show-notif:not(.success) .notif-content {
    width: 100%;
    height: 18px;
}

.show-notif.success h4 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
}

.show-notif.success .notif-content {
    font-size: 14px;
    line-height: 26px;
}

li.no-notif {
    font-size: 14px;
    color: var(--danger500);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px;
    border: 1px solid var(--warning300);
    background: var(--warning100);
}

.panel-header-left a.notifications {
    position: relative;
}

.panel-header-left a.notifications span {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    border-radius: 50%;
    background: var(--danger500);
    font-size: 11px;
}

.account-link img.avatar {
    border-radius: 50%;
    margin-inline-start: -10px;
}

.error-message {
    background: var(--danger100);
    padding: 6px 16px;
    border-inline-start: 2px solid var(--danger600);
    color: var(--danger600);
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 24px;
}

.sended-code-text {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 10px;
}

.sended-code-text span {
    display: block;
    color: var(--success400);
}

/* Countdown Timer Styles */
.countdown-container {
    text-align: center;
    margin: 15px 0;
    font-size: 16px;
    color: #666;
}

#countdown-timer {
    font-weight: bold;
    color: var(--success500);
    text-align: center;
    margin-top: 10px;
}

.resend-code-btn {
    height: 50px;
    background: var(--secondary500);
    font-size: 16px;
    width: 100%;
    padding-inline: 16px;
    color: var(--neutral700);
    border: 1px solid var(--primary500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 16px;
}

.last-blog-notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.ex-panel-btn {
    line-height: 30px;
    background: var(--secondary500);
    padding: 8px 20px;
    border-radius: 32px;
    color: #191918;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-panel-body-content-body {
    display: flex;
    gap: 20px;
    height: calc(100vh - 110px);
}

.tickets-sidebar {
    border: 1px solid var(--secondary400);
    padding: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    background: var(--primary100);
}

.ticket-detail {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    transition: 0.3s;
}

a.ticket-item {
    padding: 6px 8px;
    border-bottom: 1px solid var(--secondary400);
    transition: 0.3s;
}

span.ticket-number {
    font-size: 14px;
    display: inline-block;
    margin-inline-end: 4px;
    transition: 0.3s;
    font-weight: 400;
}

span.ticket-title {
    font-weight: 600;
    transition: 0.3s;
}

a.ticket-item.current span.ticket-title,
a.ticket-item.current .ticket-detail {
    color: var(--success100);
}

a.ticket-item.current {
    background: var(--success400);
}

.submit-new-ticket {
    justify-content: center;
    margin-bottom: 20px;
}

.no-ticket {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--danger200);
    color: var(--danger400);
    background: var(--danger100);
}

.new-ticket {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.title-new-ticket {
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--secondary800);
    margin-bottom: 30px;
}

.title-new-ticket h3 {
    color: var(--secondary100);
    font-size: 20px;
}


form.submit-ticket {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

label[for="ticket-subject"],
label[for="ticket-department"] {
    width: calc(50% - 10px);
}

label[for="ticket-message"] {
    width: 100%;
}

.submit-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

form.submit-ticket label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 24px;
    gap: 8px;
}

form.submit-ticket label :where(input, select, textarea) {
    min-height: 50px;
    background: #fff;
    font-size: 16px;
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--secondary500);
    color: var(--neutral700);
}

.submit-form-footer button {
    height: 50px;
    background: var(--secondary500);
    font-size: 16px;
    padding-inline: 16px;
    color: var(--neutral700);
    border: 1px solid var(--primary500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

label[for="ticket-file"] {
    cursor: pointer;
}

.ticket-file-holder {
    width: calc(50% - 10px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--secondary400);
    padding: 4px 16px;
    background: #fff;
}

span.delete-file {
    font-size: 14px;
    color: var(--danger600);
    cursor: pointer;
}

.confirm-submit-ticket {
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: max-content;
    margin-inline: auto;
    background: var(--secondary100);
    border: 1px solid var(--success300);
}

.confirm-submit-ticket .actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-header {
    display: flex;
    background: var(--success400);
    padding: 10px 20px;
    justify-content: space-between;
    gap: 8px;
}

.ticket-header h4 {
    font-size: 16px;
    color: var(--success100);
}

.tickets-content {
    flex: 1;
}

.info-item {
    font-size: 12px;
    color: var(--success100);
}

.ticket-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

span.waiting_operator-status {
    padding: 0 6px;
    height: 26px;
    display: inline-flex;
    line-height: 26px;
    background: var(--warning100);
    color: var(--warning600);
    border: 1px solid var(--warning600);
    font-size: 12px;
    font-weight: 400;
}

.cahts {
    padding-block: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column-reverse;
}

.tickets-content {
    display: flex;
    flex-direction: column;
}

.chats-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
}

.chat {
    display: flex;
}

.chat.user-chat {
    justify-content: flex-start;
}

.chat.admin-chat {
    justify-content: flex-end;
}

.message {
    font-size: 14px;
    padding: 16px;
    line-height: 24px;
    position: relative;
    margin-inline-start: 10px;
}

.chat.user-chat .message {
    background: var(--secondary200);
}

.chat.user-chat .message::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid var(--secondary200);
    border-bottom: 14px solid transparent;
    position: absolute;
    right: -10px;
    top: 0;
}

.chat.admin-chat .message::before {
    content: '';
    width: 0;
    height: 0;
    border-right: 10px solid #fff;
    border-bottom: 14px solid transparent;
    position: absolute;
    left: -10px;
    top: 0;
}

.chat.admin-chat .message {
    background: #fff;
}

.message-info {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    line-height: 20px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--secondary400);
    color: var(--secondary800);
}

form.ticket-reply-form {
    display: flex;
    gap: 8px;
    width: 100%;
    position: relative;
}

form.ticket-reply-form button {
    height: 50px;
    background: var(--secondary500);
    font-size: 16px;
    padding-inline: 16px;
    color: var(--neutral700);
    border: 1px solid var(--primary500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

form.ticket-reply-form textarea {
    min-height: 50px;
    max-height: 100px;
    background: #fff;
    font-size: 14px;
    width: 100%;
    padding: 6px 16px;
    border: 1px solid var(--secondary500);
    color: var(--neutral700);
    padding-right: 40px;
}

.attach-toggle {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
}

body:not(.home) .ex-header {
    background: var(--neutral900);
}

body:not(.home) .inner-header {
    align-items: center;
}

body:not(.home) .header-right,
body:not(.home) .header-left {
    align-items: center;
}

/* Course Single Page Styles */
.course-single-page {
    background-color: #FAF8F0;
    min-height: 100vh;
}

/* Course Header */
.course-header {
    margin-bottom: 40px;
}

.course-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--neutral600);
}

.course-breadcrumb a {
    color: var(--primary400);
    text-decoration: none;
}

.course-breadcrumb a:hover {
    text-decoration: underline;
}

.course-breadcrumb .separator {
    margin: 0 8px;
    color: var(--neutral400);
}

.course-breadcrumb .current {
    color: var(--neutral800);
    font-weight: 500;
}

.course-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.course-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral700);
    font-size: 14px;
}

.meta-item svg {
    color: var(--primary400);
}

.course-categories {
    margin-bottom: 20px;
}

.category-tag {
    display: inline-block;
    background: var(--primary100);
    color: var(--primary700);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
    margin-bottom: 8px;
}

.course-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral700);
}

/* Course Sidebar */
.course-sidebar {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.course-preview-video,
.course-thumbnail {
    margin-bottom: 24px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.course-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: var(--neutral100);
    border-radius: 8px;
    color: var(--neutral500);
}

/* Course Pricing */
.course-pricing {
    margin-bottom: 24px;
}

.price-container {
    margin-bottom: 16px;
}

.price-free {
    font-size: 24px;
    font-weight: 700;
    color: var(--success400);
}

.price-sale {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.original-price {
    font-size: 16px;
    color: var(--neutral500);
    text-decoration: line-through;
}

.sale-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary600);
}

.regular-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral800);
}

.discount-badge {
    background: var(--primary400);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    align-self: flex-start;
}

/* Enrollment Button */
.btn-enroll {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-enroll.btn-active {
    background: var(--primary400);
    color: white;
}

.btn-enroll.btn-active:hover {
    background: var(--primary500);
    transform: translateY(-2px);
}

.btn-enroll.btn-upcoming {
    background: var(--neutral300);
    color: var(--neutral600);
    cursor: not-allowed;
}

.btn-enroll.btn-completed {
    background: var(--success200);
    color: var(--success500);
    cursor: not-allowed;
}

/* Course Features */
.course-features {
    margin-bottom: 24px;
}

.course-features h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral800);
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--neutral700);
}

.feature-item svg {
    color: var(--success400);
    flex-shrink: 0;
}

/* Certificate */
.course-certificate {
    border: 2px solid var(--primary200);
    border-radius: 8px;
    padding: 16px;
    background: var(--primary50);
}

.certificate-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.certificate-info svg {
    color: var(--primary500);
    flex-shrink: 0;
}

.certificate-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral800);
    margin-bottom: 4px;
}

.certificate-info p {
    font-size: 14px;
    color: var(--neutral600);
    margin: 0;
}

/* Tabs */
.course-content-tabs {
    margin-bottom: 40px;
}

.tabs-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tabs-nav {
    display: flex;
    background: var(--neutral100);
    border-bottom: 1px solid var(--neutral200);
    overflow-x: auto;
}

.tab-btn {
    padding: 16px 24px;
    border: none;
    background: transparent;
    color: var(--neutral600);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: var(--neutral200);
    color: var(--neutral800);
}

.tab-btn.active {
    background: white;
    color: var(--primary600);
    border-bottom-color: var(--primary400);
}

.tabs-content {
    padding: 32px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.course-full-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neutral700);
}

.course-full-description h1,
.course-full-description h2,
.course-full-description h3,
.course-full-description h4,
.course-full-description h5,
.course-full-description h6 {
    color: var(--neutral800);
    margin-top: 24px;
    margin-bottom: 16px;
}

.course-full-description p {
    margin-bottom: 16px;
}

.course-full-description ul,
.course-full-description ol {
    margin-bottom: 16px;
    padding-right: 20px;
}

.course-full-description li {
    margin-bottom: 8px;
}

/* Curriculum */
.curriculum-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--neutral800);
    margin-bottom: 24px;
}

.curriculum-item {
    border: 1px solid var(--neutral200);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.lesson-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--neutral50);
}

.lesson-number {
    width: 32px;
    height: 32px;
    background: var(--primary400);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.lesson-info {
    flex: 1;
}

.lesson-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral800);
    margin-bottom: 8px;
}

.lesson-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lesson-duration {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--neutral600);
}

.lesson-duration svg {
    color: var(--primary400);
}

.lesson-free {
    background: var(--success100);
    color: var(--success600);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.lesson-quiz {
    background: var(--secondary100);
    color: var(--secondary600);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.lesson-description {
    padding: 0 20px 20px;
    color: var(--neutral600);
    line-height: 1.6;
}

/* Video Lessons */
.video-lessons-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--neutral800);
    margin-bottom: 24px;
}

.video-lesson-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid var(--neutral200);
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
}

.video-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.video-thumbnail {
    width: 40px;
    height: 40px;
    background: var(--primary100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary500);
}

.video-details h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--neutral800);
    margin-bottom: 4px;
}

.video-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.video-duration {
    color: var(--neutral600);
}

.video-access.free {
    color: var(--success500);
    font-weight: 500;
}

.video-access.paid {
    color: var(--primary500);
    font-weight: 500;
}

.watch-video-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.watch-video-btn:not(.locked) {
    background: var(--primary400);
    color: white;
}

.watch-video-btn:not(.locked):hover {
    background: var(--primary500);
}

.watch-video-btn.locked {
    background: var(--neutral200);
    color: var(--neutral500);
    cursor: not-allowed;
}

/* Downloads */
.downloads-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--neutral800);
    margin-bottom: 24px;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid var(--neutral200);
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-info svg {
    color: var(--primary400);
}

.file-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--neutral800);
}

.download-btn {
    padding: 8px 16px;
    background: var(--success400);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--success500);
}

/* Additional Info */
.additional-info-section {
    margin-top: 20px;
}

.info-block {
    background: var(--neutral50);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-block h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral800);
    margin-bottom: 16px;
}

.info-block h3 svg {
    color: var(--primary400);
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral700);
    margin: 0;
}

/* Course Tags */
.course-tags-section {
    margin-bottom: 40px;
}

.course-tags h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral800);
    margin-bottom: 16px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    background: var(--secondary100);
    color: var(--secondary600);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--secondary200);
    color: var(--secondary700);
}

/* New Design Styles */
.course-hero {
    padding: 0 0 40px 0;
    background: var(--neutral50);
}

.course-featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.course-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.course-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.course-short-description {
    font-size: 1.1rem;
    color: var(--neutral700);
    margin-bottom: 30px;
    line-height: 1.6;
}

.course-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.course-meta-grid .meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-size: 0.9rem;
    color: var(--neutral600);
    font-weight: 500;
}

.meta-value {
    font-size: 1rem;
    color: var(--neutral900);
    font-weight: 600;
}

.course-sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.course-pricing-section {
    text-align: center;
}

.price-free-badge {
    background: linear-gradient(135deg, var(--success400), var(--success600));
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.free-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-with-discount {
    margin-bottom: 25px;
}

.discount-badge {
    background: var(--error500);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.price-original {
    font-size: 1rem;
    color: var(--neutral600);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-sale {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary600);
    margin-bottom: 15px;
}

.countdown-timer {
    background: var(--warning100);
    border: 1px solid var(--warning300);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--warning700);
    margin-bottom: 8px;
    font-weight: 500;
}

.countdown-display {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warning800);
    text-align: center;
}

.price-regular .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary600);
}

.btn-enroll {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-enroll.btn-active {
    background: linear-gradient(135deg, var(--primary500), var(--primary700));
    color: white;
}

.btn-enroll.btn-active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary500), 0.3);
}

.curriculum-accordion .curriculum-item {
    border: 1px solid var(--neutral200);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.lesson-header {
    padding: 20px;
    background: var(--neutral50);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.lesson-header:hover {
    background: var(--neutral100);
}

.lesson-number {
    width: 40px;
    height: 40px;
    background: var(--primary500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.lesson-info {
    flex: 1;
}

.lesson-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral900);
    margin-bottom: 8px;
}

.lesson-meta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lesson-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--neutral600);
}

.lesson-free {
    background: var(--success100);
    color: var(--success700);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.lesson-quiz {
    background: var(--warning100);
    color: var(--warning700);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.lesson-toggle svg {
    transition: transform 0.3s ease;
}

.lesson-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lesson-content.active {
    max-height: 500px;
    padding: 20px;
}

.lesson-description {
    margin-bottom: 15px;
    color: var(--neutral700);
    line-height: 1.6;
}

.lesson-preview-video {
    margin-top: 15px;
}

.lesson-preview-video .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
}

.lesson-preview-video iframe,
.lesson-preview-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.description-toggle {
    text-align: center;
    margin-top: 20px;
}

.btn-show-more {
    background: none;
    border: 1px solid var(--primary500);
    color: var(--primary500);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background: var(--primary500);
    color: white;
}

.btn-show-more svg {
    transition: transform 0.3s ease;
}

.btn-show-more.expanded svg {
    transform: rotate(180deg);
}

.ex-single-blog-archive .ex-blog-card h3 {
    font-size: 20px;
    line-height: 1.8;
    height: 108px;
    overflow: hidden;
}

.single-blog-title h1 {
    font-size: 24px;
    line-height: 1.8;
}

.sidebar-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}