@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap");

:root {
    --primary-color: #4a90e2;
    --info-color: #d6e5e3;
    --info-color-dark: #b6cbc8;
    --secondary-color: #4d4958;
    --secondary-color-dark: #3a3d41;
    --gold-color: #e3bf63;
    --gold-color-dark: #bf9f4e;
    --dark-bg: #101a3b;
    --secondary-dark-bg: #2652aa;
    --light-bg: #fcfcfc;
    --light-bg-secondary: #f6f6f6;
    --purple-color: #22175a;
    --purple-color-dark: #101a3b;
    --purple-color-light: #2652aa;
    --purple-color-secondary: #6687e2;
    --text-muted: #afafaf;
    --text-light: #fcfcfc;
    --text-secondary: #afafaf;
    --text-dark: #101a3b;
    --text-muted-light: #d9d9d9;
    --text-muted-dark: #666666;
}
/* Styles the entire scrollbar */
::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}

/* Styles the scrollbar track */
::-webkit-scrollbar-track {
    background: rgba(31, 27, 46, 0.4);
    border-radius: 10px;
}

/* Styles the scrollbar thumb */
::-webkit-scrollbar-thumb {
    background: rgba(31, 27, 46, 1);
    border-radius: 10px;
}

/* Styles the thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Instrument Sans", sans-serif;
    background-color: transparent;
    color: var(--text-dark);
    font-size: 16px;
}
body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    line-height: 1.4;
}
.lead {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
}
.bg-info {
    background-color: var(--info-color) !important;
}
.bg-dark {
    background-color: var(--dark-bg) !important;
}
.bg-darker {
    background-color: var(--secondary-dark-bg) !important;
}
.bg-light {
    background-color: var(--light-bg) !important;
}
.bg-light-secondary {
    background-color: var(--light-bg-secondary) !important;
}
.bg-purple-dark {
    background-color: var(--purple-color-dark) !important;
}
.ratio-9x16 {
    aspect-ratio: 9/16;
    /* --bs-aspect-ratio: 146.25%; */
}
.ratio-3x4 {
    aspect-ratio: 3/4;
}
/* Header */
.navbar {
    background-color: #fff;
    height: 90px;
    font-size: 18px;
    z-index: 1025;
}
.navbar-nav {
    gap: 40px;
}
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .btn {
    font-size: 14px;
    white-space: nowrap;
}
.navbar .btn-outline-dark:hover svg path {
    stroke: #fff;
}
.navbar .btn-rounded {
    padding: 12px 24px;
}
.navbar-brand {
    font-weight: 700;
    color: var(--text-dark);
    z-index: 1023;
}
.navbar-toggler {
    border: 0;
}
#navbarNav .icon-lang {
    width: 24px;
    border: 1px solid var(--text-muted);
}
#navbarNav .dropdown-toggle {
    padding: 12px;
}
#navbarNav .dropdown-toggle::after {
    background-image: url("../img/icons/icon-chevron-down.svg");
    border: 0;
    width: 10px;
    height: 10px;
    vertical-align: middle;
}
#navbarNav .dropdown-menu {
    border: none;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 30%);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
    padding-left: 0;
    padding-right: 0;
    white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
    color: var(--text-dark);
    border-bottom-color: var(--gold-color);
}
.btn {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 400;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-outline-light {
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline-light:hover {
    background-color: var(--purple-color-secondary);
    color: var(--text-light);
    border-color: var(--purple-color-secondary);
}
.btn-outline-gold {
    color: var(--text-dark);
    border-color: var(--text-dark);
}
.btn-outline-gold:hover {
    background-color: var(--gold-color);
    color: var(--text-dark);
    border-color: var(--gold-color-dark);
}
.btn-outline-info {
    color: var(--text-dark);
    border-color: var(--text-dark);
}
.btn-outline-info:hover {
    background-color: var(--purple-color-secondary);
    color: var(--text-dark);
    border-color: var(--purple-color-secondary);
}
.btn-outline-dark {
    color: var(--text-dark);
    border-color: var(--text-dark);
}
.btn-outline-dark:hover {
    background-color: var(--dark-bg);
    color: var(--text-light);
    border-color: var(--dark-bg);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 400;
}

.btn-info {
    background-color: var(--info-color);
    border-color: var(--info-color);
    padding: 0.75rem 1.5rem;
    font-weight: 400;
}

.btn-info:hover {
    background-color: var(--info-color-dark);
    border-color: var(--info-color-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color-dark);
    border-color: var(--secondary-color-dark);
}
.btn-dark {
    background-color: var(--purple-color);
    border-color: var(--purple-color);
}
.btn-dark:hover {
    background-color: var(--purple-color-dark);
    border-color: var(--purple-color-dark);
}
.btn-purple {
    background-color: var(--purple-color-light);
    border-color: var(--purple-color-light);
    color: rgba(217, 217, 217, 0.8);
}
.btn-purple:hover {
    background-color: var(--purple-color-secondary);
    border-color: var(--purple-color-secondary);
    color: rgba(217, 217, 217, 1);
}

.btn-rounded {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    padding: 12px 24px;
    width: fit-content;
}
.btn-left,
.btn-right {
    transition: all 0.3s ease;
}
.btn-left:hover {
    transform: translateX(-5px);
}
.btn-right:hover {
    transform: translateX(5px);
}
.btn-outline-dark svg {
    width: 12px;
    height: 12px;
}
.btn-outline-dark:hover svg g {
    stroke: #fff;
    fill: #fff;
}

/* Loader */
.lazy-bg::before,
.image-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
}
.image-container {
    overflow: hidden;
}
.image-container::before {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3b82f6;
}

.lazy-bg::before {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-left-color: #ffffff;
}

.lazy-bg.loaded::before,
.image-container.loaded::before {
    opacity: 0;
    pointer-events: none;
    display: none;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lazy-load.loaded {
    opacity: 1;
}

/* Search Overlay */
.search-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 12px;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

.search-overlay.show {
    opacity: 1;
    visibility: visible;
}

.search-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.search-overlay-content {
    width: 80%;
    max-width: 700px;
    text-align: center;
}

.search-overlay-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-light);
    color: var(--text-light);
    font-size: 2.5rem;
    padding: 1rem 0;
    outline: none;
    text-align: center;
}

.search-overlay-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-ai {
    background: linear-gradient(45deg, var(--primary-color), #8e44ad);
    color: white;
    border: none;
}

.btn-ai:hover {
    opacity: 0.9;
    color: white;
}

/* Hero Slider */
#heroSlider .carousel-item {
    height: 90vh;
}

.hero-section {
    background-color: #2d3748; /* Warna fallback */
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    transition: all 1s ease-in-out;
}
.hero-section h1 {
    font-weight: 700;
    font-size: 3.5rem;
}
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 6rem;
    margin-bottom: auto;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}
.hero-section.loaded .hero-content {
    opacity: 1;
}
#heroSlider .carousel-item {
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--text-light);
    display: flex;
    align-items: center;
    z-index: 1;
}

#heroSlider .carousel-item.active {
    z-index: 2;
}

#heroSlider .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(36, 80, 131, 0.3);
    z-index: -1;
}
#heroSlider .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #245083;
    background: linear-gradient(
        180deg,
        rgba(36, 80, 131, 1) 0%,
        rgba(36, 80, 131, 0) 50%,
        rgba(227, 191, 99, 0.5) 100%
    );
    z-index: 0;
}

#heroSlider h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    color: var(--text-light);
    margin-bottom: 60px;
}

#heroSlider h2 span {
    opacity: 0.5;
}

#heroSlider .arrow {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--primary-color);
}
.carousel-control-next,
.carousel-control-prev {
    z-index: 3;
    width: auto;
    opacity: 1;
}
.carousel-control-prev {
    left: inherit;
    right: 2em;
}
.carousel-control-prev-icon {
    background: transparent;
    background-image: none;
    border: 1px solid var(--text-light);
    border-radius: 20px;
    transform: translateX(0px);
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-control-prev-icon:hover {
    opacity: 1;
    transform: translateX(0px);
    background: var(--text-light);
    color: var(--text-dark);
}
.carousel-control-next-icon {
    background: transparent;
    background-image: none;
    border: 1px solid var(--text-light);
    border-radius: 20px;
    transform: translateX(0px);
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-control-next-icon:hover {
    opacity: 1;
    transform: translateX(0px);
    background: var(--text-light);
    color: var(--text-dark);
}
.hero-controls {
    position: absolute;
    bottom: 4rem;
    left: 0;
    z-index: 10;
    color: var(--text-light);
    font-size: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.hero-controls p span {
    opacity: 0.5;
}
.hero-controls p span.active {
    font-size: 24px;
    color: var(--text-light);
    opacity: 1;
}

.carousel-indicators {
    left: 0;
    right: auto;
    bottom: 2em;
    margin: 0;
    width: 100%;
}

.carousel-indicators [data-bs-target] {
    width: 100%;
    margin: 0;
    height: 1px;
}

.hero-label {
    position: absolute;
    bottom: 2em;
    z-index: 1;
    color: #fff;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4em;
}

.hero-label .label-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-label .label-group .label-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-wrap: nowrap;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 50px;
    border: 1px solid #fff;
}

.hero-label .label-text {
    white-space: wrap;
    text-wrap: wrap;
    font-size: 14px;
}

/* Sections */
.section {
    padding: 50px 0;
    overflow-x: hidden;
}

.section-dark {
    background-color: var(--secondary-dark-bg);
    color: var(--text-light);
}

.section-title {
    font-weight: 400;
    font-size: 32px;
}

.section-title span {
    opacity: 0.5;
}

.stat-card {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 0;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.stat-card:hover .stat-card-content h2 {
    opacity: 1;
    transition: all 0.3s ease;
    font-size: 80px;
}

.stat-card-content {
    opacity: 1;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.stat-card:hover::before {
    background-color: rgba(27, 76, 129, 100);
    transition: all 0.3s ease;
}

.stat-card-light {
    background-color: white;
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
    height: 100%;
}

.stat-card h2,
.stat-card-light h2 {
    font-size: 3.5rem;
    font-weight: 400;
}

/* Work Portfolio */
#worksPortfolio {
    background: var(--purple-color-dark);
    padding: 2em 0;
}

/* Discovery Section Slider */
#discoverySlider {
    height: 90vh;
    position: relative;
}
#discoverySlider .carousel-inner,
#discoverySlider .carousel-item {
    height: 100%;
}
#discoverySlider .carousel-item {
    background-size: cover;
    background-position: center;
}
#discoverySlider .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.discovery-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 3rem 0 3rem;
    z-index: 1;
}
.step-number {
    font-size: 14px;
    padding-top: 5em;
}

@media (min-width: 992px) {
    .discovery-overlay {
        width: 50%;
    }
}

.discovery-step {
    cursor: pointer;
    padding: 0rem 0rem 1.5rem 3rem;
    border: none;
    border-left: 2px solid #b0b1b3;
    transition: all 0.3s ease;
    text-align: left;
    background: none;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row-reverse;
    gap: 2em;
}
.discovery-step.active {
    border-left-color: var(--dark-bg);
}
.discovery-step h4 {
    font-weight: 400;
    font-size: 28px;
}
.discovery-step i {
    font-size: 42px;
    margin-bottom: 16px;
}
.discovery-mobile-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

/* Featured Property */
.featured-property {
    position: relative;
}

#featuredPropertyCarousel .carousel-item {
    height: calc(100vh - 90px);
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--text-light);
    display: flex;
    align-items: center;
    z-index: 1;
}

#featuredPropertyCarousel .carousel-item.active {
    z-index: 2;
}

#featuredPropertyCarousel .carousel-item h4 {
    font-size: 32px;
    font-weight: 400;
}
#featuredPropertyCarousel .carousel-item p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 60px;
}

#featuredPropertyCarousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(36, 80, 131, 0.3);
}

#featuredPropertyCarousel .carousel-item .container {
    z-index: 1;
}

.featured-property::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.featured-property .container {
    position: relative;
    z-index: 2;
}

.featured-property .btn-outline-light {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-width: 2px;
}

.project-bar-section h5 {
    font-size: 24px;
    font-weight: 400;
}
.project-bar-col {
    display: flex;
    align-items: center;
    gap: 40px;
}

.roundLabel {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

/* News Section */

.news-hero {
    display: flex;
    align-items: center;
    background: url("../img/img-6.jpg") no-repeat center center;
    background-size: cover;
    padding: 3rem 0;
    color: var(--text-light);
    position: relative;
    height: 319px;
}
.news-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(36, 80, 131, 0.2);
}
.news-hero .container {
    position: relative;
    z-index: 2;
}
.news-hero h2 {
    font-size: 38px;
    font-weight: 400;
}
.news-hero h2 span {
    opacity: 0.5;
}

.news-card {
    background-color: transparent;
    border: none;
    border-radius: 0rem;
    overflow: visible;
    padding: 16px;
    text-decoration: none;
    transition: all 1s ease;
}
.news-card:hover {
    color: var(--text-dark);
    background-color: var(--light-bg-secondary);
    transition: all 1s ease;
}
.news-card:hover .bgImg::after {
    background-color: rgba(27, 76, 129, 0.25);
    transition: all 0.3s ease;
}
.news-card:hover .card-img-top {
    transform: scale(1.1);
    transition: all 1s ease;
}
.news-card .card-img,
.news-card .card-img-top {
    border-radius: 0rem;
    transition: all 1s ease;
}
.grid-col-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.sidebar {
    top: 90px;
}

.sidebar .search-form .form-control {
    border: none;
    background-color: transparent;
    line-height: 1;
    height: auto;
    padding: 0.75rem;
    box-shadow: none;
    border-bottom: 1px solid var(--text-dark);
    border-radius: 0;
    position: relative;
}
.sidebar .search-form .btn {
    position: absolute;
    right: 0;
    border: none;
    background-color: transparent;
    line-height: 1;
    height: auto;
    padding: 0.75rem;
    box-shadow: none;
    border-radius: 0;
}
.sidebar .search-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}
.sidebar .list-group-item {
    border: none;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--text-muted-dark);
}
.sidebar .list-group-item a {
    display: block;
    color: var(--text-muted-dark);
}
.sidebar .list-group-item a:hover {
    color: var(--text-dark);
}
.sidebar .list-group-item.active {
    color: var(--text-dark);
    font-weight: 700;
    background-color: transparent;
}
.sidebar .list-group-item.active a {
    color: var(--text-dark);
}

.post-card {
    border: none;
    text-decoration: none;
    color: var(--text-dark);
}
.post-card img {
    transition: all ease 1s;
}
.post-card:hover img {
    transform: scale(1.1);
}
.post-card .card-body {
    padding: 1.5rem 0;
}
.post-card .card-title {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 15px;
}
.post-card .card-text {
    color: var(--text-muted-dark);
    font-size: 16px;
    margin-bottom: 15px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-card .btn-link {
    text-decoration: none;
    font-weight: 600;
}
.post-card .share-icon {
    color: var(--text-muted-dark);
}
.post-author {
    font-size: 14px;
    margin-bottom: 15px;
}
.post-author span {
    font-weight: 600;
}
.post-content p {
    font-size: 16px;
    margin-bottom: 15px;
}
.post-category {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted-dark);
}

.bgImg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(27, 76, 129, 0.25);
    z-index: 1;
}

.news-card .card-body {
    color: var(--text-dark);
    padding: 1.5em 0;
}

.news-card .card-text {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.news-card .card-title {
    font-size: 20px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card .date {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-dark);
}

/* Big News Section */
#bigNews {
    height: 100%;
    background-color: var(--light-bg);
    position: relative;
    color: var(--text-dark);
    z-index: 1;
}

#bigNews .section-title {
    margin-bottom: 3rem;
    width: 100%;
    font-size: 28px;
}
#bigNews .bgImg {
    border-radius: 0px;
    overflow: hidden;
}
#bigNews .row {
    flex-wrap: nowrap;
    overflow: auto;
}
.exploreBtn .text {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.5s ease;
    position: absolute;
}
.exploreBtn:hover .text {
    transform: translateX(-50px);
    opacity: 1;
}

/* Professional Section */
.professionals-section .row {
    --bs-gutter-x: 42px;
}

/* Contact Section */
.contact-section {
    position: relative;
    background: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?q=80&w=2070&auto=format&fit=crop")
        no-repeat center center/cover;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-bg);
    opacity: 0.9;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-title {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 400;
}

.contact-form h4 {
    font-size: 32px;
}
.contact-form h5 {
    font-size: 24px;
}

.form-control {
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
}

.form-floating > .form-control {
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid var(--text-muted-dark);
    padding-left: 0;
    padding-right: 0;
}
.form-floating > .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--primary-color);
}
.form-floating > label {
    padding-left: 0;
}

.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
    background: transparent;
}

.form-bottom-line > .form-control {
    border: none;
    border-bottom: 2px solid var(--text-muted-dark);
    background: none;
    border-radius: 0;
    padding: 0.75rem 0;
}

.form-bottom-line > .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--primary-color);
}

.form-bottom-line > label {
    display: none;
}

/* About Hero Section */
.about-hero {
    display: flex;
    align-items: center;
    background: url("../img/img-13.jpeg") no-repeat center center;
    background-size: cover;
    padding: 2rem 0;
    color: var(--text-light);
    position: relative;
    height: 265px;
}
.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
.about-hero .container {
    position: relative;
    z-index: 2;
}
.about-hero h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
}
.about-hero h2 span {
    opacity: 0.5;
}
.checklist {
    list-style: none;
    padding-left: 0;
}
.checklist li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 14px;
}
.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--text-dark);
}

/* Services Hero Section */
.services-hero {
    display: flex;
    align-items: center;
    background: url("https://images.unsplash.com/photo-1508385082359-f38ae991e8f2?q=80&w=2070&auto=format&fit=crop")
        no-repeat center center;
    background-size: cover;
    padding: 2rem 0;
    color: var(--text-light);
    position: relative;
    height: 265px;
}
.services-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(36, 80, 131, 0.4);
}
.services-hero .container {
    position: relative;
    z-index: 2;
}
.services-hero h2 {
    font-size: 32px;
    font-weight: 400;
}
.services-hero h2 span {
    opacity: 0.5;
}

/* Value Proposition Section */
.value-section h6 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.value-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(31, 27, 46, 0.8);
}
.value-section .section-title {
    margin-bottom: 60px;
}
.value-group {
    display: flex;
    align-items: center;
    gap: 88px;
}
.value-item {
    padding: 16px;
}

/* Momentum Section */
.momentum-section .section-title {
    font-size: 32px;
    position: relative;
    margin-bottom: 0;
}
.momentum-section .section-subtitle {
    font-size: 20px;
    position: relative;
    padding-left: 40px;
    margin-bottom: 0;
}
.momentum-section .section-subtitle::before {
    content: "";
    display: block;
    width: 3px;
    height: 100%;
    background-color: var(--purple-color-light);
    position: absolute;
    top: 0;
    left: 0;
}

/* Case Studies Section */
.case-hero {
    display: flex;
    align-items: center;
    background: url("https://images.unsplash.com/photo-1460574283810-2aab119d8511?q=80&w=2070&auto=format&fit=crop")
        no-repeat center center;
    background-size: cover;
    padding: 2rem 0;
    color: var(--text-light);
    position: relative;
    height: 265px;
}
.case-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(36, 80, 131, 0.4);
}
.case-hero .container {
    position: relative;
    z-index: 2;
}
.case-hero h2 {
    font-size: 32px;
    font-weight: 400;
}
.case-hero h2 span {
    opacity: 0.5;
}
.case-study-grid .card {
    border: none;
    background: transparent;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
}
.case-study-grid a {
    text-decoration: none;
    color: inherit;
}
.case-study-grid a:hover .card {
    transform: translateY(0px);
}
.case-study-grid .card-img-top {
    border-radius: 0.5rem;
}
.case-study-grid .card-title {
    font-weight: 400;
    font-size: 20px;
}
.case-study-grid .card-text {
    color: var(--text-muted-dark);
    font-size: 14px;
    font-weight: 400;
}
.thumbImg {
    width: 80px;
    height: 80px;
    border: 1px solid var(--text-muted-light);
    flex-shrink: 0;
}
.thumb-xl {
    width: 157px;
    height: 157px;
}
.thumbImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5em;
}
.project-header {
    display: flex;
    align-items: start;
    gap: 32px;
}
.project-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-title {
    width: 100%;
}
.project-title h1 {
    font-size: 32px;
    font-weight: 400;
}
.project-title p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--secondary-color);
}
.project-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
}
.project-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
}
.project-meta-item:last-child {
    margin-left: auto;
}
.project-meta-item span {
    opacity: 0.8;
}
.project-meta-item:hover span {
    opacity: 1;
}
.project-details {
    text-align: left;
}
.project-swiper .swiper-slide a {
    white-space: nowrap;
}

.pagination .page-link {
    border: none;
    color: var(--text-dark);
    font-weight: 400;
}
.pagination .page-link:hover {
    background-color: #e9ecef;
}
.pagination .page-number.active .page-link {
    background-color: transparent;
    color: var(--text-secondary);
}
.pagination .page-item.disabled .page-link {
    background: transparent;
}

/* Team Section */
.team-member-card {
    transition: all 0.2s ease;
}
.team-member-card .ratio {
    transition: all 0.75s ease;
}
.team-member-card:hover {
    transform: translateY(0px);
}
.team-member-card:hover .ratio {
    box-shadow: 0px 0px 0px 5px var(--purple-color-secondary);
}
.team-member-card:hover .ratio::after {
    background-color: rgba(27, 76, 129, 0.15);
}
.team-section > .container > .row {
    --bs-gutter-x: 64px;
}
.team-member-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-member-card h5 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
}
.team-member-card p {
    color: var(--text-muted-dark);
    font-size: 14px;
}
.team-member-card .content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1em;
}

/* Gallery */
#gallerySection {
    background: var(--light-bg-secondary);
}
.gallery-item {
    position: relative;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.gallery .col-lg-6 {
    height: 570px;
}

.gallery .col-lg-12 {
    height: 486px;
}

#loading {
    text-align: center;
    padding: 2rem;
}

.gallery-card {
    position: relative;
    border: none;
    border-radius: 0px;
    overflow: hidden;
}
.gallery-card .card-body {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    top: 0;
    left: 0;
    z-index: 1;
    padding: 24px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    opacity: 0;
    transition: all 1s ease-in-out;
}
.gallery-card:hover .card-body {
    opacity: 1;
}
.gallery-card .roundLabel {
    color: var(--text-dark);
    margin-top: auto;
    background: transparent;
    padding: 0;
}
.gallery-card h5 {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 26px;
}
.gallery-card small {
    color: var(--text-muted-dark);
    font-size: 14px;
    font-weight: 400;
}

/* Post Details */
.post-title {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 15px;
}
.post-meta {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-content p {
    line-height: 1.8;
    color: var(--text-dark);
}

.post-content blockquote {
    background-color: var(--info-color);
    border-left: none;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 1em;
}

.post-content blockquote h6 {
    font-weight: 500;
}

.post-content blockquote p {
    font-size: 14px;
    margin-bottom: 0.5em;
}

.avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--text-secondary);
}
.avatar-sm {
    width: 50px;
    height: 50px;
}
.comment-section h3 {
    font-weight: 400;
}

.comment-section p {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
}

.comment-section .form-check-label {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
}
.comment-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--text-dark);
    border-radius: 0;
    padding-left: 0;
}
.comment-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}
.comment-form textarea {
    border: 1px solid var(--text-dark) !important;
    padding-left: 16px !important;
}
.comment {
    display: flex;
    gap: 1em;
    margin-bottom: 2rem;
}
.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9ecef;
    margin-right: 1.5rem;
}
.comment-body {
    display: flex;
    align-items: end;
    gap: 1em;
    flex-grow: 1;
}
.comment-author {
    font-size: 16px;
    font-weight: 500;
}

.related-post-card {
    border: none;
    background: transparent;
}
.related-post-card img {
    border-radius: 0.5rem;
}
.related-post-card .card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Modal */
.modal-content {
    border-radius: 0;
    border: none;
}
.modal-header {
    border-bottom: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
}
.modal-body {
    padding: 32px;
}
.modal-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Share Button & Popup */
.share-links {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    margin-bottom: 25px;
}
.share-links .btn-share {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-muted-light);
    border-radius: 50px;
}
.share-links .btn-share:hover {
    color: var(--purple-color-light);
}
.share-links .btn-share i {
    font-size: 24px;
}
.share-copy-link label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.share-copy-link #copyLinkBtn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    text-decoration: none;
    border: 1px solid var(--text-muted-light);
    border-left: none;
    border-radius: 0 5px 5px 0;
}
.share-container {
    position: relative;
}
#shareBtn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.share-popup {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid #eee;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    width: 160px;
    z-index: 100;
}
.share-popup.show {
    display: flex;
}
.share-popup a,
.share-popup button {
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    text-align: left;
    background: none;
    border: none;
    width: 100%;
}
.share-popup a:hover,
.share-popup button:hover {
    background-color: #f8f9fa;
}
.share-popup i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

/* Socials */
.social-icons {
    display: flex;
    justify-content: end;
    gap: 0.5em;
}
.social-icons a {
    color: var(--text-light);
    font-size: 12px;
    background: var(--dark-bg);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.social-icons a:hover {
    color: var(--text-light);
    background: var(--primary-color);
}

/* Vision Section */
#visionSection img {
    height: 42px;
}
#visionSection .vision-text {
    font-size: 16px;
}
#visionSection .section-title {
    position: relative;
}
#visionSection .section-subtitle {
    position: relative;
    padding-left: 40px;
}
#visionSection .section-subtitle::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: var(--purple-color-light);
}
.vision-features {
    display: flex;
    flex-direction: column;
}
.vision-features .vision-item {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #212529; /* Darker background */
    color: var(--text-muted-light);
    font-size: 0.9rem;
    display: grid;
}
.footer-top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3em;
    padding: 2rem;
    height: 100px;
}
.footer-top-nav nav {
    display: flex;
    align-items: center;
    gap: 0;
}
.footer-top-nav nav a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    padding: 16px 32px;
}
.footer-top-nav .contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
}
.footer-top-nav .contact-info a {
    font-size: 14px;
    font-weight: 400;
}
.footer-top-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 200;
    font-size: 16px;
}
.footer-top-nav a:hover {
    color: var(--primary-color);
}
.footer-logo-col .navbar-brand {
    color: var(--text-light);
    font-size: 1.2rem;
    display: block;
}
.footer-main-heading {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 25px;
}
.footer-wave {
    padding: 3rem 2rem;
}
.footer h5 {
    color: var(--text-secondary);
    font-weight: 200;
    margin-bottom: 1rem;
}
.footer a {
    color: var(--text-light);
    text-decoration: none;
}
.footer a:hover {
    color: var(--text-light);
}
.footer .social-icons {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1em;
}
.footer .social-icons a {
    font-size: 11px;
    color: var(--text-dark) !important;
    background: var(--text-light);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none !important;
}
.footer .social-icons a:hover {
    background: var(--purple-color-secondary);
    color: var(--secondary-color-dark);
}
.subscribe-form {
    position: relative;
    width: 80%;
}
.subscribe-form a {
    position: absolute;
    height: 40px;
    bottom: 0;
    top: 0;
    right: 0;
    margin: auto 0;
}
.subscribe-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted-light);
    border-radius: 0;
    color: white;
    padding: 24px 0;
}
.subscribe-form .form-control::placeholder {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 400;
}
.subscribe-form .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--primary-color);
}
.subscribe-form .btn-send {
    background-color: #343a40;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subscribe-form .form-floating > label {
    color: var(--text-light) !important;
}

.footer .copyright {
    color: var(--text-secondary);
    font-size: 12px;
    padding: 2rem;
}
.footer .copyright .copyright-text {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.footer .copyright a {
    color: var(--text-secondary);
    font-size: 12px;
}
.footer .copyright a:hover {
    color: var(--text-light);
}
#footerMainItem {
    background: transparent;
    --bs-accordion-bg: transparent;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
#footerMainItem .accordion-button {
    background: transparent;
    padding: 0;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 400;
    box-shadow: none;
}
#footerMainItem .accordion-header {
    margin: 0;
}
#footerMainItem .accordion-body {
    padding: 0;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 30px;
    font-weight: 400;
}
#footerMainItem .accordion-body a {
    color: var(--text-muted);
    text-decoration: underline;
}
#footerMainItem .accordion-body a:hover {
    color: var(--text-light);
}
#footerMainItem .accordion-item {
    border-bottom: 1px solid rgba(48, 42, 70, 1);
    padding: 1em 0;
}
.accordion-button::after {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    margin-left: auto;
    background: url("../img/down-arrow.svg") no-repeat center center !important;
}

/* Media Queries */

/* Desktop Large */
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 16px 12px;
    }
    .navbar-expand-lg .navbar-nav {
        gap: 40px;
    }
    .navbar-expand-lg .navbar-collapse {
        gap: 40px;
    }
    .project-details {
        text-align: right;
    }
    .footer-logo-col p {
        margin-bottom: 60px;
    }
    .footer-main-heading {
        margin-bottom: 80px;
    }
    #footerMainItem .collapse:not(.show) {
        display: block;
    }
    .accordion-button::after {
        display: none;
    }
    #footerMainItem .accordion-item {
        border-bottom: none;
    }
}

/* Tablet & Mobile */
@media (max-width: 992px) {
    .navbar-toggler {
        padding: 0;
    }
    .navbar-collapse .navbar-brand {
        position: absolute;
        top: 0;
        left: 0;
        padding: 16px;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: var(--dark-bg);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1045;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .navbar-collapse.show {
        transform: translateX(0);
        justify-content: center !important;
    }
    .navbar-collapse .navbar-nav {
        text-align: center;
        gap: 0;
    }
    .navbar-collapse .nav-link {
        color: var(--text-light);
        font-size: 18px;
        margin: 1rem 0;
        border-bottom: none;
    }
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active {
        color: var(--primary-color);
    }
    .navbar-collapse .d-flex {
        flex-direction: column;
        gap: 60px !important;
    }
    .navbar-collapse .btn-outline-primary {
        display: block !important;
        margin-bottom: 1rem;
        color: white;
        border-color: white;
    }
    .navbar-collapse .search-btn {
        display: none;
    }
    .navbar-collapse .btn-close-dark {
        position: relative;
        top: 0;
        right: 0;
        font-size: 24px;
        opacity: 1;
        padding: 0;
        width: 100%;
        --bs-btn-close-color: var(--text-light);
        --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg%20width%3D'24'%20height%3D'24'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M18%206L6%2018'%20stroke%3D'%23FCFCFC'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'/%3E%3Cpath%20d%3D'M6%206L18%2018'%20stroke%3D'%23FCFCFC'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'/%3E%3C/svg%3E");
    }
    .navbar-collapse .btn-rounded {
        background-color: var(--gold-color);
        border: 1px solid var(--gold-color);
        color: var(--text-dark);
        font-size: 14px;
        font-weight: 400;
    }
    .navbar-collapse .btn-rounded svg path {
        stroke: var(--text-dark);
    }
    .news-card {
        padding: 0;
    }
    .project-bar-section {
        display: none;
    }
}

/* Tablet Landscape */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-link {
        white-space: nowrap;
        font-size: 14px;
    }
    .navbar .btn {
        font-size: 14px;
    }
    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }
    .navbar-expand-lg .navbar-collapse {
        gap: 10px;
    }
    .btn-rounded {
        white-space: nowrap;
        font-size: 14px;
    }
    .section-title {
        font-size: 30px;
    }
    .navbar-brand img {
        height: 48px;
    }
    .hero-label {
        width: 80%;
    }
    #bigNews .section-title {
        width: 70%;
    }
    .news-card .card-title {
        font-size: 20px;
    }
    .contact-section .section-title {
        font-size: 50px;
    }
    .footer-top-nav {
        flex-direction: column;
    }
    .subscribe-form {
        width: 80%;
    }
}

/* Tablet Potrait */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-label {
        width: 90%;
    }
    #bigNews .section-title {
        width: 60%;
    }
    .footer-top-nav {
        flex-direction: column;
    }
    .subscribe-form {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 20px !important;
    }
    .navbar {
        height: 56px;
        align-content: center;
    }
    .navbar-brand img {
        height: 36px;
    }
    .navbar-collapse .nav-link {
        margin: 0;
    }
    .navbar-collapse .navbar-nav {
        gap: 40px;
    }
    .navbar-collapse.show {
        gap: 40px;
    }
    #heroSlider {
        height: calc(100vh - 56px);
    }
    #heroSlider .carousel-item {
        height: 100%;
    }
    #heroSlider h2 {
        font-size: 36px;
        font-weight: 400;
        line-height: 43px;
        margin-bottom: 25px;
    }
    .carousel-inner {
        height: 100%;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .hero-label {
        flex-direction: column;
        bottom: 5em;
        width: 100%;
        gap: 1em;
        align-items: start;
    }
    .hero-label .label-group {
        flex-wrap: wrap;
    }
    .hero-content .btn-link img {
        width: 25px;
    }
    .hero-controls span.active {
        font-size: 20px;
        font-weight: 500;
    }
    .swiper-slide {
        height: auto !important;
    }
    .swiper-slide a {
        height: 100%;
        align-content: center;
    }
    .value-section .section-title {
        margin-bottom: 30px;
    }
    .value-group {
        flex-direction: column;
        gap: 2em;
    }
    .value-item {
        padding: 0;
        display: flex;
        gap: 24px;
    }
    .value-item h6 {
        font-size: 18px;
    }
    .value-item p {
        font-size: 16px;
    }
    .value-item img {
        width: 30px;
        margin-bottom: 0;
    }
    .discovery-step {
        flex-direction: column;
        gap: 1em;
    }
    .step-number {
        display: none;
    }
    #bigNews {
        height: 100%;
    }
    #bigNews .section-title {
        width: 100%;
    }
    #bigNews .row::-webkit-scrollbar {
        height: 0;
    }
    .news-card .card-title {
        font-size: 18px;
    }
    .hero-controls {
        bottom: 2rem;
    }
    .carousel-indicators {
        bottom: 1rem;
    }
    #gallerySection .row {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    #gallerySection .row::-webkit-scrollbar {
        height: 0;
    }
    .gallery-card {
        background: transparent;
        text-decoration: none;
    }
    .gallery-card .ratio-3x4 {
        aspect-ratio: 4 / 3;
    }
    .gallery-card .card-body {
        position: relative;
        background-color: transparent;
        opacity: 1;
        padding-left: 0;
        padding-right: 0;
    }
    .gallery-card .card-body .btn-rounded {
        display: none;
    }
    .gallery-card h5 {
        font-size: 18px;
        font-weight: 400;
    }
    .gallery-card small {
        font-size: 12px;
    }
    .exploreBtn .text {
        opacity: 1;
        position: relative;
    }
    .team-section .section-title {
        text-align: center;
    }
    .team-section p {
        text-align: center;
    }
    .team-section .btn-rounded {
        width: 100%;
    }
    .team-member-card .leading p {
        text-align: left;
    }
    .team-member-card .ratio-3x4 {
        aspect-ratio: 1;
    }
    #featuredPropertyCarousel .carousel-item .container {
        height: 100%;
        margin-top: 8em;
    }
    #featuredPropertyCarousel .carousel-item {
        height: calc(100vh - 56px);
    }
    #featuredPropertyCarousel .carousel-item h4 {
        font-size: 20px;
        font-weight: 400;
    }
    .hero-content a {
        font-size: 12px;
    }
    #visionSection img {
        width: 30px;
    }
    .vision-features {
        flex-direction: row;
        overflow-x: auto;
        gap: 2em;
    }
    .vision-features .row {
        width: 100%;
    }
    .vision-features .vision-item {
        flex-direction: row;
        align-items: center;
    }
    .vision-features .vision-item div {
        width: 500px;
    }
    .about-hero {
        height: 212px;
    }
    .about-hero h2 {
        font-size: 20px;
        font-weight: 400;
        line-height: 27px;
    }
    .lead {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }
    .momentum-section .section-title {
        margin-bottom: 15px;
    }
    .momentum-section .section-subtitle {
        font-size: 18px;
        font-weight: 400;
        padding-left: 16px;
        color: var(--text-muted-dark);
    }
    .momentum-section .value-group {
        margin-bottom: 25px;
    }
    .momentum-section a {
        width: 100%;
    }
    .professionals-section .row {
        gap: 1.5em;
    }
    .services-hero {
        height: 212px;
    }
    .services-hero h2 {
        font-size: 20px;
        font-weight: 400;
        line-height: 27px;
    }
    .case-hero {
        height: 212px;
    }
    .case-hero h2 {
        font-size: 20px;
        font-weight: 400;
        line-height: 27px;
    }
    .case-study-grid .thumbImg {
        width: 60px;
        height: 60px;
    }
    .project-header {
        flex-direction: column;
    }
    .project-meta {
        flex-direction: column;
    }
    .project-meta-item:last-child {
        margin: 0;
    }
    .gallery .col-lg-12 {
        height: 327px;
    }
    .gallery .col-lg-6 {
        height: 327px;
    }
    .grid-col-2 {
        grid-template-columns: 1fr;
    }
    .news-hero {
        height: 212px;
    }
    .news-hero h2 {
        font-size: 20px;
        font-weight: 400;
        line-height: 27px;
    }
    #newsSection .sidebar {
        margin-bottom: 25px;
    }
    #newsSection .sidebar h5 {
        display: none;
    }
    #newsSection .sidebar ul {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    #newsSection .sidebar ul li {
        flex-shrink: 0;
        padding: 0;
    }
    #newsSection .sidebar ul li a {
        padding: 8px;
        line-height: 40px;
        color: var(--text-dark);
    }
    #newsSection .sidebar .list-group-item.active {
        border-bottom: 1px solid var(--text-dark);
    }
    #newsSection .sidebar ul::-webkit-scrollbar {
        height: 0;
    }
    nav #prev-page {
        margin-right: auto;
    }
    nav #next-page {
        margin-left: auto;
    }
    .share-links {
        justify-content: start;
        flex-wrap: wrap;
    }
    .contact-section {
        background-position: left center;
    }
    .contact-section .section-title {
        font-size: 42px;
    }
    .contact-form h4 {
        font-size: 32px;
    }
    .contact-form {
        padding: 20px !important;
    }
    #contactForm .btn {
        width: 100%;
        border-radius: 50em !important;
    }
    .footer-top-nav {
        flex-direction: column;
        align-items: start;
        padding: 2em 0;
    }
    .footer-top-nav nav {
        flex-direction: column;
        gap: 1em;
        align-items: start;
        width: 100%;
        display: none;
    }
    .footer-top-nav .contact-info {
        flex-direction: row;
        gap: 0em;
        align-items: center;
        width: 100%;
    }
    .footer-top-nav a {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        gap: 1em;
        font-size: 14px;
        font-weight: 400;
    }
    .footer-logo-col .navbar-brand img {
        height: 50px;
    }
    .subscribe-form {
        width: 100%;
    }
    .subscribe-form a {
        position: relative;
        width: 100%;
        margin-bottom: 30px;
    }
    .footer-main-heading {
        font-size: 14px;
        line-height: 24px;
        margin: 0;
    }
    .footer h5 {
        font-size: 18px;
    }
    #footerMainItem {
        grid-template-columns: 1fr;
    }
    #footerMainItem .accordion-button {
        font-size: 14px;
        font-weight: 400;
        color: var(--text-light);
    }
    .footer-wave {
        margin: 2em 0;
        padding: 0;
    }
    .footer .copyright {
        padding: 0;
    }
    .footer .copyright .copyright-text {
        display: flex;
        gap: 10px;
    }
}
