:root {
    --primary-color: #123a59;
    --secondary-color: #f2b400;
    --accent-color: #005c8c;
    --text-color: #666;
    --heading-color: #222;
    --white: #fff;
    --black: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    color: var(--heading-color);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0d3554;
}


/* =========================================
   GLOBAL SECTION HEADING
========================================= */

.section-heading h6 {
    margin: 0 0 18px;
    color: #d5aa37;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar {
    padding: 0;
    min-height: 78px;
}

.navbar-brand {
    background: #fff;
    padding: 14px 5px;
    margin-top: 0;
    margin-bottom: -30px;
    position: relative;
    z-index: 10;
}

.navbar-brand img {
    height: 100px;
}

.navbar-nav {
    gap: 18px;
}

.nav-link {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.nav-link:hover {
    color: #ffd400;
}

.nav-link.active {
    color: #ffd400;
}

.nav-link i {
    font-size: 20px;
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    background: #113b5a;
    padding: 12px 0;
    min-width: 180px;
}

.dropdown-item {
    color: #fff;
    padding: 10px 18px;
}

.dropdown-item:hover {
    background: transparent;
    color: #ffd400;
}

.enquire-btn {
    background: #ffd400;
    color: #111;
    border-radius: 0;
    padding: 11px 22px;
    font-weight: 600;
}

.enquire-btn:hover {
    background: #fff;
}

.navbar-toggler {
    color: #fff;
    font-size: 34px;
}

.navbar-toggler i {
    color: #fff;
}

@media(max-width:991px) {
    .main-header {
        background: #0d3554;
    }
    .navbar-brand {
        margin-bottom: 0;
        padding: 10px 15px;
    }
    .navbar-brand img {
        height: 70px;
    }
    .navbar-collapse {
        background: #0d3554;
        padding: 20px;
    }
    .navbar-nav {
        gap: 0;
        align-items: flex-start !important;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        padding: 14px 0;
    }
    .dropdown-menu {
        background: #18496c;
        margin-top: 0;
    }
    .enquire-btn {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
}


/*Footer*/

.footer {
    background: var(--primary-color);
    padding: 70px 0;
}

.footer-left {
    border-right: 2px solid rgba(255, 255, 255, .7);
    text-align: center;
    padding-right: 40px;
}

.footer-logo {
    width: 88px;
    background: #fff;
    padding: 12px;
    margin: auto;
}

.footer-social {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffcb05;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #123a59;
    font-size: 18px;
    transition: .3s;
}

.footer-social a:hover {
    transform: translateY(-4px);
}

.footer-right {
    padding-left: 60px;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 42px;
}

.footer-menu a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s;
}

.footer-menu a:hover {
    color: #ffcb05;
}

.footer hr {
    border-color: rgba(255, 255, 255, .6);
    margin: 30px 0;
}

.footer-contact {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.footer-contact div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.footer-contact i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffcb05;
    color: #123a59;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-bottom {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.footer-bottom a:hover {
    color: #ffcb05;
}

/* =========================================
   CREDAI PUNE LOGO
========================================= */

.footer-right {
    position: relative;
}

.footer-credai {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 170px;
    z-index: 2;
}

.footer-credai img {
    width: 100%;
    height: auto;
    display: block;
}

@media(max-width:991px) {
    .footer {
        padding: 50px 0;
    }
    .footer-left {
        border-right: 0;
        border-bottom: 2px solid rgba(255, 255, 255, .4);
        padding-right: 0;
        padding-bottom: 35px;
        margin-bottom: 35px;
    }
    .footer-right {
        padding-left: 0;
        text-align: center;
    }
    .footer-menu {
        justify-content: center;
        gap: 20px;
    }
    .footer-contact {
        justify-content: center;
        gap: 25px;
    }
    .footer-bottom {
        justify-content: center;
        gap: 25px;
    }
    .footer-credai {
            position: static;
            transform: none;
            width: 160px;
            margin: 30px auto 0;
    }
}

@media(max-width:576px) {
    .footer-menu {
        flex-direction: column;
        gap: 16px;
    }
    .footer-contact {
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}


/*ABOUT SECTION*/

.about-section {
    background: #fff;
    overflow: hidden;
}

.about-content {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 58%;
    background: #fff;
    padding: 45px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .30);
}

.about-content h2 {
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #222;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 42px;
    border: 2px solid #f2b400;
    border-radius: 40px;
    color: #0d4c7d;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s;
}

.about-btn:hover {
    background: #f2b400;
    color: #fff;
}


/* Banner */

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .12);
    pointer-events: none;
}

/* =========================
   VIDEO SOUND BUTTON
========================= */

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 75px;
    height: 75px;

    border: 2px solid #fff;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.45);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 35px;
    cursor: pointer;

    z-index: 10;

    transition: 0.3s ease;
}

.video-play-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translate(-50%, -50%) scale(1.08);
}

.video-play-btn i {
    margin-left: 4px;
}

/* ----------- */

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border: none;
    border-radius: 50%;
    background: #005b83;
    color: #fff;
    font-size: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    z-index: 20;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.play-btn.hide {
    opacity: 0;
    visibility: hidden;
}

@media(max-width:991px) {
    .hero-banner {
        height: 75vh;
    }
    .play-btn {
        width: 90px;
        height: 90px;
        font-size: 48px;
    }
}

@media(max-width:576px) {
    .hero-banner {
        height: 60vh;
    }
    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 36px;
    }
}


/*ABOUT US*/


/* .section-heading{
    text-align:center;
    margin-bottom:50px;
} */

.section-heading h6 {
    color: #005c8c;
    font-size: 28px;
    letter-spacing: 8px;
    font-weight: 500;
}

.about-wrapper {
    position: relative;
    width: 100%;
    /* Automatically grows with content */
    height: auto;
}


/* Image */

.about-image {
    width: 62%;
}

.about-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
}


/* Floating Card */

.about-card {
    position: relative;
    width: 58%;
    margin-left: auto;
    /*
    Same visual position as:
    top: 240px
    */
    margin-top: -230px;
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .28);
    z-index: 10;
}

.about-card h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-serenity h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-card p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.btn-read {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 34px;
    border: 2px solid #f2b400;
    border-radius: 30px;
    color: #005c8c;
    text-decoration: none;
    transition: .3s;
}

.btn-read:hover {
    background: #f2b400;
    color: #fff;
}


/*=========================================
            PROJECTS SECTION
=========================================*/

.projects-section {
    background: #fff;
    position: relative;
}

.projectSwiper {
    overflow: visible;
    padding: 20px 0 220px;
}

.projectSwiper .swiper-wrapper {
    overflow: visible;
}

.projectSwiper .swiper-slide {
    overflow: visible;
}


/*=========================================
            CARD
=========================================*/

.project-card {
    position: relative;
    overflow: visible;
}

.project-image {
    overflow: hidden;
    border-radius: 8px;
}

.project-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: .5s;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}


/*=========================================
            CONTENT
=========================================*/

.project-content {
    position: absolute;
    left: 50%;
    bottom: -45px;
    transform: translateX(-50%);
    width: 86%;
    background: var(--primary-color);
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    transition: .45s ease;
    overflow: hidden;
    z-index: 5;
}

.project-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.project-content h4 {
    color: #fff;
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 12px;
}

.project-divider {
    width: 55px;
    height: 2px;
    background: #fff;
    margin: 15px auto;
}

.project-location {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.project-location i {
    margin-right: 6px;
}


/*=========================================
            HOVER CONTENT
=========================================*/

.project-hover {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: .45s ease;
    transform: translateY(20px);
}

.project-hover p {
    color: #dcdcdc;
    font-size: 15px;
    line-height: 1.8;
    margin: 20px 0;
}

.project-btn {
    display: inline-block;
    padding: 12px 42px;
    border-radius: 35px;
    background: #f5bf00;
    color: #123a59;
    font-weight: 600;
    transition: .3s;
}

.project-btn:hover {
    background: #fff;
    color: #123a59;
}


/*=========================================
            HOVER
=========================================*/

.project-card:hover .project-content {
    transform: translateX(-50%) translateY(-90px);
}

.project-card:hover .project-hover {
    max-height: 250px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 20px;
}


/*=========================================
            SWIPER
=========================================*/

.projectSwiper .swiper-pagination {
    position: relative;
    margin-top: 90px;
    bottom: auto;
}

.projectSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: .35;
}

.projectSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.projectSwiper .swiper-button-next,
.projectSwiper .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    transition: .3s;
}

.projectSwiper .swiper-button-next:hover,
.projectSwiper .swiper-button-prev:hover {
    background: #f5bf00;
    color: #123a59;
}

.projectSwiper .swiper-button-next:after,
.projectSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

.projectSwiper {
    position: relative;
}

.projectSwiper .swiper-button-prev {
    left: -70px;
}

.projectSwiper .swiper-button-next {
    right: -70px;
}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px) {
    .project-image img {
        height: 430px;
    }
    .project-content {
        width: 90%;
    }
    .project-card:hover .project-content {
        transform: translateX(-50%) translateY(-70px);
    }
}

@media(max-width:767px) {
    .projectSwiper {
        padding-bottom: 70px;
    }
    .project-image img {
        height: 360px;
    }
    .project-content {
        width: 92%;
        padding: 20px;
    }
    .project-content h3 {
        font-size: 24px;
    }
    .project-content h4 {
        font-size: 15px;
    }
    .project-btn {
        width: 100%;
    }
    .project-card:hover .project-content {
        transform: translateX(-50%) translateY(-50px);
    }
}


/*=========================================
                BLOG SECTION
=========================================*/

.blog-section {
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}


/*=========================================
                IMAGE
=========================================*/

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}


/*=========================================
                CONTENT
=========================================*/

.blog-content {
    background: var(--primary-color);
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-date {
    color: #f2b400;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.blog-content h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 25px;
    transition: .3s;
}

.blog-card:hover h3 {
    color: #f2b400;
}


/*=========================================
                READ MORE
=========================================*/

.blog-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f2b400;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .3s;
}

.blog-read-more i {
    transition: .3s;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(8px);
}

.blog-read-more:hover {
    color: #fff;
}


/*=========================================
                BUTTON
=========================================*/

.blog-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 42px;
    border-radius: 40px;
    border: 2px solid #123a59;
    transition: .3s;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-btn:hover {
    background: #f2b400;
    border-color: #f2b400;
    color: #123a59;
}


/*=========================================
                RESPONSIVE
=========================================*/

@media(max-width:991px) {
    .blog-section {
        padding: 80px 0;
    }
    .blog-image img {
        height: 240px;
    }
    .blog-content {
        min-height: 200px;
    }
}

@media(max-width:767px) {
    .blog-section {
        padding: 70px 0;
    }
    .blog-card {
        margin-bottom: 25px;
    }
    .blog-image img {
        height: 220px;
    }
    .blog-content {
        padding: 22px;
        min-height: auto;
    }
    .blog-content h3 {
        font-size: 20px;
    }
    .blog-btn {
        width: 100%;
    }
}


/*=========================================
            PAGE BANNER
=========================================*/

.page-banner {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.page-banner .container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.page-banner-content {
    text-align: center;
}

.page-banner-content h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 400;
    margin-bottom: 12px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.breadcrumb-nav a {
    color: #f2b400;
    transition: .3s;
}

.breadcrumb-nav a:hover {
    color: #fff;
}

.breadcrumb-nav span {
    color: #fff;
}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px) {
    .page-banner {
        height: 300px;
    }
    .page-banner-content h1 {
        font-size: 42px;
    }
}

@media(max-width:767px) {
    .page-banner {
        height: 240px;
    }
    .page-banner-content h1 {
        font-size: 34px;
    }
}


/*=========================================
            CONTACT INFO
=========================================*/

.contact-info-section {
    padding-bottom: 60px;
    padding-top: 160px;
    background: #fff;
}

.contact-info-box {
    text-align: center;
    padding: 20px 40px;
    border-right: 1px solid #e8e8e8;
    transition: .35s;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    transition: .35s;
}

.contact-info-box h4 {
    font-size: 24px;
    color: #123a59;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-box p {
    color: #666;
    line-height: 1.9;
    margin: 0;
    font-size: 16px;
}

.contact-info-box:hover {
    transform: translateY(-8px);
}

.contact-info-box:hover .contact-icon {
    background: #f2b400;
    color: #123a59;
}


/*==============================
        Responsive
==============================*/

@media(max-width:991px) {
    .contact-info-box {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 35px 20px;
    }
    .contact-info-box.border-0 {
        border-bottom: none !important;
    }
}

@media(max-width:767px) {
    .contact-info-section {
        padding: 60px 0;
    }
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    .contact-info-box h4 {
        font-size: 22px;
    }
}


/*=========================================
            CONTACT FORM
=========================================*/

.contact-form-section {
    background: #fff;
}


/*============================
        IMAGE
=============================*/


/* 
.contact-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.contact-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: .5s;
}

.contact-image:hover img {
    transform: scale(1.05);
} */


/*============================
        MAP
=============================*/

.contact-map {
    width: 100%;
    height: 650px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/*============================
        FORM
=============================*/

.contact-form-wrapper {
    padding-left: 25px;
}

.contact-subtitle {
    display: inline-block;
    color: #f2b400;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.contact-form-wrapper h2 {
    font-size: 48px;
    color: #123a59;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-form-wrapper p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}


/*============================
        FORM
=============================*/

.contact-form-wrapper label {
    font-size: 15px;
    font-weight: 600;
    color: #123a59;
    margin-bottom: 8px;
    display: block;
}

.contact-form-wrapper .form-control {
    height: 56px;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 0 18px;
    box-shadow: none;
    transition: .3s;
}

.contact-form-wrapper textarea.form-control {
    height: 180px;
    resize: none;
    padding-top: 15px;
}

.contact-form-wrapper .form-control:focus {
    border-color: #123a59;
    box-shadow: 0 0 0 .15rem rgba(18, 58, 89, .15);
}


/*============================
        BUTTON
=============================*/

.contact-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 50px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #f2b400;
    color: #123a59;
}


/*============================
        RESPONSIVE
=============================*/

@media(max-width:991px) {
    .contact-form-section {
        padding: 80px 0;
    }
    .contact-image {
        margin-bottom: 20px;
    }
    .contact-image img {
        height: 500px;
    }
    .contact-form-wrapper {
        padding-left: 0;
    }
    .contact-form-wrapper h2 {
        font-size: 38px;
    }
}

@media(max-width:767px) {
    .contact-image img {
        height: 350px;
    }
    .contact-form-wrapper h2 {
        font-size: 30px;
    }
    .contact-btn {
        width: 100%;
    }
}


/*=========================================
                BUTTONS
=========================================*/

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-yellow {
    background: var(--secondary-color);
    color: var(--primary-color);
    color: var(--white);
}

.btn-yellow:hover {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    color: var(--primary-color);
}

.navbar .nav-link.active,
.navbar .nav-link.active:focus,
.navbar .nav-link.active:hover,
.navbar .dropdown-toggle.active {
    color: var(--secondary-color) !important;
}

.navbar .nav-link.active,
.navbar .dropdown-toggle.active {
    color: var(--white) !important;
}


/* =========================================
   OUR VENTURES
========================================= */

.ventures-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 25px;
    background: #f7f6f3;
}


/* =========================================
   SECTION HEADING
========================================= */

.venture-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.venture-heading h6 {
    margin-bottom: 0;
}


/* =========================================
   BACKGROUND TEXTURE
========================================= */

.venture-pattern {
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
    height: 145px;
    background-image: url("../assets/images/homepage/pattern.png");
    background-repeat: repeat;
    background-position: center;
    background-size: auto 300px;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}


/* =========================================
   SWIPER
========================================= */

.venturesSwiper {
    position: relative;
    overflow: visible;
    z-index: 2;
}

.venturesSwiper .swiper-wrapper {
    align-items: center;
}

.venturesSwiper .swiper-slide {
    overflow: visible;
}


/* =========================================
   VENTURE LAYOUT
========================================= */

.venture-item {
    display: grid;
    grid-template-columns: 55% 1fr;
    align-items: center;
    column-gap: 35px;
    min-height: 425px;
    padding: 0 45px;
}


/* =========================================
   IMAGE
========================================= */

.venture-image {
    width: 100%;
    height: 425px;
    overflow: hidden;
}

.venture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.venture-item:hover .venture-image img {
    transform: scale(1.02);
}


/* =========================================
   CONTENT
========================================= */

.venture-content {
    max-width: 390px;
    padding: 15px 15px 15px 0;
}


/* TITLE - MATCHING EXISTING TYPOGRAPHY */

.venture-content h2 {
    margin: 0 0 25px;
    font-family: "Barlow", sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--heading-color);
}


/* DESCRIPTION */

.venture-content p {
    margin: 0 0 35px;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    max-width: 350px;
}


/* =========================================
   READ MORE BUTTON
========================================= */

.venture-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    padding: 9px 28px;
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: none;
}


/* =========================================
   SWIPER NAVIGATION
========================================= */

.venturesSwiper .swiper-button-prev,
.venturesSwiper .swiper-button-next {
    width: 45px;
    height: 55px;
    top: 50%;
    margin-top: 5px;
    background: transparent;
    border: 0;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    z-index: 10;
}


/* REMOVE DEFAULT SWIPER ICON */

.venturesSwiper .swiper-button-prev::after,
.venturesSwiper .swiper-button-next::after {
    display: none;
}


/* LEFT ARROW */

.venture-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 25px;
    height: 25px;
    border-top: 2px solid var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    transform: translateY(-50%) rotate(-45deg);
}


/* RIGHT ARROW */

.venture-next::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 25px;
    height: 25px;
    border-top: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
    transform: translateY(-50%) rotate(45deg);
}


/* ARROW POSITIONS */

.venturesSwiper .swiper-button-prev {
    left: -10px;
}

.venturesSwiper .swiper-button-next {
    right: -10px;
}

.venturesSwiper .swiper-button-prev:hover,
.venturesSwiper .swiper-button-next:hover {
    transform: scale(1.08);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .ventures-section {
        padding: 70px 0;
    }
    .venture-pattern {
        bottom: 0;
        height: 180px;
        background-size: auto 180px;
    }
    .venture-item {
        grid-template-columns: 1fr;
        row-gap: 35px;
        padding: 0 55px;
        min-height: auto;
    }
    .venture-image {
        height: 480px;
    }
    .venture-content {
        max-width: 100%;
        padding: 0 0 25px;
    }
    .venture-content p {
        max-width: 100%;
    }
    .venturesSwiper .swiper-button-prev {
        left: 0;
    }
    .venturesSwiper .swiper-button-next {
        right: 0;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .ventures-section {
        padding: 55px 0;
    }
    .venture-heading {
        margin-bottom: 30px;
    }
    .venture-item {
        padding: 0;
        row-gap: 25px;
    }
    .venture-image {
        height: 320px;
    }
    .venture-content {
        padding: 0 20px 25px;
    }
    .venture-content h2 {
        font-size: 36px;
        margin-bottom: 18px;
    }
    .venture-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 28px;
    }
    .venture-pattern {
        bottom: 0;
        height: 130px;
        background-size: auto 130px;
    }
    .venturesSwiper .swiper-button-prev,
    .venturesSwiper .swiper-button-next {
        display: none;
    }
}


/*=========================================
            LEADERSHIP
=========================================*/

.leadership-section {
    background: #fff;
    padding: 100px 0;
}

.leadership-item {
    margin-bottom: 70px;
}

.leadership-item:last-child {
    margin-bottom: 0;
}


/* Content */

.leader-content {
    background: #f6f6f67d;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.leader-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.leader-content p {
    line-height: 1.9;
    color: #666;
}


/* Image */

.leader-image {
    height: 100%;
}

.leader-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
}


/*=========================================
            RESPONSIVE
=========================================*/

@media (max-width:991px) {
    .leadership-section {
        padding: 70px 0;
    }
    .leadership-item {
        margin-bottom: 50px;
    }
    /* Alternate rows become normal on tablet/mobile */
    .leadership-item.flex-lg-row-reverse {
        flex-direction: column-reverse;
    }
    .leader-content {
        padding: 40px 35px;
    }
    .leader-content h2 {
        font-size: 34px;
    }
    .leader-image img {
        min-height: 420px;
    }
}

@media (max-width:767px) {
    .leadership-section {
        padding: 60px 0;
    }
    .leadership-item {
        margin-bottom: 35px;
    }
    .leader-content {
        padding: 30px 25px;
    }
    .contact-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .leader-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .leader-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    .leader-image img {
        min-height: 300px;
    }
}

@media (max-width:575px) {
    .leader-content {
        padding: 25px 20px;
    }
    .leader-content h2 {
        font-size: 24px;
    }
    .leader-image img {
        min-height: 260px;
    }
}

.leadership-item {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.leadership-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #123a5931;
}


/*=========================================
            WHY CHOOSE
==========================================*/

.why-choose-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(255, 255, 255, .03) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-section .section-heading h6 {
    color: var(--secondary-color);
}

.why-header {
    max-width: 750px;
    margin: 0 auto 60px;
}

.why-header h2 {
    font-size: 44px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.why-header p {
    color: rgba(255, 255, 255, .80);
    line-height: 1.9;
    margin: 0;
}


/* Cards */

.why-card {
    background: #fff;
    border-top: 3px solid var(--secondary-color);
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .30);
}

.why-card i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: .35s;
}

.why-card:hover i {
    color: var(--secondary-color);
}

.why-card h5 {
    font-size: 20px;
    color: var(--primary-color);
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
}


/*=========================================
            Responsive
==========================================*/

@media(max-width:991px) {
    .why-choose-section {
        padding: 80px 0;
    }
    .why-header {
        margin-bottom: 45px;
    }
    .why-header h2 {
        font-size: 36px;
    }
}

@media(max-width:767px) {
    .why-choose-section {
        padding: 60px 0;
    }
    .why-header h2 {
        font-size: 30px;
    }
    .why-card {
        padding: 30px 20px;
    }
    .why-card i {
        font-size: 36px;
    }
    .why-card h5 {
        font-size: 18px;
    }
}


/*=========================================
            OUR FOUNDATION
==========================================*/

.foundation-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.foundation-overlay {
    display: none;
}

.foundation-section .container {
    position: relative;
    z-index: 2;
}


/*=========================================
            Heading
==========================================*/

.foundation-section .section-heading {
    margin-bottom: 20px;
}

.foundation-header {
    max-width: 760px;
    margin: 0 auto 70px;
}

.foundation-header h2 {
    font-size: 46px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.foundation-header p {
    color: #666;
    line-height: 1.9;
    margin: 0;
}


/*=========================================
            Layout
==========================================*/

.foundation-wrapper {
    position: relative;
    align-items: stretch;
}

.foundation-wrapper::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #e8e8e8;
}


/*=========================================
            Left Side
==========================================*/

.foundation-left {
    padding-right: 60px;
}

.foundation-block h3 {
    font-size: 34px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.foundation-block p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 0;
}

.foundation-divider {
    width: 100%;
    height: 1px;
    background: #e6e6e6;
    margin: 45px 0;
}


/*=========================================
            Right Side
==========================================*/

.foundation-right {
    padding-left: 60px;
}


/*=========================================
            Values
==========================================*/

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    transition: .35s;
}

.value-item i {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(18, 58, 89, .08);
    color: var(--primary-color);
    font-size: 20px;
    transition: .35s;
}

.value-item h5 {
    color: var(--primary-color);
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.foundation-right .col-md-6 {
    border-bottom: 1px solid #ececec;
}

.foundation-right .col-md-6:nth-last-child(-n+2) {
    border-bottom: none;
}


/* Hover */

.value-item:hover {
    transform: translateX(8px);
}

.value-item:hover i {
    background: var(--secondary-color);
    color: #fff;
}

.value-item:hover h5 {
    color: var(--secondary-color);
}


/*=========================================
            Tablet
==========================================*/

@media(max-width:991px) {
    .foundation-section {
        padding: 80px 0;
    }
    .foundation-header {
        margin-bottom: 50px;
    }
    .foundation-header h2 {
        font-size: 36px;
    }
    .foundation-wrapper::after {
        display: none;
    }
    .foundation-left {
        padding-right: 0;
    }
    .foundation-right {
        padding-left: 0;
        margin-top: 60px;
        padding-top: 50px;
        border-top: 1px solid #e8e8e8;
    }
    .foundation-block h3 {
        font-size: 30px;
    }
}


/*=========================================
            Mobile
==========================================*/

@media(max-width:767px) {
    .foundation-section {
        padding: 60px 0;
    }
    .foundation-header {
        margin-bottom: 40px;
    }
    .foundation-header h2 {
        font-size: 30px;
    }
    .foundation-block h3 {
        font-size: 26px;
    }
    .foundation-divider {
        margin: 35px 0;
    }
    .foundation-right {
        margin-top: 40px;
        padding-top: 35px;
    }
    .foundation-right .col-md-6 {
        border-bottom: 1px solid #ececec;
    }
    .foundation-right .col-md-6:last-child {
        border-bottom: none;
    }
    .value-item {
        gap: 15px;
    }
    .value-item i {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
    .value-item h5 {
        font-size: 19px;
    }
    .value-item p {
        font-size: 14px;
    }
}


/*=========================================
            Small Mobile
==========================================*/

@media(max-width:575px) {
    .foundation-header h2 {
        font-size: 26px;
    }
    .foundation-header p {
        font-size: 15px;
    }
    .foundation-block h3 {
        font-size: 24px;
    }
    .foundation-left,
    .foundation-right {
        padding-left: 0;
        padding-right: 0;
    }
    .value-item {
        padding: 15px 0;
    }
    .value-item i {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    .value-item h5 {
        font-size: 18px;
    }
}


/*=========================================
        VENTURES PAGE
=========================================*/


/*=========================================
        BUILDING BEYOND REAL ESTATE
=========================================*/

.ventures-intro {
    background: var(--white);
    padding: 90px 0 100px;
}

.ventures-intro-content {
    max-width: 900px;
}

.ventures-intro-content .section-heading {
    margin-bottom: 20px;
}

.ventures-intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.ventures-intro-content p {
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 18px;
}

.ventures-intro-content strong {
    color: var(--primary-color);
}


/*=========================================
        COMMON VENTURE SECTION
=========================================*/

.venture-detail {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}


/*=========================================
        IMAGE
=========================================*/

.venture-image-frame {
    position: relative;
}

.venture-image-frame::before {
    content: "";
    position: absolute;
    top: 25px;
    left: -20px;
    width: 70px;
    height: 100%;
    border: 2px solid var(--secondary-color);
    z-index: 0;
}

.venture-image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}


/*=========================================
        VENTURE LABEL
=========================================*/

.venture-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.venture-label i {
    font-size: 22px;
}

.venture-label span {
    font-weight: 600;
    letter-spacing: 2px;
}


/*=========================================
        VENTURE CONTENT
=========================================*/

.venture-detail h2 {
    margin-bottom: 25px;
}

.venture-detail p {
    line-height: 1.85;
    margin-bottom: 18px;
}

.venture-subheading {
    margin-top: 30px;
}


/*=========================================
        WHAT WE FOCUS ON
=========================================*/

.venture-focus h5 {
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.venture-focus-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.venture-focus-item span {
    color: var(--secondary-color);
    font-weight: 600;
    flex-shrink: 0;
}

.venture-focus-item p {
    margin: 2px 0 0;
    line-height: 1.5;
}


/*=========================================
        SOLAR
=========================================*/

.venture-solar {
    background: var(--primary-color);
}

.venture-solar .venture-label {
    color: var(--secondary-color);
}

.venture-solar h2 {
    color: var(--white);
}

.venture-solar>p {
    color: rgba(255, 255, 255, .8);
}

.venture-solar .col-lg-6>p {
    color: rgba(255, 255, 255, .8);
}

.venture-solar .venture-focus h5 {
    color: var(--secondary-color);
}

.venture-solar .venture-focus-item {
    border-color: rgba(255, 255, 255, .2);
}

.venture-solar .venture-focus-item p {
    color: rgba(255, 255, 255, .8);
}


/*=========================================
        FARMING
=========================================*/

.venture-farming {
    background: var(--white);
}

.venture-farming .venture-label {
    color: var(--secondary-color);
}

.venture-farming h2 {
    color: var(--primary-color);
}

.venture-farming p {
    color: var(--text-color);
}

.venture-farming .venture-focus h5 {
    color: var(--secondary-color);
}

.venture-farming .venture-focus-item {
    border-color: #ddd;
}

.venture-farming .venture-focus-item span {
    color: var(--primary-color);
}

.venture-farming .venture-focus-item p {
    color: var(--text-color);
}


/* Move image frame accent to right */

.venture-farming .venture-image-frame::before {
    left: auto;
    right: -20px;
}


/*=========================================
        VALUES
=========================================*/

.venture-values {
    background: #f7f7f7;
    padding: 60px 0;
}

.venture-value-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-right: 35px;
    border-right: 1px solid #ddd;
    height: 100%;
}

.venture-value-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.venture-value-item h5 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.venture-value-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}


/*=========================================
        CTA
=========================================*/

.ventures-cta {
    background: var(--white);
    padding: 90px 0;
}

.ventures-cta-content {
    max-width: 800px;
}

.ventures-cta-content .section-heading {
    margin-bottom: 20px;
}

.ventures-cta-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
}


/*=========================================
        TABLET
=========================================*/

@media(max-width:991px) {
    .ventures-intro {
        padding: 70px 0;
    }
    .venture-detail {
        padding: 70px 0;
    }
    .venture-value-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 0 0 25px;
    }
    .venture-values .col-md-4:last-child .venture-value-item {
        border-bottom: none;
        padding-bottom: 0;
    }
}


/*=========================================
        MOBILE
=========================================*/

@media(max-width:767px) {
    .ventures-intro {
        padding: 60px 0;
    }
    .venture-detail {
        padding: 60px 0;
    }
    .venture-image-frame img {
        height: 320px;
    }
    .venture-secondary-content {
        padding-left: 0;
    }
    .venture-values {
        padding: 50px 0;
    }
    .ventures-cta {
        padding: 70px 0;
    }
    .ventures-cta .btn-custom {
        width: 100%;
    }
}

css
/* =========================================
            BLOG DETAILS PAGE
========================================= */

.blog-details-section {
    background: #fff;
}

.blog-details-image {
    overflow: hidden;
    border-radius: 8px;
}

.blog-details-image img {
    height: 500px;
    object-fit: cover;
}

.blog-details-title {
    color: var(--primary-color);
    font-size: 42px;
    line-height: 1.25;
    font-weight: 600;
}

.blog-details-content {
    font-size: 17px;
    line-height: 1.9;
}

.blog-details-content p {
    margin-bottom: 22px;
}

.blog-details-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin: 35px 0 15px;
}


/* =========================================
            LATEST BLOGS
========================================= */

.latest-blogs-sidebar {
    top: 30px;
    padding: 35px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .10);
}

.latest-blogs-title {
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 10px;
}

.latest-blogs-line {
    width: 70px;
    height: 3px;
    background: var(--secondary-color);
}

.latest-blog-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e9e9e9;
    color: inherit;
    transition: .3s;
}

.latest-blog-item:hover {
    transform: translateX(5px);
}

.latest-blog-item img {
    width: 95px;
    height: 75px;
    object-fit: cover;
    flex-shrink: 0;
}

.latest-blog-item span {
    display: block;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.latest-blog-item h5 {
    color: var(--primary-color);
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    transition: .3s;
}

.latest-blog-item:hover h5 {
    color: var(--secondary-color);
}


/* =========================================
            RESPONSIVE
========================================= */

@media(max-width:991px) {
    .blog-details-image img {
        height: 420px;
    }
    .latest-blogs-sidebar {
        position: static !important;
        margin-top: 20px;
    }
}

@media(max-width:767px) {
    .blog-details-section {
        padding: 60px 0 !important;
    }
    .blog-details-image img {
        height: 280px;
    }
    .blog-details-title {
        font-size: 30px;
    }
    .blog-details-content {
        font-size: 16px;
    }
    .blog-details-content h2 {
        font-size: 23px;
    }
    .latest-blogs-sidebar {
        padding: 25px 20px;
    }
    .latest-blogs-title {
        font-size: 26px;
    }
}


/* =========================================
   PROJECT DETAILS PAGE
========================================= */


/* =========================================
   PROJECT HERO
========================================= */

.project-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.project-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 55, 92, 0.92) 0%, rgba(0, 55, 92, 0.78) 35%, rgba(0, 55, 92, 0.30) 70%, rgba(0, 0, 0, 0.05) 100%);
}

.project-hero .container {
    position: relative;
    z-index: 2;
}

.project-hero-content {
    color: #ffffff;
    padding-top: 100px;
}

.project-hero .section-heading h6 {
    color: #d5aa37;
    margin-bottom: 20px;
}

.project-hero-content h1 {
    font-family: "Barlow", sans-serif;
    font-size: clamp(55px, 7vw, 100px);
    font-weight: 700;
    line-height: 0.85;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -2px;
}

.project-hero-content h1 span {
    color: #ffffff;
    font-weight: 400;
}

.project-phase {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 8px;
    color: #d5aa37;
    margin-bottom: 30px;
}

.project-hero-description {
    max-width: 560px;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.project-hero-info {
    max-width: 560px;
    margin-bottom: 35px;
}

.project-hero-info>div {
    border-left: 1px solid rgba(255, 255, 255, 0.45);
    padding-left: 18px;
}

.project-hero-info span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #d5aa37;
    margin-bottom: 8px;
}

.project-hero-info strong {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.project-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


/* Scroll indicator */

.project-scroll {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    z-index: 3;
}

.project-scroll span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.project-scroll i {
    color: #d5aa37;
    font-size: 15px;
    animation: projectScroll 2s infinite;
}

@keyframes projectScroll {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
    }
}


/* =========================================
   PROJECT ABOUT
========================================= */

.project-about {
    background: #ffffff;
}


/* .project-about-content {
    max-width: 600px;
} */


/* .project-about .section-heading h6 {
    color: #d5aa37;

    margin-bottom: 18px;
} */

.project-about-content h2 {
    color: #24496d;
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 22px;
}

.project-title-line {
    width: 55px;
    height: 2px;
    background: #d5aa37;
    margin: 25px 0 35px;
}

.project-about-content p {
    color: #5f6873;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
}


/* Project details */

.project-key-details {
    margin-top: 35px;
    margin-bottom: 35px;
}

.project-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.project-detail-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(213, 170, 55, 0.5);
    color: #d5aa37;
    font-size: 19px;
    flex-shrink: 0;
}

.project-detail-item h5 {
    color: #24496d;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 3px;
}

.project-detail-item span {
    color: #737b84;
    font-size: 14px;
}

.project-about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* About Image */

.project-about-image {
    position: relative;
    padding-bottom: 55px;
    padding-right: 40px;
}

.project-about-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.project-image-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 210px;
    height: 130px;
    background: #d5aa37;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.project-image-accent span {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}


/* =========================================
   NEW AMENITIES SHOWCASE
========================================= */

.pd-amenities-showcase {
    position: relative;
    padding: 100px 0 80px;
    background: #f7f6f3;
    overflow: hidden;
}


/* =========================================
   HEADING SPACING ONLY
========================================= */

.pd-amenities-heading {
    margin-bottom: 45px;
}


/* =========================================
   SLIDER WRAPPER
========================================= */

.pd-amenities-slider-wrap {
    position: relative;
    width: 100%;
    height: 620px;
    border-radius: 32px;
    overflow: hidden;
}


/* =========================================
   SWIPER
========================================= */

.pd-amenities-swiper {
    width: 100%;
    height: 100%;
}

.pd-amenities-swiper .swiper-wrapper {
    height: 100%;
}

.pd-amenities-swiper .swiper-slide {
    height: 100%;
}


/* =========================================
   SLIDE
========================================= */

.pd-amenity-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* IMAGE */

.pd-amenity-slide>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1.2s ease;
}

.pd-amenities-swiper .swiper-slide-active .pd-amenity-slide>img {
    transform: scale(1.04);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.pd-amenity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(19, 49, 76, 0.90) 0%, rgba(19, 49, 76, 0.78) 35%, rgba(19, 49, 76, 0.35) 62%, rgba(19, 49, 76, 0.08) 100%);
    z-index: 1;
}


/* =========================================
   CONTENT POSITIONING ONLY
========================================= */

.pd-amenity-content {
    position: absolute;
    left: 8%;
    top: 50%;
    width: 52%;
    transform: translateY(-50%);
    z-index: 5;
}


/* =========================================
   ONLY COLOR FOR TEXT ON DARK IMAGE
   TYPOGRAPHY COMES FROM EXISTING CLASSES
========================================= */

.pd-amenity-content h2 {
    color: #ffffff;
}

.pd-amenity-content p {
    color: rgba(255, 255, 255, 0.88);
}

.pd-amenity-content .section-heading h6 {
    color: #d5aa37;
}


/* Existing line – only spacing adjustment */

.pd-amenity-content .project-title-line {
    margin-top: 25px;
    margin-bottom: 30px;
}


/* =========================================
   NAVIGATION
========================================= */

.pd-amenities-prev,
.pd-amenities-next {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(19, 49, 76, 0.45);
    color: #ffffff;
    cursor: pointer;
    z-index: 20;
    transition: 0.3s ease;
}

.pd-amenities-prev {
    left: 30px;
}

.pd-amenities-next {
    right: 30px;
}

.pd-amenities-prev:hover,
.pd-amenities-next:hover {
    background: #d5aa37;
    border-color: #d5aa37;
}


/* =========================================
   PAGINATION
========================================= */

.pd-amenities-pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.pd-amenities-pagination {
    position: relative !important;
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pd-amenities-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: #a7a29a;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.pd-amenities-pagination .swiper-pagination-bullet-active {
    width: 42px;
    border-radius: 20px;
    background: #d5aa37;
    opacity: 1;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .pd-amenities-showcase {
        padding: 80px 0 65px;
    }
    .pd-amenities-slider-wrap {
        height: 560px;
        border-radius: 26px;
    }
    .pd-amenity-content {
        width: 62%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .pd-amenities-showcase {
        padding: 65px 0 55px;
    }
    .pd-amenities-heading {
        margin-bottom: 30px;
    }
    .pd-amenities-slider-wrap {
        height: 620px;
        border-radius: 22px;
    }
    .pd-amenity-overlay {
        background: linear-gradient( 180deg, rgba(19, 49, 76, 0.10) 0%, rgba(19, 49, 76, 0.94) 100%);
    }
    .pd-amenity-content {
        left: 8%;
        right: 8%;
        bottom: 90px;
        top: auto;
        width: auto;
        transform: none;
    }
    .pd-amenity-content .project-title-line {
        margin-top: 20px;
        margin-bottom: 25px;
    }
    .pd-amenities-prev,
    .pd-amenities-next {
        top: auto;
        bottom: 22px;
        width: 46px;
        height: 46px;
        transform: none;
    }
    .pd-amenities-prev {
        left: auto;
        right: 78px;
    }
    .pd-amenities-next {
        right: 20px;
    }
    .pd-amenities-pagination-wrap {
        margin-top: 20px;
    }
}


/* =========================================
   FLOOR PLAN SECTION
========================================= */

.floor-plan-section {
    padding: 110px 0;
    background: #f7f6f3;
}


/* =========================================
   SECTION HEADING
========================================= */

.floor-plan-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}


/* SMALL LABEL */

.floor-plan-heading .section-label {
    display: block;
    margin-bottom: 16px;
    font-family: "Barlow", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #d5aa37;
}


/* MAIN HEADING */

.floor-plan-heading h2 {
    margin: 0 0 18px;
    font-family: "Barlow", sans-serif;
    font-size: clamp(42px, 4.5vw, 68px);
    font-weight: 600;
    line-height: 1.08;
    color: #24496d;
}


/* DESCRIPTION */

.floor-plan-heading p {
    max-width: 620px;
    margin: 0 auto;
    font-family: "Barlow", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #6d747c;
}


/* GOLD LINE */

.floor-plan-line {
    width: 55px;
    height: 2px;
    margin: 25px auto 0;
    background: #d5aa37;
}


/* =========================================
   NAV TAB BUTTONS
========================================= */

.floor-plan-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    border: none;
}


/* REMOVE DEFAULT BOOTSTRAP SPACING */

.floor-plan-tabs .nav-item {
    margin: 0;
}


/* TAB BUTTON */

.floor-plan-tabs .nav-link {
    min-width: 150px;
    padding: 14px 30px;
    border: 1px solid rgba(36, 73, 109, 0.25) !important;
    border-radius: 0 !important;
    background: transparent !important;
    font-family: "Barlow", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #24496d !important;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}


/* HOVER */

.floor-plan-tabs .nav-link:hover {
    background: #24496d !important;
    border-color: #24496d !important;
    color: #ffffff !important;
}


/* ACTIVE TAB */

.floor-plan-tabs .nav-link.active {
    background: #24496d !important;
    border-color: #24496d !important;
    color: #ffffff !important;
}


/* =========================================
   TAB CONTENT
========================================= */

.floor-plan-tab-content {
    width: 100%;
}


/* =========================================
   FLOOR PLAN IMAGE CONTAINER
========================================= */

.single-floor-plan {
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: #ffffff;
    border: 1px solid rgba(36, 73, 109, 0.12);
    overflow: hidden;
}


/* FLOOR PLAN IMAGE */

.single-floor-plan img {
    display: block;
    max-width: 100%;
    max-height: 560px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.single-floor-plan:hover img {
    transform: scale(1.01);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .floor-plan-section {
        padding: 85px 0;
    }
    .single-floor-plan {
        min-height: 520px;
        padding: 40px;
    }
    .single-floor-plan img {
        max-height: 440px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .floor-plan-section {
        padding: 65px 0;
    }
    /* HEADING */
    .floor-plan-heading {
        margin-bottom: 35px;
    }
    .floor-plan-heading h2 {
        font-size: 42px;
    }
    .floor-plan-heading p {
        font-size: 15px;
        line-height: 1.7;
    }
    /* TABS */
    .floor-plan-tabs {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 5px;
        margin-bottom: 30px;
    }
    .floor-plan-tabs .nav-item {
        flex-shrink: 0;
    }
    .floor-plan-tabs .nav-link {
        min-width: 105px;
        padding: 12px 18px;
        font-size: 13px;
    }
    /* FLOOR PLAN */
    .single-floor-plan {
        min-height: 350px;
        padding: 20px;
    }
    .single-floor-plan img {
        max-width: 100%;
        max-height: 300px;
    }
}


/* =========================================
   FLOOR PLAN BANNER
========================================= */

.floor-plan-banner {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #24496d;
    color: #ffffff;
}


/* CONTENT ABOVE SHAPES */

.floor-plan-banner .container {
    position: relative;
    z-index: 2;
}


/* LABEL */

.floor-plan-banner .section-label {
    display: block;
    margin-bottom: 20px;
    color: #d5aa37;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
}


/* HEADING */

.floor-plan-banner h2 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.15;
}

.floor-plan-banner h2 span {
    display: block;
    color: #d5aa37;
}


/* DESCRIPTION */

.floor-plan-banner p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.7;
}


/* BUTTON */

.floor-plan-banner-actions {
    margin-top: 32px;
}

.floor-plan-banner .btn {
    min-width: 180px;
    padding: 14px 25px;
    border: 1px solid #d5aa37;
    border-radius: 0;
    color: #d5aa37;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.floor-plan-banner .btn:hover {
    background: #d5aa37;
    border-color: #d5aa37;
    color: #24496d;
}


/* =========================================
   DECORATIVE CIRCLES
========================================= */

.floor-plan-shape {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(213, 170, 55, 0.12);
    border-radius: 50%;
    pointer-events: none;
}


/* LEFT BOTTOM CIRCLE */

.floor-plan-shape-left {
    left: -145px;
    bottom: -285px;
}


/* RIGHT TOP CIRCLE */

.floor-plan-shape-right {
    right: -130px;
    top: -280px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {
    .floor-plan-banner {
        padding: 75px 0;
    }
    .floor-plan-banner h2 {
        font-size: 40px;
    }
    .floor-plan-banner p {
        font-size: 15px;
    }
    .floor-plan-shape {
        width: 350px !;
        height: 350px;
    }
}

.text-yellow {
    color: var(--secondary-color) !important;
}


/* =========================================
   SPECIFICATIONS SECTION
========================================= */

.specifications-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #294e73;
}


/* LEFT SIDE */

.specifications-intro {
    position: sticky;
    top: 120px;
}

.specifications-intro .section-label {
    display: inline-block;
    margin-bottom: 22px;
    color: #d6ac4b;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.specifications-intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.05;
}

.specifications-intro h2 span {
    display: block;
}

.specifications-intro p {
    max-width: 390px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.specifications-intro .section-line {
    width: 50px;
    height: 1px;
    margin-top: 28px;
    background: #d6ac4b;
}


/* SPECIFICATION COUNT */

.specification-count {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 85px;
}

.count-number {
    color: #d6ac4b;
    font-size: 60px;
    line-height: 1;
}

.count-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2px;
}


/* =========================================
   ACCORDION
========================================= */

.specification-accordion {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.specification-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.specification-accordion .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 28px 55px 28px 0;
    color: #ffffff;
    background: transparent;
    box-shadow: none;
    font-size: 27px;
}

.specification-accordion .accordion-button:focus {
    box-shadow: none;
}


/* ACCORDION NUMBER */

.accordion-number {
    min-width: 22px;
    color: #d6ac4b;
    font-size: 10px;
    font-weight: 600;
}


/* ACCORDION TITLE */

.accordion-title {
    color: #ffffff;
}


/* DEFAULT BOOTSTRAP ARROW REMOVE */

.specification-accordion .accordion-button::after {
    position: absolute;
    right: 0;
    width: 36px;
    height: 36px;
    margin-left: 0;
    background-image: none;
    border: 1px solid rgba(214, 172, 75, 0.65);
    border-radius: 50%;
}


/* PLUS */

.specification-accordion .accordion-button::before {
    content: "+";
    position: absolute;
    right: 13px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: #d6ac4b;
    font-size: 22px;
    font-weight: 300;
}


/* MINUS WHEN OPEN */

.specification-accordion .accordion-button:not(.collapsed)::before {
    content: "−";
}


/* OPEN ACCORDION */

.specification-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background: transparent;
}


/* ACCORDION BODY */

.specification-accordion .accordion-body {
    padding: 0 60px 30px 57px;
    color: rgba(255, 255, 255, 0.68);
}

.specification-accordion .accordion-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.specification-accordion .accordion-body li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 18px;
    line-height: 1.7;
}

.specification-accordion .accordion-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    background: #d6ac4b;
    border-radius: 50%;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .specifications-section {
        padding: 80px 0;
    }
    .specifications-intro {
        position: relative;
        top: auto;
    }
    .specification-count {
        margin-top: 50px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .specifications-section {
        padding: 65px 0;
    }
    .specifications-intro h2 {
        font-size: 42px;
    }
    .specification-accordion .accordion-button {
        gap: 18px;
        padding: 22px 50px 22px 0;
        font-size: 21px;
    }
    .specification-accordion .accordion-body {
        padding: 0 15px 25px 40px;
    }
    .count-number {
        font-size: 50px;
    }
}


/* =========================================
   CONTACT / ENQUIRY SECTION
========================================= */

.contact-section {
    padding: 100px 0;
    background: #f7f6f3;
}

.contact-wrapper {
    width: 100%;
}


/* =========================================
   LEFT SIDE
========================================= */

.contact-info {
    height: 100%;
    padding: 80px 65px;
    background: #2f5277;
    display: flex;
    flex-direction: column;
}


/* SMALL LABEL */


/* MAIN HEADINGS */

.contact-info h2 {
    margin: 0;
    color: #ffffff;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -1.5px;
}


/* GOLD LINE */

.contact-line {
    width: 58px;
    height: 2px;
    margin: 32px 0;
    background: #caa044;
}


/* DESCRIPTION */

.contact-description {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    margin-top: 65px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #caa044;
    border-radius: 50%;
    color: #caa044;
    font-size: 20px;
}

.contact-item-content {
    flex: 1;
}

.contact-item-content span {
    display: block;
    margin-bottom: 6px;
    color: #caa044;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.contact-item-content p,
.contact-item-content a {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
}

.contact-item-content a:hover {
    color: #caa044;
}


/* =========================================
   RIGHT SIDE
========================================= */

.enquiry-form-box {
    height: 100%;
    padding: 80px 70px;
    background: #ffffff;
}

.enquiry-form-box h2 {
    margin: 0 0 42px;
    color: #2f5277;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1.2px;
}


/* =========================================
   FORM
========================================= */

.enquiry-form {
    width: 100%;
}

.enquiry-form label {
    display: block;
    margin-bottom: 10px;
    color: #2f5277;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.7px;
}


/* INPUT */

.enquiry-form .form-control,
.enquiry-form .form-select {
    height: 58px;
    padding: 0 18px;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    background-color: #fff;
    color: #2f5277;
    font-family: inherit;
    font-size: 15px;
    box-shadow: none;
}

.enquiry-form textarea.form-control {
    height: 135px;
    padding-top: 17px;
    resize: none;
}


/* PLACEHOLDER */

.enquiry-form .form-control::placeholder {
    color: #9a9a9a;
}


/* FOCUS */

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
    border-color: #caa044;
    box-shadow: none;
}


/* =========================================
   BUTTON
========================================= */

.contact-submit {
    padding: 16px 30px;
    min-width: 210px;
    border: 1px solid #2f5277;
    background: #2f5277;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: #caa044;
    border-color: #caa044;
    color: #ffffff;
}

.contact-submit i {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.contact-submit:hover i {
    transform: translateX(5px);
}


/* =========================================
   LARGE LAPTOP
========================================= */

@media (max-width: 1399px) {
    .contact-info {
        padding: 70px 55px;
    }
    .enquiry-form-box {
        padding: 70px 55px;
    }
    .contact-info h2 {
        font-size: 50px;
    }
    .enquiry-form-box h2 {
        font-size: 46px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }
    .contact-info,
    .enquiry-form-box {
        padding: 60px 45px;
    }
    .contact-info h2,
    .enquiry-form-box h2 {
        font-size: 46px;
    }
    .contact-details {
        margin-top: 50px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-info,
    .enquiry-form-box {
        padding: 50px 25px;
    }
    .contact-info .section-heading h6,
    .enquiry-form-box .section-heading h6 {
        font-size: 12px;
        letter-spacing: 4px;
    }
    .contact-info h2,
    .enquiry-form-box h2 {
        font-size: 38px;
    }
    .contact-description {
        font-size: 16px;
    }
    .contact-details {
        gap: 25px;
    }
    .contact-item-content p,
    .contact-item-content a {
        font-size: 14px;
    }
    .contact-submit {
        width: 100%;
    }
}


/* =========================================
   FULL WIDTH PROJECT MAP
========================================= */

.project-map-section {
    width: 100%;
    padding: 0;
    background: #f7f6f3;
}

.project-map-wrapper {
    width: 100%;
    height: 650px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(36, 73, 109, 0.08);
    border-bottom: 1px solid rgba(36, 73, 109, 0.08);
}


/* Muted premium look */

.project-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.65) saturate(0.6) contrast(1.05);
}


/* Tablet */

@media (max-width: 991px) {
    .project-map-wrapper {
        height: 550px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .project-map-wrapper {
        height: 420px;
    }
}


/* =========================================
   CAREER INTRO + OPENINGS
========================================= */

.career-combined-section {
    padding: 100px 0;
}

.career-combined-wrapper {
    border-top: 1px solid rgba(36, 73, 109, 0.18);
    border-bottom: 1px solid rgba(36, 73, 109, 0.18);
}


/* =========================================
   LEFT CONTENT
========================================= */

.career-intro {
    height: 100%;
    padding: 70px 70px 70px 20px;
    border-right: 1px solid rgba(36, 73, 109, 0.18);
}

.career-intro .section-heading {
    margin-bottom: 25px;
}

.career-intro .project-title-line {
    margin-bottom: 30px;
}

.career-intro p {
    margin-bottom: 20px;
}


/* =========================================
   RIGHT OPENINGS
========================================= */

.career-openings {
    padding: 70px 20px 70px 65px;
}

.career-openings>.section-heading {
    margin-bottom: 35px;
}


/* =========================================
   ACCORDION
========================================= */

.career-accordion {
    border-top: 1px solid rgba(36, 73, 109, 0.18);
}

.career-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(36, 73, 109, 0.18);
    border-radius: 0;
}

.career-accordion .accordion-button {
    padding: 28px 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    color: inherit;
}

.career-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: inherit;
    box-shadow: none;
}

.career-accordion .accordion-button:focus {
    box-shadow: none;
}


/* JOB NUMBER */

.career-job-number {
    width: 55px;
    flex-shrink: 0;
    color: #d5aa37;
}


/* JOB TITLE
   Typography inherits from your website */

.career-job-title {
    flex: 1;
    padding-right: 20px;
}


/* EXPERIENCE */

.career-job-experience {
    margin-left: auto;
    padding-right: 25px;
    white-space: nowrap;
}


/* ACCORDION ARROW */

.career-accordion .accordion-button::after {
    width: 12px;
    height: 12px;
    background-size: 12px;
    margin-left: 10px;
}


/* =========================================
   ACCORDION CONTENT
========================================= */

.career-accordion .accordion-body {
    padding: 10px 25px 40px 55px;
}

.career-job-details h5 {
    margin-bottom: 20px;
}

.career-job-details ul {
    margin: 0;
    padding-left: 20px;
}

.career-job-details li {
    margin-bottom: 12px;
}

.career-job-details li:last-child {
    margin-bottom: 0;
}


/* Use existing global button styling */

.career-apply-btn {
    margin-top: 35px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
    .career-combined-section {
        padding: 80px 0;
    }
    .career-intro {
        padding: 60px 40px;
        border-right: 0;
        border-bottom: 1px solid rgba(36, 73, 109, 0.18);
    }
    .career-openings {
        padding: 60px 40px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .career-combined-section {
        padding: 60px 0;
    }
    .career-intro,
    .career-openings {
        padding: 45px 20px;
    }
    .career-accordion .accordion-button {
        flex-wrap: wrap;
        padding: 22px 0;
    }
    .career-job-number {
        width: 40px;
    }
    .career-job-title {
        width: calc(100% - 75px);
        flex: none;
        padding-right: 10px;
    }
    .career-job-experience {
        width: 100%;
        margin: 8px 0 0 40px;
        padding: 0;
    }
    .career-accordion .accordion-body {
        padding: 15px 0 35px 40px;
    }
}


/* =========================================
            ABOUT US RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .about-wrapper {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    .about-image {
        width: 75%;
    }
    .about-image img {
        height: 420px;
    }
    .about-card {
        position: relative;
        top: auto;
        right: auto;
        width: 80%;
        margin-left: auto;
        margin-top: -120px;
        padding: 35px;
    }
    .about-card h2 {
        font-size: 40px;
    }
}


/* =========================================
                MOBILE
========================================= */

@media (max-width: 767px) {
    .about-section {
        padding: 55px 0 !important;
    }
    .about-section .section-heading {
        margin-bottom: 30px;
    }
    .about-section .section-heading h6 {
        font-size: 20px;
        letter-spacing: 5px;
    }
    .about-wrapper {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    .about-image {
        width: 100%;
    }
    .about-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .about-card {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 30px);
        margin: -60px auto 0;
        padding: 28px 22px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
    }
    .about-card h2 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 18px;
    }
    .about-card p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    .about-card .btn-custom {
        padding: 12px 28px;
        font-size: 15px;
    }
}


/* =========================================
            SMALL MOBILE
========================================= */

@media (max-width: 480px) {
    .about-section {
        padding: 45px 0 !important;
    }
    .about-section .section-heading h6 {
        font-size: 17px;
        letter-spacing: 4px;
    }
    .about-image img {
        height: 250px;
    }
    .about-card {
        width: calc(100% - 24px);
        margin-top: -45px;
        padding: 25px 18px;
    }
    .about-card h2 {
        font-size: 25px;
        line-height: 1.3;
    }
    .about-card p {
        font-size: 14px;
        line-height: 1.75;
    }
    .about-card .btn-custom {
        width: 100%;
        padding: 13px 20px;
    }
}


/* ========================================
        LEADERSHIP MOBILE ORDER FIX
======================================== */

@media (max-width: 991px) {
    .leadership-item {
        flex-direction: column !important;
    }
    .leadership-item>.col-lg-6:first-child {
        order: 2;
    }
    .leadership-item>.col-lg-6:last-child {
        order: 1;
    }
}


/* =========================================
        PROJECTS - MOBILE OPTIMIZATION
========================================= */

@media (max-width: 767px) {
    .project-card {
        height: auto;
        margin-bottom: 0;
    }
    /* Image */
    .project-image img {
        height: 320px;
    }
    /* Content box */
    .project-content {
        width: 92%;
        padding: 20px;
        /* Keep overlap with image */
        transform: translateX(-50%) translateY(-50px);
        /* Prevent overlapping next project */
        margin-bottom: -30px;
    }
    /* Show content properly on mobile */
    .project-hover {
        max-height: 300px;
        opacity: 1;
        transform: translateY(0);
        margin-top: 18px;
    }
    .project-content h3 {
        font-size: 24px;
    }
    .project-content h4 {
        font-size: 15px;
    }
    .project-hover p {
        font-size: 14px;
        line-height: 1.7;
    }
    .project-btn,
    .project-hover .btn-custom {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}


/* =========================================
                PRELOADER
========================================= */

#preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* .loader-content {
    width: 180px;
    text-align: center;
} */

.loader-content {
    width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .loader-content img {
    max-width: 130px;
    height: auto;
    margin-bottom: 25px;
} */

.loader-content img {
    display: block;
    max-width: 130px;
    height: auto;
    margin: 0 auto 25px;
}

.loader-line {
    width: 100%;
    height: 2px;
    background: #e5e5e5;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d5aa37;
    animation: loadingLine 1.2s infinite ease-in-out;
}

@keyframes loadingLine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}


/* Hide Preloader */

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* =========================================
   PROJECT DETAIL - WHY CHOOSE
========================================= */

.pd-why-choose-section {
    background: #123a59;
    padding: 100px 0 110px;
    overflow: hidden;
}


/* HEADING SPACING ONLY */

.pd-why-choose-heading {
    margin-bottom: 90px;
}


/* Existing global typography is used */

.pd-why-choose-heading h2 {
    color: #ffffff;
}


/* GRID */

.pd-why-choose-grid {
    row-gap: 95px;
}


/* ITEM */

.pd-why-choose-item {
    position: relative;
    text-align: center;
    padding: 20px 35px;
}


/* BACKGROUND NUMBER */

.pd-why-choose-number {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 78px;
    font-weight: 600;
    line-height: 1;
    color: rgba(255, 255, 255, 0.045);
    pointer-events: none;
    z-index: 1;
}


/* CONTENT POSITION ONLY */

.pd-why-choose-item h3,
.pd-why-choose-item p {
    position: relative;
    z-index: 2;
}

.pd-why-choose-item h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.pd-why-choose-item p {
    max-width: 320px;
    margin: auto;
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================
   RESPONSIVE - LAYOUT ONLY
========================================= */

@media (max-width: 991px) {
    .pd-why-choose-section {
        padding: 80px 0;
    }
    .pd-why-choose-heading {
        margin-bottom: 70px;
    }
    .pd-why-choose-grid {
        row-gap: 70px;
    }
}

@media (max-width: 767px) {
    .pd-why-choose-section {
        padding: 70px 0;
    }
    .pd-why-choose-heading {
        margin-bottom: 60px;
    }
    .pd-why-choose-grid {
        row-gap: 55px;
    }
    .pd-why-choose-item {
        padding: 15px 20px;
    }
    .pd-why-choose-number {
        font-size: 68px;
        top: -20px;
    }
}


/* =========================================
   PROJECTS SECTION - BLUE THEME
========================================= */

.projects-index {
    background: #123a59;
    padding: 80px 0;
}


/* Section heading */

.projects-index .section-heading h6 {
    color: #f2b400;
    font-size: 28px;
    letter-spacing: 6px;
    font-weight: 500;
    margin-bottom: 50px;
}


/* Project names */

.projects-index .project-text h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: .3s;
    border-bottom: solid 1px var(--secondary-color);
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}


/* Location */

.projects-index .project-text h5 {
    color: #f2b400;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}


/* Hover effect */

.projects-index .project-text:hover h3 {
    color: #f2b400;
}

.projects-index .project-text:hover h5 {
    color: #ffffff;
}


/* Mobile */

@media (max-width: 767px) {
    .projects-index {
        padding: 55px 0;
    }
    .projects-index .section-heading h6 {
        font-size: 22px;
        letter-spacing: 4px;
        margin-bottom: 30px;
    }
    .projects-index .project-text h3 {
        font-size: 21px;
    }
    .projects-index .project-text h5 {
        font-size: 15px;
    }
}

/* =========================================
   ENQUIRY MODAL
========================================= */

.enquiry-modal {
    position: relative;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
}


/* CLOSE BUTTON */

.enquiry-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 35px;
    height: 35px;
    opacity: 1;
    background-color: #f5f5f5;
    border-radius: 50%;
    padding: 10px;
}

.enquiry-close:hover {
    background-color: #f2b400;
}


/* MODAL BODY */

.enquiry-modal .modal-body {
    padding: 55px 60px;
}


/* HEADER */

.enquiry-modal-header {
    margin-bottom: 30px;
}

.enquiry-modal-header .section-heading h6 {
    margin-bottom: 12px;
    color: #caa044;
    font-size: 13px;
    letter-spacing: 4px;
}

.enquiry-modal-header h2 {
    margin: 0 0 15px;
    color: #2f5277;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.15;
}

.enquiry-modal-header p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}


/* FORM */

.enquiry-modal-form label {
    display: block;
    margin-bottom: 8px;
    color: #2f5277;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
}

.enquiry-modal-form .form-control,
.enquiry-modal-form .form-select {
    height: 52px;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    padding: 0 16px;
    color: #2f5277;
    font-family: inherit;
    font-size: 14px;
    box-shadow: none;
}

.enquiry-modal-form textarea.form-control {
    height: 120px;
    padding-top: 15px;
    resize: none;
}

.enquiry-modal-form .form-control::placeholder {
    color: #999;
}

.enquiry-modal-form .form-control:focus,
.enquiry-modal-form .form-select:focus {
    border-color: #caa044;
    box-shadow: none;
}


/* SUBMIT BUTTON */

.enquiry-modal-submit {
    min-width: 190px;
    padding: 14px 28px;
    background: #2f5277;
    color: #fff;
    border: 1px solid #2f5277;
}

.enquiry-modal-submit:hover {
    background: #caa044;
    border-color: #caa044;
    color: #fff;
}

.enquiry-modal-submit i {
    margin-left: 10px;
    transition: .3s;
}

.enquiry-modal-submit:hover i {
    transform: translateX(5px);
}


/* MODAL BACKDROP */

.modal-backdrop.show {
    opacity: .7;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .enquiry-modal .modal-body {
        padding: 45px 25px;
    }

    .enquiry-modal-header h2 {
        font-size: 32px;
    }

    .enquiry-modal-header p {
        font-size: 14px;
    }

    .enquiry-modal-submit {
        width: 100%;
    }

}


/* =========================================
   ENQUIRY MODAL
========================================= */

#enquiryModal {
    z-index: 10000 !important;
    padding: 80px 20px 20px;
}

#enquiryModal .modal-dialog {
    max-width: 800px;
    margin: 0 auto;
}

#enquiryModal .modal-content {
    border: none;
    border-radius: 0;
}

/* CLOSE BUTTON */

#enquiryModal .enquiry-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 20;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    #enquiryModal {
        z-index: 10000 !important;
        padding: 60px 10px 10px;
    }

    #enquiryModal .modal-dialog {
        max-width: 100%;
        margin: 0 auto;
    }

    #enquiryModal .modal-body {
        padding: 35px 20px;
    }

}