/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Tinos:wght@400;700&family=Arimo:wght@400;500;600;700&display=swap');

/* Variables */
:root {
    --primary-color: #1e2a45;
    --secondary-color: #F6F0DE;
    --bg-white: #fff;
    --accent-color: #fff;
    --text-color: #000;
    --text-color-light: #6A7282;
    --text-font-family: 'Arimo', sans-serif;
    --text-secondary-font-family: 'Montserrat', sans-serif;
    --heading-font-family: 'Tinos', serif;
    --heading-font-size: 48px;
    --sub-heading-font-size: 24px;
    --menu-font-size: 16px;
    --banner-btn-font-size: 16px;
    --btn-font-size: 12px;
    --text-font-size: 14px;
    --page-title-font-size: 48px;
    --page-title-text-font-size: 20px;
}

/* General CSS */
hr {
    border: 1px solid var(--text-color-light);
}

.bg-secondary-with-op {
    background-color: rgba(246, 240, 222, 0.5);
}

/* Header */
.navbar.desktop {
    padding: 30px 70px;
    z-index: 99999999999 !important;
}

.navbar.desktop ul {
    gap: 24px;
}

.navbar ul li a {
    color: var(--accent-color) !important;
    font-size: var(--menu-font-size);
    font-family: var(--text-secondary-font-family);
}

.navbar.mobile {
    background-color: transparent !important;
}

.navbar.mobile .navbar-toggler {
    background-color: white;
    border-radius: 25px;
}

.offcanvas {
    background-color: var(--primary-color);
}

.offcanvas ul {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    list-style: none;
    gap: 0;
}

.offcanvas ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas ul li:last-child {
    border-bottom: none;
}

.offcanvas ul li a {
    color: var(--accent-color) !important;
    font-size: 22px;
    font-family: var(--text-secondary-font-family);
    text-decoration: none;
    display: block;
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.offcanvas ul li a:hover {
    color: var(--secondary-color) !important;
    padding-left: 20px;
}

/* Banner Section */
.hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    position: relative;
    padding-left: 70px;
}

.hero-banner .badge {
    border: 1px solid var(--text-color-light);
    width: auto;
    color: var(--accent-color);
    font-size: var(--text-font-size);
    font-family: var(--text-font-family);
    font-weight: 400;
    padding: 11px 25px;
    border-radius: 0;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.hero-banner .badge img {
    margin-right: 12px;
}

.hero-banner .overlay {
    background: linear-gradient(180deg,
            rgba(30, 42, 69, 0.9) 0%,
            rgba(30, 42, 69, 0.7) 50%,
            rgba(30, 42, 69, 0.5) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.project-card .overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(30, 42, 69, 0.6) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-banner h1 {
    color: var(--accent-color);
    font-size: 72px;
    line-height: 90px;
    font-family: var(--heading-font-family);
}

.hero-banner h1 i {
    color: var(--secondary-color);
}

.hero-banner .excerpt {
    color: var(--text-color-light);
    font-size: var(--sub-heading-font-size);
    line-height: 39px;
    font-family: var(--text-font-family);
}

.hero-banner .banner-buttons {
    display: flex;
    gap: 20px;
}

.hero-banner .banner-buttons .solid-btn {
    background-color: var(--bg-white);
    color: var(--text-color);
    font-size: var(--banner-btn-font-size);
    font-family: var(--text-font-family);
    border-radius: 0;
    padding: 14px 13px;
    letter-spacing: 0.6px;
}

.hero-banner .banner-buttons .outline-btn {
    background-color: transparent;
    color: var(--accent-color);
    font-size: var(--banner-btn-font-size);
    font-family: var(--text-font-family);
    border: 1px solid var(--accent-color);
    border-radius: 0;
    padding: 14px 13px;
    letter-spacing: 0.6px;
}

@media (max-width: 1200px) {
    .hero-banner h1 {
        margin-top: 32px;
        font-size: 48px;
        line-height: 60px;
    }

    .hero-banner .excerpt {
        font-size: 20px;
        line-height: 30px;
    }

    .hero-banner {
        padding-left: 20px;
    }
}

/* Counting Section */
#counting-section {
    padding: 60px 206px;
    background-color: var(--bg-white);
}

#counting-section .counting-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

#counting-section .counting-box img {
    width: 70px;
    height: 70px;
}

#counting-section .counting-box .counting-number {
    color: var(--text-color);
    font-size: 30px;
    font-family: var(--heading-font-family);
    line-height: 30px;
}

#counting-section .counting-box .counting-text {
    color: var(--text-color);
    font-size: 12px;
    font-family: var(--text-font-family);
    color: var(--text-color-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (max-width: 1200px) {
    #counting-section {
        padding: 60px 20px;
    }

    #counting-section .counting-box {
        flex-direction: column;
        gap: 0;
        text-align: center;
        margin-bottom: 20px;
    }
}

/* Footer Section */
.footer {
    background-color: var(--secondary-color);
    padding: 80px 70px 40px;
}

.footer .footer-logo {
    max-width: 200px;
}

.footer .footer-slogan {
    color: var(--primary-color);
    font-family: var(--text-secondary-font-family);
    font-size: 18px;
    margin-top: 30px;
    line-height: 1.6;
    font-weight: 500;
}

.footer .footer-title {
    color: var(--primary-color);
    font-family: var(--text-secondary-font-family);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer .footer-links li {
    margin-bottom: 16px;
}

.footer .footer-links a {
    color: var(--primary-color);
    font-family: var(--text-secondary-font-family);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer .footer-links a:hover {
    opacity: 1;
}

.footer .footer-bottom {
    margin-top: 80px;
}

.footer .copyright {
    color: var(--primary-color);
    font-family: var(--text-secondary-font-family);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    margin: 0;
}

.footer .footer-bottom-links {
    gap: 30px;
}

.footer .footer-bottom-links a {
    color: var(--primary-color);
    font-family: var(--text-secondary-font-family);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.8;
}

.footer .footer-bottom-links a:hover {
    opacity: 1;
}

@media (max-width: 991px) {
    .footer {
        padding: 50px 20px 30px;
    }

    .footer .footer-title {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .footer .footer-bottom {
        margin-top: 40px;
        text-align: center;
    }

    .footer .footer-bottom-links {
        justify-content: center !important;
        margin-top: 20px;
        flex-wrap: wrap;
    }
}

/* Philosophy Section */
#philosophy-section {
    background-color: var(--secondary-color);
    padding: 100px 70px;
}

#philosophy-section .row {
    gap: 64px;
}

.philosophy-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    text-align: center;
    display: block;
}

.philosophy-content {
    padding-left: 20px;
}

#philosophy-section .section-subtitle {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

#philosophy-section .section-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin-bottom: 30px;
}

#philosophy-section p {
    color: var(--text-color);
    font-family: var(--text-font-family);
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.learn-more-link {
    color: var(--primary-color);
    font-family: var(--text-font-family);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: var(--text-color-light);
    text-decoration: none;
}

/* News Section */
#news-section {
    padding: 100px 70px;
    background-color: var(--bg-white);
}

#news-section .section-subtitle {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

#news-section .section-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin: 0;
}

#news-section .view-all-link {
    color: var(--primary-color);
    font-family: var(--text-font-family);
    font-size: 14px;
    text-decoration: none;
}

.news-card {
    border: none;
    background-color: transparent;
}

.news-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-meta {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    margin-bottom: 15px;
}

.news-meta .meta-separator {
    margin: 0 8px;
}

.news-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 32px;
    max-width: 400px;
}

.news-excerpt {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: var(--text-font-size);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-link {
    color: var(--text-color);
    font-family: var(--text-font-family);
    font-size: var(--text-font-size);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    #philosophy-section .row {
        gap: 40px;
    }

    #philosophy-section {
        padding: 60px 20px;
    }

    .philosophy-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    #philosophy-section .row {
        gap: 0px;
    }
}

/* Featured Projects Section */
#featured-projects {
    padding: 100px 70px;
    background-color: var(--bg-white);
}

@media (max-width: 991px) {
    #news-section {
        padding: 60px 20px;
    }
}

/* Page Header (e.g. Projects Page) */
.page-header {
    background-color: var(--primary-color);
    padding: 120px 70px 80px;
    /* More padding top if there is a fixed navbar */
}

.page-header .section-subtitle {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 18px;
}

.page-header .page-title {
    color: var(--bg-white);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin-bottom: 15px;
}

.page-header .page-title i {
    color: var(--secondary-color);
}

.page-header .page-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: var(--page-title-text-font-size);
    margin: 0;
    max-width: 700px;
}

/* Projects List layout */
.projects-list-section {
    padding: 100px 70px 80px;
    background-color: var(--bg-white);
}

.single-project-row {
    margin-bottom: 80px;
}

.single-project-row:last-child {
    margin-bottom: 0;
}

.project-list-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    width: 400px;
    height: 400px;
}

.project-info a {
    text-decoration: none;
}

.project-list-image {
    width: 100%;
    object-fit: cover;
    display: block;
}

.status-badge-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-family: var(--text-font-family);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 6px;
    height: 6px;
    display: inline-block;
}

.text-success {
    color: #008236 !important;
    background-color: #B9F8CF;
}

.text-warning {
    color: #CA3500 !important;
    background-color: #FFD9A0;
}

.bg-success {
    background-color: #008236 !important;
}

.bg-warning {
    background-color: #CA3500 !important;
}

.project-list-info {
    padding-right: 40px;
}

.project-type {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-list-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 36px;
    margin-bottom: 10px;
}

.project-list-location {
    color: var(--text-color);
    font-family: var(--text-font-family);
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-list-desc {
    color: #555;
    font-family: var(--text-font-family);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}

.project-divider {
    border-color: #eee;
    margin-bottom: 13px;
    opacity: 1;
}

.project-stats .stat-label {
    display: block;
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 12px;
}

.project-stats .stat-value {
    display: block;
    color: var(--primary-color);
    font-family: var(--text-font-family);
    font-size: 14px;
}

.project-details-btn {
    background-color: var(--primary-color) !important;
    color: var(--bg-white) !important;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: var(--banner-btn-font-size);
    text-transform: capitalize;
}

.project-details-btn:hover {
    background-color: #121a2c !important;
    color: var(--bg-white) !important;
}

@media (max-width: 991px) {
    .page-header {
        padding: 100px 30px 60px;
    }

    .projects-list-section {
        padding: 60px 20px;
    }

    .single-project-row {
        margin-bottom: 60px;
    }

    .project-list-info {
        padding-right: 0;
        margin-top: 30px;
    }
}

#featured-projects .section-subtitle {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

#featured-projects .section-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin: 0;
}

#featured-projects .view-all-link {
    color: var(--primary-color);
    font-family: var(--text-font-family);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

#featured-projects .view-all-link:hover {
    color: var(--text-color-light);
}

.project-card {
    border: none;
    background-color: transparent;
}

.project-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.project-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    font-size: 12px;
    font-family: var(--text-font-family);
    font-weight: 500;
    z-index: 2;
}

.location-badge i {
    color: var(--text-color);
}

.location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--text-color-light);
    font-size: 14px;
    font-family: var(--text-font-family);
    z-index: 2;
    display: flex;
    align-items: center;
}

.project-name {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 24px;
    margin-bottom: 10px;
}

.project-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 991px) {
    #featured-projects {
        padding: 60px 20px;
    }

    #featured-projects .project-image-wrapper {
        border-radius: 12px;
    }
}

/* Journey Section */
.journey-section {
    background-color: var(--primary-color);
    padding: 100px 20px;
    text-align: center;
}

.journey-section h2 {
    color: var(--bg-white);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin-bottom: 20px;
}

.journey-section p {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 20px;
    margin-bottom: 40px;
}

.journey-section .journey-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.journey-section .solid-btn {
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-size: 13px;
    font-family: var(--text-font-family);
    font-weight: 600;
    border-radius: 0;
    padding: 15px 30px;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid var(--bg-white);
    transition: all 0.3s ease;
}

.journey-section .outline-btn {
    background-color: transparent;
    color: var(--bg-white);
    font-size: 13px;
    font-family: var(--text-font-family);
    font-weight: 600;
    border: 1px solid var(--bg-white);
    border-radius: 0;
    padding: 15px 30px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.journey-section .solid-btn:hover {
    background-color: transparent;
    color: var(--bg-white);
}

.journey-section .outline-btn:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.journey-section.bg-white h2,
.journey-section.bg-white p {
    color: var(--primary-color);
}

.journey-section.bg-white .solid-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.journey-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.journey-newsletter-form form {
    display: flex;
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

.journey-newsletter-form input {
    flex: auto;
    padding: 15px 30px;
    border: 1px solid var(--bg-white);
    border-radius: 0;
    font-size: 13px;
    font-family: var(--text-font-family);
    font-weight: 600;
    color: var(--bg-white);
    background-color: transparent;
}

.journey-newsletter-form button {
    flex: 1;
    padding: 15px 30px;
    border: 1px solid var(--bg-white);
    border-radius: 0;
    font-size: 13px;
    font-family: var(--text-font-family);
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--bg-white);
}

@media (max-width: 767px) {

    .journey-section .journey-buttons,
    .journey-newsletter-form form {
        flex-direction: column;
        align-items: center;
    }

    .journey-section .solid-btn,
    .journey-section .outline-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Featured Article Section */
.featured-article-section {
    padding: 100px 70px;
    background-color: var(--bg-white);
}

.featured-article-badge {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 12px;
    font-family: var(--text-font-family);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 8px 16px;
    display: inline-block;
}

.featured-article-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.featured-article-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-article-topic {
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: var(--bg-white);
    color: var(--text-color);
    font-family: var(--text-font-family);
    font-size: 12px;
    padding: 6px 16px;
    z-index: 2;
}

.featured-article-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    line-height: 1.2;
    margin-bottom: 20px;
}

.featured-article-excerpt {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 18px;
    margin-bottom: 32px;
}

.featured-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    margin-bottom: 32px;
}

.featured-article-meta span i {
    margin-right: 8px;
}

.featured-article-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-family: var(--text-font-family);
    font-size: 12px;
    letter-spacing: 1px;
    padding: 14px 24px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.featured-article-btn:hover {
    background-color: #121a2c;
    color: var(--bg-white);
}

.featured-article-btn img {
    margin-left: 10px;
}

@media (max-width: 991px) {
    .featured-article-section {
        padding: 60px 20px;
    }

    .featured-article-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .featured-article-image-wrapper {
        min-height: 300px;
    }
}


.article-body div,
.article-body div a,
.article-body div p {
    font-size: 18px !important;
    font-family: var(--text-font-family) !important;
}

/* Media Article Card Grid */
.media-grid-section {
    padding: 0 70px 100px;
    background-color: var(--bg-white);
}

.media-article-card {
    border: 1px solid #EBEBEB;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
}

.media-article-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.media-article-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-article-topic {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--bg-white);
    color: var(--text-color);
    font-family: var(--text-font-family);
    font-size: 13px;
    padding: 4px 12px;
    z-index: 2;
}

.media-article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.media-article-meta-top {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 13px;
    margin-bottom: 20px;
}

.media-article-meta-top .meta-sep {
    font-size: 14px;
    color: #ccc;
}

.media-article-meta-top img {
    margin-right: 6px;
    width: 13px;
    height: auto;
    opacity: 0.7;
}

.media-article-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.media-article-excerpt {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.media-article-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.media-article-author {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 13px;
    display: flex;
    align-items: center;
}

.media-article-author img {
    margin-right: 8px;
    width: 13px;
    opacity: 0.7;
}

.media-article-read-more {
    color: var(--primary-color);
    font-family: var(--text-font-family);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.media-article-read-more img {
    margin-left: 8px;
    width: 14px;
    transition: transform 0.3s ease;
}

.media-article-read-more:hover {
    color: var(--text-color-light);
}

.media-article-read-more:hover img {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .media-grid-section {
        padding: 0 20px 60px;
    }
}

/* Our Story Section */
#our-story {
    padding: 100px 70px;
    background-color: var(--bg-white);
}

.our-story-content {
    padding-right: 40px;
}

.our-story-content .section-subtitle {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.our-story-content .section-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.our-story-content p {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 24px;
}

.our-story-content p:last-child {
    margin-bottom: 0;
}

.story-stats-row {
    margin-top: 32px;
    display: flex;
    gap: 24px;
}

.story-stat-box {
    background-color: var(--secondary-color);
    padding: 24px;
    border-radius: 16px;
    flex: 1;
}

.story-stat-box .stat-number {
    display: block;
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1;
}

.story-stat-box .stat-text {
    display: block;
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
}

/* .story-image-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.story-img-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-img-col-1 {
    margin-top: 60px;
}

.story-img-col img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.story-img-col .img-1 {
    aspect-ratio: 1;
}

.story-img-col .img-2 {
    aspect-ratio: 0.85;
}

.story-img-col .img-3 {
    aspect-ratio: 0.85;
}

.story-img-col .img-4 {
    aspect-ratio: 1;
} */

@media (max-width: 991px) {
    #our-story {
        padding: 60px 20px;
    }

    .our-story-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .story-stats-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* What Drives Us Section */
.what-drives-us-section {
    padding: 70px 70px;
}

.what-drives-us-section .section-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin-bottom: 40px;
}

.what-drives-us-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
}

.what-drives-us-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 4px;
}


.what-drives-us-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}

.what-drives-us-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

@media (max-width: 991px) {
    .what-drives-us-section {
        padding: 60px 20px;
    }

    .what-drives-us-section .section-title {
        margin-bottom: 40px;
    }
}

/* Milestones Section */
.milestones-section {
    padding: 100px 70px;
    background-color: var(--bg-white);
}

.milestones-section .section-subtitle {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.milestones-section .section-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 1px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -0.5px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 0;
    background-image: url(../images/icons/timeline-dot.png);
    box-shadow: 8px 0 0 10px var(--bg-white);
    border: 5px solid var(--secondary-color);
}

.timeline-item.right::after {
    left: -12px;
}

.timeline-card {
    padding: 30px;
    background-color: var(--bg-white);
    position: relative;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    display: inline-block;
    width: 100%;
    max-width: 320px;
    border: 1px solid #f5f5f5;
    text-align: center;
}

.timeline-year {
    display: block;
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 30px;
    margin-bottom: 12.5px;
}

.timeline-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 20px;
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

@media (max-width: 767px) {
    .milestones-section {
        padding: 60px 20px;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: center;
    }

    .timeline-item.left {
        text-align: center;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 11px;
    }

    .timeline-card {
        max-width: 100%;
    }
}

/* Team Section */
.team-section {
    padding: 27px 70px;
}

.team-section .section-subtitle {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 17px;
}

.team-section .section-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin-bottom: 24px;
}

.team-section .section-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 18px;
    margin-bottom: 0;
}

.team-card {
    background-color: transparent;
    border: none;
}

.team-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 20px;
    margin-bottom: 22px;
}

.team-role {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 991px) {
    .team-section {
        padding: 60px 20px;
    }
}

/* Contact Inquiries Section */
.contact-inquiry-section {
    padding: 80px 70px;
}

.inquiry-card {
    background-color: rgba(246, 240, 222, 0.4);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.inquiry-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.inquiry-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 20px;
    margin-bottom: 10px;
}

.inquiry-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

@media (max-width: 991px) {
    .contact-inquiry-section {
        padding: 60px 20px;
    }
}

/* Contact Main Section */
.contact-main-section {
    padding: 0 70px 100px;
}

.contact-form-card,
.contact-info-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    padding: 50px;
}

.contact-info-card {
    height: auto;
    padding: 32px;
}

.contact-form-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-form-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-form .form-label {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 12px 16px;
    font-family: var(--text-font-family);
    font-size: 14px;
    color: var(--text-color);
}

.contact-form .form-control::placeholder {
    color: #a0a0a0;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form .submit-btn {
    border-radius: 4px;
    padding: 12px 30px;
    font-family: var(--heading-font-family);
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.contact-info-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-info-list {
    margin: 0;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(246, 240, 222, 0.6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.assistance-card {
    background-color: var(--primary-color);
    border-radius: 24px;
    padding: 32px;
    color: var(--bg-white);
}

.assistance-title {
    color: var(--bg-white);
    font-family: var(--heading-font-family);
    font-size: 24px;
    margin-bottom: 10px;
}

.assistance-desc {
    color: #e0e0e0;
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.assistance-btn {
    width: 100%;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    font-family: var(--text-font-family);
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    border-radius: 4px;
}

.assistance-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: 8px;
}

.assistance-btn:hover {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

@media (max-width: 991px) {
    .contact-main-section {
        padding: 0 20px 60px;
    }

    .contact-form-card,
    .contact-info-card,
    .assistance-card {
        padding: 30px;
    }
}

/* Locations Section */
.locations-section {
    padding: 0 70px 100px;
}

.locations-section .section-subtitle {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.locations-section .section-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin: 0;
}

.location-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    height: 100%;
}

.location-image {
    position: relative;
    width: 100%;
    max-height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.location-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.location-title {
    color: #fff;
    font-family: var(--heading-font-family);
    font-size: 24px;
    margin: 0;
}

.location-info {
    padding: 32px;
}

.location-details {
    margin: 0 0 30px;
    padding: 0;
}

.location-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.location-details li:last-child {
    margin-bottom: 0;
}

.location-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 15px;
    margin-top: 3px;
    opacity: 1;
}

.location-details span {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 20px;
}

.location-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    background-color: transparent;
    border: 1px solid #1f2a44;
    color: #1f2a44;
    font-family: var(--text-font-family);
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.6px;
    border-radius: 4px;
}

.location-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: 8px;
}

.location-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

@media (max-width: 991px) {
    .locations-section {
        padding: 0 20px 60px;
    }

    .location-image {
        height: 200px;
    }

    .location-info {
        padding: 30px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 70px;
}

.benefits-section .section-subtitle {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 17px;
}

.benefits-section .section-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin-bottom: 24px;
}

.benefits-section .section-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 64px;
}

.benefit-card {
    background-color: rgba(246, 240, 222, 0.4);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-icon i {
    color: var(--bg-white);
    font-size: 24px;
}

.benefit-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 20px;
    margin-bottom: 16px;
}

.benefit-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

@media (max-width: 991px) {
    .benefits-section {
        padding: 60px 20px;
    }
}

/* Open Positions Section */
.open-positions-section,
.filter-section .row {
    padding: 25px 70px;
    background-color: var(--bg-white);
}

.filter-section {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.filter-label {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
}

.filter-btn {
    background-color: #f5f6f8;
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    padding: 10px 22px;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.positions-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 28px;
    margin-bottom: 40px;
}

.job-card {
    background-color: var(--bg-white);
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.job-badges {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
}

.job-badges .badge {
    padding: 6px 16px;
    font-family: var(--text-font-family);
    font-size: 12px;
    border-radius: 4px;
}

.job-badges .badge-dark {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.job-badges .badge-light {
    background-color: rgba(246, 240, 222, 1);
    color: var(--primary-color);
}

.job-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
}

.job-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 18px;
}

.job-meta {
    display: flex;
    gap: 32px;
    margin-bottom: 16px;
}

.job-meta span {
    display: flex;
    align-items: center;
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
}

.job-meta img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: 8px;
    opacity: 1;
}

.job-requirements {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.req-label {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 12px;
}

.req-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.req-tag {
    background-color: #f8f9fa;
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
}

.job-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.apply-btn,
.details-btn {
    width: 150px;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--text-font-family);
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 0px;
}

.apply-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.details-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

@media (max-width: 991px) {
    .open-positions-section {
        padding: 60px 20px;
    }

    .job-card {
        padding: 30px 20px;
    }

    .job-meta {
        flex-direction: column;
        gap: 16px;
    }

    .job-actions {
        align-items: stretch;
    }

    .apply-btn,
    .details-btn {
        width: 100%;
    }
}

/* Project Hero Section */
.project-hero {
    position: relative;
    width: 100%;
    max-height: 500px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 70px 80px;
    width: 100%;
}

.project-hero-title {
    color: var(--bg-white);
    font-family: var(--heading-font-family);
    font-size: 64px;
    margin-bottom: 5px;
}

.project-hero-location {
    color: #e0e0e0;
    font-family: var(--text-font-family);
    font-size: 18px;
    margin-bottom: 40px;
}

.project-hero-meta {
    display: flex;
    gap: 150px;
}

.project-meta-item {
    display: flex;
    flex-direction: column;
}

.project-meta-label {
    color: #a0a0a0;
    font-family: var(--text-font-family);
    font-size: 14px;
    margin-bottom: 5px;
}

.project-meta-value {
    color: var(--bg-white);
    font-family: var(--text-font-family);
    font-size: 18px;
}

@media (max-width: 991px) {
    .project-hero-content {
        padding: 0 20px 40px;
    }

    .project-hero-title {
        font-size: 42px;
    }

    .project-hero-meta {
        gap: 40px;
        flex-direction: column;
    }
}

/* Project About Section */
.project-about-section {
    padding: 50px 70px;
}

button.nav-link.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

button.nav-link {
    color: var(--primary-color);
}

.project-about-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: var(--heading-font-size);
    margin-bottom: 30px;
}

.project-about-desc p {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
}

.project-highlights-card {
    background-color: var(--secondary-color);
    border-radius: 16px;
    padding: 50px 40px;
    height: 100%;
}

.highlights-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 32px;
    margin-bottom: 30px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    position: relative;
    padding-left: 20px;
    color: var(--primary-color);
    font-family: var(--text-font-family);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
}

.highlights-list li:last-child {
    margin-bottom: 0;
}

.highlights-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
}

@media (max-width: 991px) {
    .project-about-section {
        padding: 60px 20px;
    }

    .project-highlights-card {
        padding: 30px 20px;
    }
}

/* Project Gallery Section */
.project-gallery-section {
    padding: 0 70px 30px;
}

.project-gallery-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 36px;
    margin-bottom: 16px;
}

.gallery-main-swiper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-height: 500px;
}

.gallery-main-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Swiper Navigation */
.gallery-main-swiper .swiper-button-next,
.gallery-main-swiper .swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(246, 240, 222, 0.8);
    width: 48px;
    height: 48px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gallery-main-swiper .swiper-button-next:after,
.gallery-main-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.gallery-main-swiper .swiper-button-next:hover,
.gallery-main-swiper .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* Custom Pagination */
.gallery-main-swiper .swiper-pagination-fraction {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 42, 69, 0.9);
    color: var(--bg-white);
    font-family: var(--text-font-family);
    font-size: 14px;
    padding: 10px 24px;
    width: auto;
    border-radius: 8px 8px 0 0;
    letter-spacing: 2px;
}

.gallery-thumbs-swiper {
    padding-top: 15px;
}

.gallery-thumbs-swiper .swiper-slide {
    height: 70px;
    opacity: 0.5;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.gallery-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--primary-color);
}

.gallery-thumbs-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .project-gallery-section {
        padding: 0 20px 60px;
    }

    .gallery-main-swiper {
        aspect-ratio: 4 / 3;
    }

    .gallery-thumbs-swiper .swiper-slide {
        height: 60px;
    }
}

/* Premium Facilities Section */
.premium-facilities-section {
    padding: 0 70px 100px;
}

.facilities-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 36px;
    margin-bottom: 10px;
}

.facilities-subtitle {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.facility-card {
    background-color: var(--secondary-color);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.facility-icon {
    background-color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.facility-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.facility-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 20px;
    margin-bottom: 10px;
}

.facility-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .premium-facilities-section {
        padding: 0 20px 60px;
    }
}

/* Prime Location Section */
.prime-location-section {
    padding: 0 70px 100px;
}

.prime-location-title {
    color: var(--primary-color);
    font-family: var(--heading-font-family);
    font-size: 36px;
    margin-bottom: 20px;
}

.prime-location-desc {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.location-item:last-child {
    border-bottom: none;
}

.location-name {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-family: var(--text-font-family);
    font-size: 16px;
}

.location-name img {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    opacity: 0.6;
}

.location-time {
    color: var(--text-color-light);
    font-family: var(--text-font-family);
    font-size: 14px;
}

.location-image-wrapper {
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.location-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .prime-location-section {
        padding: 0 20px 60px;
    }

    .location-image-wrapper {
        min-height: 300px;
        margin-top: 40px;
    }
}