/* ===========================
   Root Variables
=========================== */
:root {
    --primary-color: #ad9a6d;
    --primary-dark: #776845;
    --primary-light: #e0c688;
    --primary-lighter: #f5e3b8;
    --light-color: #faf5ef;
    --text-color: #5a5a5a;
    --light-white: #dfdfdf;
    --dark-color: #2b2b2b;
    --white: #fff;
    --transition: all 0.3s ease;
}

/* ===========================
   Global Styles
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}
.section {
    position: relative;
    padding: 80px 0;
}
.section-small {
    position: relative;
    padding: 40px 0;
}
.section-header {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.section-header::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    margin-right: 20px;
}
.section-title {
    font-family: "Orpheus Pro", sans-serif;
    font-size: 32px;
    margin-bottom: 32px;
    text-transform: capitalize;
    color: var(--dark-color);
}
.section-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
}
.section-subtitle {
    font-family: "Orpheus Pro", sans-serif;
    font-size: 24px;
    margin-bottom: 24px;
    text-transform: capitalize;
    color: var(--dark-color);
}
.btn.square-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 14px;
    transition: var(--transition);
}
.btn.square-btn:hover {
    background: var(--primary-dark);
}
.btn.round-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    transition: var(--transition);
}
.btn.round-btn:hover {
    background: var(--primary-dark);
}
.btn-link {
    position: relative;
    text-decoration: none;
    font-family: "Orpheus Pro", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-dark);
    padding-right: 20px;
    transition: all 0.3s ease;
}
.btn-link:after {
    content: '';
    background: url(../images/icons/ic-right.png) no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.btn-link:hover {
    color: var(--primary-color);
}
.full-image-wrap {
    width: fit-content;
    overflow: hidden;
    border-radius: 8px;
}
.full-image-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
/* ===========================
   Navbar
=========================== */
.navbar {
    background: transparent;
    padding: 0;
    border-bottom: 1px solid var(--primary-light);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar.down {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
}
.logo {
    width: 280px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.logo .icon {
    display: inline-block;
    width: 95px;
}
.logo .icon img {
    width: 100%;
}
.logo .title {
    width: calc(100% - 95px);
    font-family: "Orpheus Pro", sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--white);
    text-wrap: wrap;
}
.navbar.down .logo .title {
    color: var(--dark-color);
}
.nav-links .nav-link {
    font-family: "Orpheus Pro", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    padding: 40px 16px !important;
    transition: var(--transition);
}
.navbar.down .nav-links .nav-link {
    color: var(--dark-color);
}
.nav-links .nav-link:hover,
.nav-links .nav-link:focus {
    color: var(--light-white);
}

.nav-links .nav-item {
    position: relative;
}

.nav-links .current-menu-item .nav-link {
    color: var(--primary-light) !important;
}
/* .nav-links .nav-item:hover > ::before, 
.nav-links .current-menu-item::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: 0;
} */
.nav-links .nav-item:last-child::before {
    content: '';
    width: 1px;
    height: 30px;
    background: var(--primary-light);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-top: 0 !important;
    border-radius: 0;
    background: var(--primary-light);
}
.nav-links .nav-item:hover > .dropdown-menu::before {
    content: none;
}

.dropdown-item {
    font-size: 16px;
    color: var(--text-color);
    padding: 8px 16px;
    border-bottom: 1px solid var(--primary-color);
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn.login-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 22px;
    font-size: 14px;
    transition: var(--transition);
}

.btn.login-btn:hover {
    background: var(--primary-dark);
}

/* ===========================
   Home
=========================== */
.home-banner {
    position: relative;
    background: url(../images/home-banner.png) no-repeat center center/cover;
    aspect-ratio: 16/9;
    width: 100%;
    max-height: 100vh;
    padding: 106px 0 0;
}
.home-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
.home-banner .title {
    position: relative;
    color: var(--white);
    font-family: "Orpheus Pro", sans-serif;
    font-size: 60px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
}
.home-banner .subtitle {
    position: relative;
    color: var(--light-white);
    font-size: 20px;
    line-height: 28px;
    margin: 20px 0 30px;
    max-width: 600px;
}
.mySwiper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.bg-primary-lighter {
    background: var(--primary-lighter);
}

.swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    transition-timing-function: linear !important; /* smooth loop */
}

.mySwiper .swiper-slide {
  width: 300px !important;   /* force 300px width */
  height: 300px !important;  /* force 300px height */
  flex: 0 0 300px;           
  overflow: hidden;
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===========================
   About Us
=========================== */
.page-header {
    position: relative;
    background: url(../images/page-header.png) no-repeat center center/cover;
    padding: 146px 0 40px;
}
.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
.page-header .breadcrumb-header {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.page-header .page-title {
    position: relative;
    color: var(--white);
    font-family: "Orpheus Pro", sans-serif;
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
}
.page-header .breadcrumb {
    position: relative;
    margin-bottom: 0;
}
.page-header .breadcrumb a {
    color: var(--light-white);
    text-decoration: none;
    font-size: 14px;
}
.page-header .breadcrumb a:hover {
    color: var(--white);
}
.page-header .breadcrumb li{
    font-size: 14px;
    color: var(--light-white);
    pointer-events: none;
    cursor: default;
}
.page-header .breadcrumb li.active{
    color: var(--white);
}
.page-header .breadcrumb li::after {
    content: "/";
    margin: 0 8px;
    color: var(--light-white);
}
.page-header .breadcrumb li:last-child::after {
    content: none;
    margin: 0;
}
/* ===========================
   Officers 
============================*/
.table {
    border-color: var(--primary-color);
}
.table thead th {
    background: var(--dark-color);
    color: var(--white);
}
.table>:not(caption)>*>* {
    background: transparent;
    color: var(--text-color);
    font-weight: 400;
}
/* ===========================
   Contact
=========================== */
.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 16px;
    margin-bottom: 4px;
}
.form-control {
    border: 1px solid var(--primary-light);
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    font-size: 14px;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}
/* ===========================
   Footer
=========================== */
.footer {
    background: var(--dark-color);
    padding: 20px 0;
}

.footer-bottom .footertext {
    text-align: center;
    font-size: 14px;
    padding-top: 16px;
    color: var(--light-white);
}

@media (max-width: 1199px) {
    .nav-links .nav-link {
        font-size: 14px;
        padding: 41px 10px !important;
    }
}
@media (max-width: 991px) {
    .custom-toggler {
        background: var(--primary-dark);
        border: none;
        padding: 10px;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        height: 40px;
    }
    .custom-toggler span {
        display: block;
        height: 3px;
        width: 100%;
        background: var(--white);
        border-radius: 2px;
    }
    .custom-close {
        --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
        --bs-btn-close-opacity: 1; /* ensure full opacity */
        background-color: var(--primary-dark);
        border-radius: 4px;
        opacity: 1;
        padding: 6px;
        /* width: 40px;
        height: 40px; */
    }
    .custom-toggler:focus,
    .custom-close:focus {
        box-shadow: none;
    }

    .offcanvas-header {
        border-bottom: 1px solid var(--primary-light);
    }
    .nav-links .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--primary-light);
        color: var(--dark-color);
    }
    .nav-link[data-bs-toggle="collapse"]::after {
        content: "+";
        float: right;
        font-weight: bold;
        font-size: 24px;
        line-height: 1;
    }
    .nav-link[aria-expanded="true"]::after {
        content: "-";
    }
    .nav-links .nav-link:hover,
    .nav-links .nav-link:focus {
        color: var(--primary-light);
    }
    .nav-links .nav-item:hover > ::before, .nav-links .current-menu-item::before,
    .nav-links .nav-item:last-child::before {
        content: none;
    }
    .offcanvas.offcanvas-end {
        border-left: 0;
    }
    .dropdown-item {
        font-size: 14px;
        padding: 8px 0px;
        border-bottom: 1px solid var(--primary-light);
    }
    .dropdown-item:hover {
        background: none;
        color: var(--text-color);
    }
    .btn.login-btn {
        margin-left: 0;
    }
    .section {
        padding: 60px 0;
    }
    .section-small {
        padding: 30px 0;
    }
    .section-header {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .section-title {
        font-size: 26px;
        margin-bottom: 26px;
    }
    .section-description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }
    .btn-link {
        font-size: 14px;
        line-height: 20px;
        padding-right: 16px;
    }
    .btn-link:after {
        width: 14px;
        height: 14px;
    }
    .home-banner .title {
        font-size: 44px;
        line-height: 56px;
    }
    .page-header .page-title {
        font-size: 30px;
        line-height: 40px;
    }
}
@media (max-width: 767px) {
    .home-banner .title {
        font-size: 28px;
        line-height: 36px;
    }
    .home-banner .subtitle {
        font-size: 16px;
        line-height: 24px;
        margin: 12px 0 20px;
    }
    .page-header .breadcrumb-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .page-header .page-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 0;
    }
    .footer-bottom .footertext {
        padding-top: 0;
        margin-bottom: 0;
        font-size: 12px;
    }
}
@media (max-width: 575px) {
    .logo {
        width: 230px;
    }
    .logo .icon {
        width: 70px;
    }
    .logo .title {
        width: calc(100% - 70px);
        font-size: 18px;
        line-height: 22px;
    }
    .section {
        padding: 40px 0;
    }
    .section-small {
        padding: 20px 0;
    }
    .section-header {
        font-size: 10px;
        margin-bottom: 8px;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 22px;
    }
    .home-banner {
        aspect-ratio: 4/3;
        padding: 81px 0 0;
    }
    .mySwiper .swiper-slide {
        width: 200px !important;
        height: 200px !important;
        flex: 0 0 200px;
    }
    .page-header {
        padding: 106px 0 20px;
    }
    .page-header .breadcrumb-header {
        gap: 6px;
    }
    .form-label {
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 2px;
    }
    .form-control {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .home-banner {
        aspect-ratio: auto;
        padding: 121px 0 40px;
    }
    .home-banner .title {
        font-size: 24px;
        line-height: 30px;
    }
    .home-banner .subtitle {
        font-size: 14px;
        line-height: 20px;
        margin: 8px 0 16px;
    }
}