/* ===================================
    Crafto - Medical
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
/* variable */
:root {     
    --base-color: #a6824e;
    --alt-font: 'Manrope', sans-serif; 
    --primary-font: 'Manrope', sans-serif;
    --dark-gray: #303334;
    --red: #f45959;
    --medium-light-gray:#b4b4b4;
    --medium-gray:#848587;
}
/* box layout */
.box-layout {
    padding: 0 100px;
}
body{
    font-size: 17px;
    line-height: 30px;
}
/* header */
.navbar .navbar-nav .nav-link {
    font-weight: 700;
    font-size: 18px;
    padding: 10px 22px;
}
header .container-fluid {
    padding-left: 85px;
    padding-right: 85px;
}
.sticky-wrap.shadow-in {
    left: 31px;
}
header .navbar-brand img {
    max-height:40px;
}
/* bg color */
.bg-light-turquoise-blue {
    background-color: #f5f0e8;
}
.bg-light-sea-green-transparent {
    background-color: rgba(166, 130, 78, 0.8);
}
.bg-light-sea-green-transparent-light {
    background-color: rgba(166, 130, 78, 0.15);
}
/* border color */
.border-color-transparent-dark-gray {
    border-color: rgba(39, 47, 48, 0.1) !important;
}
.border-color-red {
    border-color: var(--red) !important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
}
/* btn */
.btn {
    text-transform: inherit;
    font-weight: 600;
    letter-spacing: 0px;
}
.btn.btn-extra-large {
    font-size: 18px;
}
.btn.btn-large {
    font-size:17px;
}
.btn.btn-medium {
    font-size: 16px;
}
.btn.btn-small {
    font-size: 15px;
}
.btn.btn-very-small {
    font-size: 14px;
}
.btn.btn-dark-gray:hover,
.btn.btn-dark-gray:active,
.btn.btn-transparent-light-gray:hover,
.btn.btn-transparent-light-gray:active,
.btn.btn-box-shadow.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:active{
    background-color: var(--base-color);
    border-color: var(--base-color);
    color: var(--white);
}
.btn.btn-base-color:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: var(--white);
}
/* page title */
.page-title-extra-large h2 {
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0px;
}
/* social media icon */
.social-icon-style-02 .small-icon li {
    margin: 0;
}
/* outside box right */ 
.outside-box-right-2 {
    margin-right: -2vw;
}
/* tab style 01 */
.tab-style-01 .nav-tabs .nav-link.show,
.tab-style-01 .nav-tabs .nav-link.active,
.tab-style-01 .nav-tabs .nav-link:hover {
    background-color: var(--base-color);
    color: var(--white);
}
.tab-style-01 .nav-tabs .nav-link {
    padding: 7px 29px;
    color: var(--dark-gray);
}
.tab-style-01 .nav-tabs > li.nav-item {
    padding: 0 13px;
}
/* time table */ 
.time-table-box .hover-detail {
    padding: 25px 30px;
}
/* accordion style 05 */
.accordion-style-05 .accordion-item {
    padding: 25px 35px 27px 75px;
}
/* footer */
footer .nav-link {
    color: var(--white);
}
.elements-social .light li a:hover {
    color: var(--base-color) !important;
}
footer .footer-logo img {
    max-height: 40px;
}
footer .elements-social ul li:last-child {
    margin-right: 0;
}
/* hero banner */
#iq-home {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#iq-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 51, 52, 0.82) 0%, rgba(166, 130, 78, 0.45) 100%);
    z-index: 1;
    border-radius: inherit;
}
#iq-home > .container {
    position: relative;
    z-index: 2;
}
#iq-home .hero-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--base-color);
    background: rgba(166, 130, 78, 0.15);
    border: 1px solid rgba(166, 130, 78, 0.3);
    border-radius: 30px;
    padding: 6px 20px;
    margin-bottom: 20px;
}
#iq-home h1 {
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
#iq-home .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 35px;
}
#iq-home .hero-divider {
    width: 60px;
    height: 3px;
    background: var(--base-color);
    border: none;
    margin: 0 0 25px 0;
    border-radius: 3px;
}
#iq-home .btn-hero-primary {
    background: var(--base-color);
    color: #fff;
    border: 2px solid var(--base-color);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 130, 78, 0.35);
}
#iq-home .btn-hero-primary:hover {
    background: #fff;
    color: var(--base-color);
    border-color: #fff;
    box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}
#iq-home .btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}
#iq-home .btn-hero-secondary:hover {
    background: #fff;
    color: var(--dark-gray);
    border-color: #fff;
}
#iq-home .hero-trust {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
#iq-home .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
}
#iq-home .hero-trust-item i {
    color: var(--base-color);
    font-size: 16px;
}
/* lang switcher dropdown */
.lang-switcher-toggle {
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}
.lang-dropdown {
    min-width: 100px !important;
}
.lang-dropdown .dropdown-item {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    letter-spacing: 0.5px;
}
.lang-dropdown .dropdown-item.active,
.lang-dropdown .dropdown-item:active {
    background-color: var(--base-color);
    color: #fff;
}
.lang-dropdown .dropdown-item:hover {
    background-color: rgba(166, 130, 78, 0.1);
}
/* mobile lang switcher */
.mobile-lang-switcher {
    order: 3;
    margin-right: 10px;
}
.lang-switcher-toggle-mobile {
    font-size: 22px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5f0e8;
    transition: all 0.3s ease;
}
.lang-switcher-toggle-mobile:hover {
    background: rgba(166, 130, 78, 0.2);
}
/* RTL support for Arabic */
html[dir="rtl"] body,
.rtl-page {
    direction: rtl;
    text-align: right;
}
html[dir="rtl"] #iq-home .hero-divider {
    margin: 0 0 25px auto;
}
html[dir="rtl"] #iq-home .hero-subtitle {
    margin-left: auto;
    margin-right: 0;
}
html[dir="rtl"] .me-10px {
    margin-right: 0 !important;
    margin-left: 10px !important;
}
html[dir="rtl"] .ms-5px {
    margin-left: 0 !important;
    margin-right: 5px !important;
}
html[dir="rtl"] .ps-lg-50px {
    padding-left: 0 !important;
    padding-right: 50px !important;
}
html[dir="rtl"] .pe-lg-50px {
    padding-right: 0 !important;
    padding-left: 50px !important;
}
html[dir="rtl"] .text-sm-start {
    text-align: right !important;
}
html[dir="rtl"] .text-md-start {
    text-align: right !important;
}
html[dir="rtl"] .text-md-end {
    text-align: left !important;
}
html[dir="rtl"] .text-sm-end {
    text-align: left !important;
}
/* media query responsive */
@media (min-width: 768px){
    .page-title-extra-large h1 {
        font-size: 3.8rem;
        line-height: 3.8rem;
    }
}
@media (max-width: 1600px){
    .box-layout {
        padding: 0 60px;
    }
    .sticky-wrap.shadow-in {
        left: 10px;
    }
    header .container-fluid {
        padding-left: 45px;
        padding-right: 45px;
    }
}
@media (max-width: 1400px){
    footer .nav-link {
        padding-left: .75rem;
        padding-right: .75rem;
    }
}
@media (max-width: 1199px){
    .box-layout {
        padding: 0 0;
    }
    .navbar .navbar-nav .nav-link {
        padding-left: 18px;
        padding-right: 18px;
    }
    header .btn.btn-switch-text.btn-small > span {
        padding: 8px 10px;
    }

    .tab-style-01 .nav-tabs > li.nav-item {
        padding: 0 8px;
    }
    header .navbar [class*=col-] {
        padding: 0px;
    }
    .time-table-box {
        padding-left: 5px;
        padding-right: 5px;
    }
}
@media (max-width: 991px){
    .tab-style-01 .nav-tabs .nav-link {
        padding: 5px 25px;
    }

    .time-schedule-scroll {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .time-schedule-scroll .time-schedule-min-width {
        min-width: 1050px;
    }
    .tab-style-01 .nav-tabs > li.nav-item {
        padding: 0 4px;
    }
    header .navbar [class*=col-] {
        padding: 0 15px;
    }
}
@media (max-width: 767px){
    .accordion-style-05 .accordion-item .number {
        top: 13px;
    }
    #iq-home {
        min-height: 70vh;
    }
    #iq-home h1 {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    #iq-home .hero-subtitle {
        font-size: 16px;
    }
    #iq-home .btn-hero-primary,
    #iq-home .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    #iq-home .hero-trust {
        gap: 15px;
    }
}