:root {
    --primary: #a22426;
    --primary-dark: #2b2a29;
    --gold: #c7a35a;
    --bg: #ffffff;
    --surface: #f7f7f5;
    --surface-alt: #f1f0ee;
    --text: #101828;
    --muted: #667085;
    --border: rgba(16, 24, 40, 0.08);
    --shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: 'Chandi Group';
    background:
        radial-gradient(circle at top left, rgba(162, 36, 38, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(199, 163, 90, 0.1), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    overflow-x: hidden;
}

a {
    color: #c7a35a;
}


/* font family */

/* Chandi Group ExtraLight */
@font-face {
    font-family: 'Chandi Group';
    src: url('./chandani-group-font/Chandi-Group-ExtraLight.woff2') format('woff2'),
        url('./chandani-group-font/Chandi-Group-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* Chandi Group Light */
@font-face {
    font-family: 'Chandi Group';
    src: url('./chandani-group-font/Chandi-Group-Light.woff2') format('woff2'),
        url('./chandani-group-font/Chandi-Group-Light.woff') format('woff');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

/* Chandi Group Regular */
@font-face {
    font-family: 'Chandi Group';
    src: url('./chandani-group-font/Chandi-Group-Regular.woff2') format('woff2'),
        url('./chandani-group-font/Chandi-Group-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Chandi Group Medium */
@font-face {
    font-family: 'Chandi Group';
    src: url('./chandani-group-font/Chandi-Group-Medium.woff2') format('woff2'),
        url('./chandani-group-font/Chandi-Group-Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

/* Chandi Group SemiBold */
@font-face {
    font-family: 'Chandi Group';
    src: url('./chandani-group-font/Chandi-Group-SemiBold.woff2') format('woff2'),
        url('./chandani-group-font/Chandi-Group-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Chandi Group Bold */
@font-face {
    font-family: 'Chandi Group';
    src: url('./chandani-group-font/Chandi-Group-Bold.woff2') format('woff2'),
        url('./chandani-group-font/Chandi-Group-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Chandi Group';
    font-weight: 700;
}

p {
    font-family: 'Chandi Group';
    font-weight: normal;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: 0.35s ease;
    background: rgba(0, 0, 0, 0.66);
}

.main-header.nav-scrolled {
    background: rgba(0, 0, 0, 0.66);
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
    backdrop-filter: blur(16px);
}

.navbar {
    padding: 0px 0;
}

.brand-mark {
    font-family: 'ChandiGroupBold';
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #fff;
    font-size: 1.1rem;
}

.nav-scrolled .brand-mark,
.nav-scrolled .nav-link,
.nav-scrolled .search-toggle {
    color: #ffff;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 600;
    padding: 0.75rem 1rem !important;
    border-radius: 999px;
}

.nav-link:hover,
.nav-link:focus {
    color: #000 !important;
    background: rgba(255, 255, 255, 0.08);
}

.nav-scrolled .nav-link:hover,
.nav-scrolled .nav-link:focus {
    background: rgba(162, 36, 38, 0.08);
    color: #000 !important;
}

.search-toggle {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #e0c27b);
    color: #1f1a12;
    font-weight: 700;
    border: 0;
    padding: 0.9rem 1.4rem;
    border-radius: 10px;
    box-shadow: 0 16px 30px rgba(199, 163, 90, 0.2);
}

.btn-gold:hover {
    color: #1f1a12;
    transform: translateY(-1px);
}

.btn-outline-light,
.btn-outline-dark {
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-dark {
    border-color: rgba(16, 24, 40, 0.15);
}

.mega-menu {
    border: 0;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(16, 24, 40, 0.12);
}

.mega-label,
.section-kicker,
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    color: var(--primary);
    font-weight: 700;
}

/* Hero media positioning */
.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    /* Overlay ke neeche dikhane ke liye */
}

/* Video ki styling */
.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Video aspect ratio maintain karke poore screen ko cover karegi */
    object-position: center;
}

.mega-menu h3,
.section-title,
.hero-content h1 {
    font-family: 'ChandiGroupBold';
}

.mega-link {
    min-height: 112px;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    color: var(--text);
    background: linear-gradient(180deg, #fff, #fbfbfa);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    transition: 0.25s ease;
}

.mega-link:hover {
    transform: translateY(-4px);
    border-color: rgba(162, 36, 38, 0.25);
    box-shadow: var(--shadow);
}

.mega-link i {
    color: var(--primary);
    font-size: 1.4rem;
}








.navbar-brand .logo {
    width: auto;
    height: 82px;
    object-fit: contain;
}





.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.86);
    padding: 70px 80px 26px 80px;
}

.site-footer h3,
.footer-brand {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.socials {
    display: flex;
    gap: 14px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
}

.search-modal {
    border-radius: 24px;
}





.nav-scrolled .navbar-toggler {
    border-color: rgba(16, 24, 40, 0.15);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.timeline-item,
.vertical-card,
.project-card-large,
.news-card,
.info-card,
.stat-card,
.team-card,
.csr-panel div,
.map-panel,
.contact-form,
.mega-link {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.vertical-card:hover,
.project-card-large:hover,
.news-card:hover,
.team-card:hover,
.info-card:hover,
.stat-card:hover,
.mega-link:hover {
    transform: translateY(-6px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(162, 36, 38, 0.24);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(162, 36, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(162, 36, 38, 0);
    }
}

@keyframes previewBorderSweep {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}





/* about us section */
.profile-section {
    height: 100vh;
    overflow: hidden;
    background-color: #fff;
}

.profile-image {
    background: #003b82;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-wrapper {
    position: relative;
    padding: 40px 40px;
    display: flex;
    /* align-items: center; */
    height: 100%;
    justify-content: center;
}

.quote-box {
    max-width: 900px;
    position: relative;
}

.quote-text {
    padding: 0px 30px 0px 0px;
    line-height: 1.4;
    color: #333;
}


.quote-text h2 {
    font-size: 36px;
}

.quote-text p {
    font-size: 18px;
}

.quote-text strong {
    font-weight: 700;
}

.speech-line {
    width: 100%;
    height: 120px;
    margin: 0;
    margin-top: -50px;
}

.speech-line svg {
    width: 100%;
    height: 100%;
}

.profile-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.profile-info p {
    color: #666;
    margin-bottom: 25px;
}


.btn-profile_know_more {
    border: 1px solid #444;
    padding: 12px 28px;
    border-radius: 8px;
    /* background: transparent; */
    transition: 0.3s;
}

.btn-profile_know_more:hover {
    /* background: #e0c27b; */
    color: #fff;
}



.btn-profile {
    border: 1px solid #444;
    padding: 12px 28px;
    border-radius: 8px;
    background: transparent;
    transition: 0.3s;
}

.btn-profile:hover {
    /* background: #e0c27b; */
    color: #fff;
}

.btn-profile_business {
    border: 1px solid #444;
    padding: 12px 28px;
    border-radius: 8px;
    background: transparent;
    transition: 0.3s;
}

.btn-profile_business:hover {
    /* background: #e0c27b; */
    color: #fff;
}

@media (max-width: 991px) {
    .profile-section {
        min-height: auto;
    }

    .content-wrapper {
        padding: 40px 25px;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .profile-info h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .quote-text {
        font-size: 1.2rem;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .speech-line {
        height: 80px;
    }
}






/* Businesses section css */


.BUSINESSES_section,
.project_devlopment {
    /* max-width:1600px; */
    margin: auto;
    padding: 50px;
}

/* =========================
   HEADER
========================= */

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.top-bar-new {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.top-bar-new_our_chapters {
    margin-bottom: 30px;
    width: 800px;
}


.top-bar-new_our_chapters h3{
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    background: linear-gradient(135deg, #e0c27b, #979797);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.top-bar-new_home {
    display: flex;
    /* justify-content:center; */
    align-items: center;
    margin-bottom: 20px;
}

.top-bar-new_home h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    /* Fallback */
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.top-bar-new_homeproject {

    align-items: center;
    margin-bottom: 20px;
}

.top-bar-new_homeproject h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    /* Fallback */
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.top-bar-new h3 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    /* Fallback */
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.top-bar h2,
.top-bar-new h2 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    /* Fallback */
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tabs {
    display: flex;
    gap: 40px;
}

.tabs a {
    text-decoration: none;
    color: #b3b3b3;
    font-size: 24px;
    position: relative;
}

.tabs a.active {
    color: #0077c8;
}

.tabs a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00c6ff, #d400ff);
}

/* =========================
   MAIN GRID
========================= */

.business-wrapper {
    display: grid;
    grid-template-columns: 640px 1fr;
    gap: 20px;
}

/* =========================
   LEFT SIDE
========================= */

.vertical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.vertical-card_new {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 240px;
}

.vertical-card_new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.vertical-card_new:hover img {
    transform: scale(1.08);
}

.vertical-card_new::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
}

.vertical-card_new span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    z-index: 2;
    font-size: 22px;
    font-weight: 500;
}

/* Active Card */

.vertical-card_new.active {
    /* background: linear-gradient(135deg, #e0c27b, #000000); */
    border: 3px solid #b19147;
}

/* .vertical-card_new.active img {
    display: none;
} */

.vertical-card_new.active span {
    bottom: 25px;
}

.vertical-card_new.active .arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 34px;
    z-index: 3;
}

/* =========================
   RIGHT SIDE
========================= */

.showcase {
    position: relative;
    height: 746px;
    min-height: 655px;
    overflow: hidden;
}

.showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .8),
            rgba(0, 0, 0, .05));
}

.bottom-content {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 25px;
    z-index: 3;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.tags span {
    background: rgba(0, 0, 0, .55);
    color: #fff;
    padding: 10px 16px;
    font-size: 18px;
}

.explore {
    border-top: 1px solid rgba(255, 255, 255, .4);
    padding-top: 18px;
}

.explore a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .business-wrapper {
        grid-template-columns: 1fr;
    }

    .showcase {
        min-height: 550px;
    }

}

@media(max-width:768px) {

    .container {
        padding: 20px;
    }

    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .top-bar h2 {
        font-size: 36px;
    }

    .vertical-grid {
        grid-template-columns: 1fr 1fr;
    }

    .showcase {
        min-height: 400px;
    }

    .tags span {
        font-size: 13px;
    }

    .explore a {
        font-size: 22px;
    }

}

@media(max-width:560px) {

    .vertical-grid {
        grid-template-columns: 1fr;
    }

    .showcase {
        min-height: 320px;
    }

    .vertical-card_new {
        min-height: 140px;
    }

}

.arrow {
    display: none;
}



/* Projects & Developments */
.project_devlopment {
    background-color: #f0f0f0;
}

.content_project {
    font-size: 18px;
}


/* news section */
.news-section {
    padding: 50px 0;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom:30px; */
    padding: 0px 20px;
    gap: 20px;
}

.news-title {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
    text-transform: uppercase;
    margin: 0;
}

.view-btn {
    border: 1px solid #444;
    padding: 16px 35px;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    font-size: 22px;
    transition: .3s;
}

.view-btn:hover {
    background: #333;
    color: #fff;
}

.news-card_img {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 20px;
    transition: 0.5s;
}

.news-card_img:hover {
    background-color: #f0f0f0;
}


.news-card_img_about {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 20px;
    border: 1px solid gray;
    border-radius: 10px;
    transition: 0.5s;
}

/* .news-card_img_about:hover{
    background-color: #f0f0f0;
} */



.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}


.news-image_about {
    position: relative;
    overflow: hidden;
}

.news-image_about img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    transition: .5s;
}


.news-card_img:hover img {
    transform: scale(1.08);
    border-radius: 10px;
}

.news-card_img_about:hover img {
    transform: scale(1.08);
}



.news-tag {
    position: absolute;
    left: 20px;
    bottom: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    z-index: 2;
}

.news-tag_about {
    position: absolute;
    left: 20px;
    bottom: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    z-index: 2;
}


.news-image_about::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
}


.news-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
}

.news-date {
    font-size: 22px;
    color: #888;
    margin-top: 20px;
}

.news-content p {
    font-size: 20px;
    color: #888;
    line-height: 1.5;
    margin-top: 20px;
    /* font-weight:500; */
}

.news-content_about p {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    margin-top: 20px;
    /* font-weight:500; */
}



/* Tablet */
@media(max-width:991px) {

    .news-title {
        font-size: 42px;
    }

    .news-content {
        font-size: 24px;
    }

    .news-date {
        font-size: 18px;
    }

    .news-image img {
        height: 240px;
    }
}

/* Mobile */
@media(max-width:767px) {

    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-title {
        font-size: 34px;
    }

    .view-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .news-image img {
        height: 220px;
    }

    .news-content {
        font-size: 20px;
    }

    .news-date {
        font-size: 16px;
    }
}



@media (max-width: 1199px) {
    .main-header {
        background: rgba(16, 24, 40, 0.9);
    }

    .navbar-collapse {
        background: #fff;
        padding: 18px;
        border-radius: 24px;
        margin-top: 14px;
        box-shadow: var(--shadow);
    }

    .nav-link {
        color: var(--text) !important;
    }

    .search-toggle {
        color: #fff;
    }

    .brand-mark {
        color: #fff;
    }
}

@media (max-width: 991px) {}

@media (max-width: 767px) {




    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {


    .pin-1 {
        left: 24%;
        top: 34%;
    }

    .pin-2 {
        left: 40%;
        top: 50%;
    }

    .pin-3 {
        left: 58%;
        top: 40%;
    }
}




/* hero section */
.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: 1s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.content {
    position: absolute;
    left: 60px;
    bottom: 300px;
    max-width: 650px;
    color: #fff;
    z-index: 2;
}

.content h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.content p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* .btn{
    display:inline-block;
    padding:15px 35px;
    border:1px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.btn:hover{
    background:#fff;
    color:#000;
} */

.thumbs {
    position: absolute;
    right: 60px;
    bottom: 70px;
    display: flex;
    gap: 15px;
    z-index: 5;
}

.thumb {
    width: 120px;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    opacity: .6;
    transition: .4s;
    border: 2px solid transparent;
}

.thumb.active {
    opacity: 1;
    border-color: #fff;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation {
    position: absolute;
    right: 60px;
    bottom: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.navigation button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.navigation button:hover {
    background: #fff;
    color: #000;

}


.video-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 1;
}

.content {
    position: absolute;
    z-index: 2;
}

/* Tablet */
@media(max-width:991px) {

    .content {
        left: 30px;
        right: 30px;
        bottom: 250px;
    }

    .content h1 {
        font-size: 42px;
    }

    .thumbs {
        right: 30px;
        left: 30px;
        bottom: 70px;
        overflow-x: auto;
    }

    .thumb {
        min-width: 100px;
        height: 150px;
    }

    .navigation {
        right: 30px;
    }
}

/* Mobile */
@media(max-width:576px) {

    .content {
        left: 20px;
        right: 20px;
        bottom: 240px;
    }

    .content h1 {
        font-size: 30px;
    }

    .content p {
        font-size: 18px;
    }

    .thumb {
        min-width: 80px;
        height: 120px;
    }

    .navigation button {
        width: 45px;
        height: 45px;
    }
}


.video-slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-slide {
    background: #000;
}





/* about us page css */

.about-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background: url('./image/arco1-1024x783.jpg') center center/cover no-repeat;
    overflow: hidden;
}

/* Overlay */
.about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

/* Content */
.about-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.about-banner-text {
    max-width: 600px;
    color: #fff;
}

.about-banner-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-banner-description {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Breadcrumb */
.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.about-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.about-breadcrumb a:hover {
    color: #d4af37;
}

.about-breadcrumb i {
    font-size: 16px;
}

/* Tablet */
@media (max-width:991px) {

    .about-banner {
        min-height: 450px;
    }

    .about-banner-title {
        font-size: 3rem;
    }

    .about-banner-description {
        font-size: 1.15rem;
    }

    .about-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.new-about-profile-image {
    /* background: #003b82; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: auto; */
}

}

/* Mobile */
@media (max-width:767px) {

    .new-about-profile-image {
    background: #003b82;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.about-banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

    .about-banner {
        height: 450px;
    }

    .about-banner-content {
        padding-bottom: 50px;
    }

    .about-banner-title {
        font-size: 2.2rem;
    }

    .about-banner-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .about-breadcrumb {
        font-size: 13px;
    }

}



/* About Section */

.new-about-profile-section {
    /* height: 120vh; */
    overflow: hidden;
    background-color: #fff;
}

.new-about-profile-image {
    background: #003b82;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.new-about-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.new-about-content-wrapper {
    position: relative;
    padding: 40px;
    display: flex;
    align-items: center;
    /* Vertical Center */
    justify-content: center;
    /* Horizontal Center */
    height: 100%;
    /* min-height: 100vh; */
}

.new-about-quote-box {
    max-width: 900px;
    position: relative;
}

.new-about-quote-text {
    padding: 0px 30px 0px 0px;
    line-height: 1.4;
    color: #333;
}

.new-about-quote-text h2 {
    font-size: 36px;
}

.new-about-quote-text p {
    font-size: 18px;
}

.new-about-quote-text strong {
    font-weight: 700;
}

.new-about-speech-line {
    width: 100%;
    height: 120px;
    margin: 0;
    margin-top: -50px;
}

.new-about-speech-line svg {
    width: 100%;
    height: 100%;
}

.new-about-profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.new-about-profile-info p {
    color: #666;
    margin-bottom: 25px;
}

.new-about-btn-profile {
    border: 1px solid #444;
    padding: 12px 28px;
    border-radius: 8px;
    transition: 0.3s;
}

.new-about-btn-profile:hover {
    background: #222;
    color: #fff;
}

@media (max-width: 991px) {

    .new-about-profile-section {
        min-height: auto;
    }

    .new-about-content-wrapper {
        padding: 40px 25px;
    }

    .new-about-quote-text {
        font-size: 1.5rem;
    }

    .new-about-profile-info h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {

    .new-about-quote-text {
        font-size: 1.2rem;
    }

    .new-about-content-wrapper {
        padding: 30px 20px;
    }

    .new-about-speech-line {
        height: 80px;
    }
}


/* project_devlopment_mission */

.project_devlopment_mission {
    padding: 60px;
}





/* 1991 | A New Beginning */
.timeline-section {
    max-width: 1300px;
    margin: auto;
    padding: 80px 0px;
}

.timeline-card {
    display: flex;
    gap: 50px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: #d4a017;
}

.year-block {
    /* width: 220px; */
    min-width: 220px;
    position: relative;
}

.year {
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
    color: #d4a017;
}

.subtitle {
    margin-top: 10px;
    font-size: 28px;
    font-weight: 600;
    color: #1c1c1c;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: #d4a017;
    border-radius: 50%;
    margin-top: 25px;
    position: relative;
}

.timeline-dot::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: #d4a017;
    opacity: .3;
}

.content-new {
    flex: 1;

}

.content-new p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #555;
}

.content-new strong {
    color: #222;
}

.project_devlopment_about {
    padding: 100px 0px;
}

@media(max-width:768px) {

    .timeline-card {
        flex-direction: column;
        padding: 20px;
        gap: 25px;
    }

    .project_devlopment_about {
    padding: 20px 20px;
}



    .year {
        font-size: 55px;
    }

    .subtitle {
        font-size: 24px;
    }

    .timeline-dot::after {
        display: none;
    }

    .content-new p {
        font-size: 16px;
    }
}





.A_New_Beginning {
    border: 2px solid #d4a017;
}

.entering_Real_Estate_Development {
    padding: 100px 0px;
    background-color: #000;
}



/* about-section_mission */
.about-section_mission {
    padding: 80px 0;
    background: #fff;
}

/* Card Design */
.info-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

/* Top Gradient Effect */
.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e0c27b, #e0c27b);
}

/* Icon Circle */
.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* background:linear-gradient(135deg,#eef5ff,#dcecff); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 28px;
    color: #0d6efd;
}

/* Typography */
.info-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0d2a52;
}

.info-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.info-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Button */
.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0d2a52;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    transition: .3s;
}

.read-btn:hover {
    background: #0d6efd;
    color: #fff;
}

/* Arrow */
.arrow-icon {
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-size: 22px;
    color: #0d2a52;
    transition: .3s;
}

.info-card:hover .arrow-icon {
    transform: translateX(5px);
    color: #0d6efd;
}

/* Responsive */
/* @media(max-width:991px) {
    .info-card {
        margin-bottom: 25px;
    }
} */


.top-bar-new_our h3 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding-bottom: 20px;
}

.top-bar-new_our p {
    font-size: 18px;
    padding-bottom: 40px;
    text-align: center;
}



/* ==========================
   BUSINESS HERO SECTION
========================== */


.business-banner {
    position: relative;
    height: 800px;
    background: url('./image/Businesses.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0px 80px;
}

.business-banner_projects-developments {
    position: relative;
    height: 900px;
    background: url('./image/Projects & Developments_newimg.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0px 80px;
}


.business-banner_contact-us {
    position: relative;
    height: 800px;
    background: url('./image/contact-us.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0px 80px;
}



.business-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
    color: #fff;
}

.banner-content h1 {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-custom a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-custom span {
    color: #fff;
}


/* ==========================
   CONTENT SECTION
========================== */

.business-content {
    padding: 70px 80px;
    background: #fff;
}

.business-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 95%;
    margin-bottom: 35px;
    font-weight: 400;
}


.business-content_project {
    padding: 70px 80px;
    background: #fff;
}

.business-content_project p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 95%;
    margin-bottom: 15px;
    font-weight: 400;
}

.read-more-btn {
    color: #222;
    font-size: 28px;
    font-weight: 300;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.read-more-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #222;
    transition: .4s;
}

.read-more-btn:hover::after {
    width: 50%;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px) {

    .business-banner {
        height: 400px;
    }

    .banner-content h1 {
        font-size: 50px;
    }

    .business-content p {
        font-size: 18px;
    }
}

@media(max-width:767px) {

    .business-banner {
        height: 320px;
    }

    .banner-content {
        padding-bottom: 30px;
    }

    .banner-content h1 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .business-content {
        padding: 50px 0;
    }

    .business-content p {
        font-size: 16px;
        max-width: 100%;
        line-height: 1.7;
    }

    .read-more-btn {
        font-size: 22px;
    }
}



.business-verticals {
    background: #f5f5f5;
    padding: 80px 80px;
}

.section-title_business-content {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    padding-left: 20px;
    background: linear-gradient(135deg,
            #e0c27b 10%,
            /* #f5e6b3 30%,
        #c8a45d 60%, */
            #000000 100%);

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    display: inline-block;
}

/* Card */

.vertical-card_business-content {
    transition: .4s ease;
    padding: 20px;
}

.vertical-card_business-content:hover {
    transform: translateY(-8px);
    background-color: #fff;

}

.img-wrapper_business-content {
    overflow: hidden;
    position: relative;
}

.img-wrapper_business-content img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: all .7s ease;
}

.vertical-card_business-content:hover img {
    transform: scale(1.08);
}

.content_business-content {
    padding-top: 25px;
}

.content_business-content h4 {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

.content_business-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #7a7a7a;
    margin-bottom: 0;
    max-width: 95%;
}

/* Tablet */

@media(max-width:991px) {

    .section-title_business-content {
        font-size: 44px;
    }

    .img-wrapper_business-content img {
        height: 320px;
    }

    .content_business-content h4 {
        font-size: 24px;
    }

    .content_business-content p {
        font-size: 18px;
    }
}

/* Mobile */

@media(max-width:767px) {

    .business-verticals {
        padding: 50px 0px;
    }

    .section-title_business-content {
        font-size: 32px;
    }

    .img-wrapper_business-content img {
        height: 250px;
    }

    .content_business-content {
        padding-top: 18px;
    }

    .content_business-content h4 {
        font-size: 22px;
    }

    .content_business-content p {
        font-size: 16px;
        max-width: 100%;
    }
}


.project_devlopment_bussiness {
    padding: 90px;
}



/* Development Expertise */

.latest-news-section {
    padding: 80px 50px;
}

.news-header-project h2 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-header-project p{
    margin-bottom: 50px;
    font-size: 18px;
}

.view-all-btn {
    padding: 16px 35px;
    border: 1px solid #d3b161;
    text-decoration: none;
    color: #d3b161;
    border-radius: 10px;
    font-size: 18px;
    transition: .3s;
}

.view-all-btn:hover {
    background: #e0c27b;
    color: #fff;
}

/* Swiper */

.newsSwiper {
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

.news-item {
    cursor: pointer;
}

.news-img {
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: .8s;
}

.news-item:hover img {
    transform: scale(1.05);
}

.news-date {
    display: block;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 30px;
    color: #000;
}

.news-item h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    color: #333;
}

/* Arrows */

.news-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 50px;
}

.arrow-btn {
    width: 55px;
    height: 55px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: transparent;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-btn:hover {
    background: #e0c27b;
    color: #fff;
}

@media(max-width:768px) {

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .news-header-project h2 {
        font-size: 40px;
    }

    .news-img img {
        height: 240px;
    }

    .news-item h3 {
        font-size: 22px;
    }

    .news-arrows {
        justify-content: center;
    }
}

.news-header-project_view {
    align-items: end;
    display: flex;
    justify-content: end;
}

.left_arrow_img {
    width: 25px;
    transition:0.3s ease;

}

.arrow-btn:hover .left_arrow_img{
    filter: brightness(0) invert(1);
}


/* Featured Projects */


 .glance-section{
        background:#f3f3f3;
        padding:90px ;
    }

    .glance-title{
     font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

    .glance-section p{
        margin-bottom: 50px;
        font-size: 18px;
    }
    /* Card */
    .glance-card{
        height:100%;
        transition:all .4s ease;
        cursor:pointer;
    }

    .img-wrapper_project{
        overflow:hidden;
        position:relative;
    }

    .img-wrapper_project::before{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(0,0,0,0);
        transition:.4s ease;
        z-index:1;
    }

    .glance-card img{
        width:100%;
        height:280px;
        object-fit:cover;
        transition:transform .7s ease;
    }

    .glance-content{
        padding-top:20px;
    }

    .glance-content p{
        font-size:18px;
        line-height:1.4;
        color:#444;
        margin:0;
        transition:.3s ease;
    }

    /* Hover Animation */
    .glance-card:hover{
        transform:translateY(-12px);
    }

    .glance-card:hover .img-wrapper_project::before{
        background:rgba(0,0,0,.15);
    }

    .glance-card:hover img{
        transform:scale(1.1);
    }

  
    /* Responsive */
    @media (max-width:991px){

        .glance-title{
            font-size:38px;
            margin-bottom:40px;
        }

        .glance-card img{
            width: 100%;
            height:auto;
        }
    }

    @media (max-width:767px){

        .glance-section{
            padding:60px 20px;
        }

        .glance-title{
            font-size:32px;
            margin-bottom:30px;
        }

        .glance-card img{
            width: 100%;
            height:auto;
        }

        .glance-content p{
            font-size:16px;
        }
    }


    

.image-hover{
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.image-hover img{
    width: 100%;
    transition: all 0.6s ease-in-out;
}

.image-hover:hover img{
    transform: scale(1.15);
}




/* Clients & Partners section */

.join-section{
    padding:80px;
}

.join-title{
    font-size:60px;
    font-weight:700;
    color:#333;
    margin-bottom:20px;
}

.join-desc{
    font-size:22px;
    color:#555;
    max-width:750px;
    line-height:1.5;
}

.know-btn{
    border:1px solid #e0c27b;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    color:#333;
    display:inline-block;
    transition:.4s;
}

.know-btn:hover{
    background:#e0c27b;
    color:#fff;
}

/* Cards */

.cards-wrapper{
    display:flex;
    gap:20px;
    margin-top:50px;
    height:620px;
}

.join-card{
    flex:1;
    position:relative;
    overflow:hidden;
    cursor:pointer;
    border-radius:8px;
    transition:flex .8s cubic-bezier(.25,.46,.45,.94);
}

.join-card.active{
    flex:5;
}

.join-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 1s ease;
}

.join-card:hover img{
    transform:scale(1.08);
}

.join-card.active img{
    transform:scale(1.05);
}

.overlay-clients {
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:30px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.55),
        transparent
    );
}

.content-clients {
    color:#fff;
    opacity:0;
    transform:translateY(30px);
    transition:.5s ease;
}

.join-card.active .content-clients {
    opacity:1;
    transform:translateY(0);
    transition-delay:.25s;
}

.content-clients  h4{
    font-size:34px;
    font-weight:600;
    margin-bottom:10px;
}

.content-clients  p{
    font-size:16px;
    max-width:600px;
    margin-bottom:15px;
}

.arrow-clients {
    width:45px;
    height:45px;
    border:1px solid rgba(255,255,255,.4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content :center;
    font-size:20px;
    transition:.4s;
}

.arrow-clients:hover{
    background-color: #e0c27b;
}

.join-card:hover .arrow-clients {
    transform:translateX(6px);
}

.progress-line{
    position:absolute;
    left:0;
    bottom:0;
    height:3px;
    width:0;
    background:linear-gradient(90deg,#745716,#e0c27b);
}

.join-card.active .progress-line{
    animation:progress 5s linear infinite;
}

@keyframes progress{
    from{
        width:0;
    }
    to{
        width:100%;
    }
}

/* Responsive */

@media(max-width:991px){

    .join-title{
        font-size:42px;
    }

    .join-desc{
        font-size:18px;
    }

    .cards-wrapper{
        flex-direction:column;
        height:auto;
    }

    .join-card{
        height:250px;
        flex:none !important;
    }

    .join-card.active{
        height:450px;
    }

    .content-clients {
        opacity:1;
        transform:none;
    }

    .content-clients  h4{
        font-size:26px;
    }
}

@media(max-width:576px){

    .join-section{
        padding:50px 0;
    }

    .join-title{
        font-size:34px;
    }

    .join-desc{
        font-size:16px;
    }

    .join-card{
        height:250px;
    }

    .join-card.active{
        height:350px;
    }

    .overlay-clients {
        padding:20px;
    }

    .content-clients  h4{
        font-size:22px;
    }

    .content-clients  p{
        font-size:14px;
    }
}



/* View Current Developments */

.operations-section{
    background:#f5f5f5;
    padding: 80px;
}

.operation-card{
    cursor:pointer;
    padding: 20px;
    transition: 0.5s;
}

.operation-card:hover{
    background-color: #fff;
}

.img-box{
    overflow:hidden;
    height:520px;
    position:relative;
}

.img-box img{
    width:100%;
    height: auto;
    /* height:100%; */
    object-fit:cover;
    transition:
    transform .8s cubic-bezier(.22,.61,.36,1),
    filter .8s ease;
}


.operation-card.active .img-box img{
    transform:scale(1.08);
}

.operation-card:not(.active) .img-box img{
    transform:scale(1);
    filter:brightness(.9);
}

.content-development{
    padding-top:25px;
}

.content-development h3{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}

.content-development p{
    font-size:20px;
    line-height:1.8;
    color:#666;
}

/* Hover */

.operation-card:hover .img-box img{
    transform:scale(1.05);
}

/* Tablet */

@media(max-width:991px){

    .img-box{
        height:400px;
    }

    .content-development h3{
        font-size:34px;
    }

    .content-development p{
        font-size:18px;
    }
}

/* Mobile */

@media(max-width:767px){

    .img-box{
        height:auto;
    }

    .content-development h3{
        font-size:28px;
    }

    .content-development p{
        font-size:16px;
        line-height:1.7;
    }
}

.chapters{
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-chapters {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #c8a96a, #e5c07b);
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(200, 169, 106, 0.3);
}

.btn-chapters:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200, 169, 106, 0.5);
    background: linear-gradient(135deg, #b8914d, #d8b06a);
}

.btn-chapters:active {
    transform: translateY(0);
}




/* Mobile Devices (up to 767px) */
@media (max-width: 767px) {
    .navbar-brand .logo {
    width: auto;
    height: 60px;
    object-fit: contain;
}

.hero-slider {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

    .thumb {
        min-width: 50px;
        height: 70px;
    }

        .navigation button {
        width: 35px;
        height: 35px;
    }

    .BUSINESSES_section {
    /* max-width: 1600px; */
    margin: auto;
    padding: 50px 10px;
}

.project_devlopment{
  margin: auto;
    padding: 50px 20px;

}


.top-bar {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin-bottom: 20px;
}

.top-bar-new_home h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-text h2 {
    font-size: 32px;
}

.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.86);
    padding: 70px 80px 26px 80px;
}

.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.86);
    padding: 50px 20px 50px 20px;
}

.bottom-content {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 25px;
    z-index: 3;
}

.new-about-quote-text h2 {
    font-size: 28px;
}

.new-about-quote-text {
    padding: 0px 0px 0px 0px;
    line-height: 1.4;
    color: #333;
}

.new-about-speech-line {
    width: 100%;
    height: 80px;
    margin: 0;
    margin-top: -30px;
}

.timeline-section {
    max-width: 1300px;
    margin: auto;
    padding: 50px 20px;
}
    .showcase {
        min-height: 520px;
    }
    .entering_Real_Estate_Development {
    padding: 50px 0px;
    background-color: #000;
}

.about-section_mission {
    padding: 50px 0;
    background: #fff;
}

.top-bar-new_our h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: start;
    padding-bottom: 20px;
}

.top-bar-new_our p {
    font-size: 18px;
    padding-bottom: 40px;
    text-align:start;
}

.top-bar h2, .top-bar-new h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.business-banner {
    position: relative;
    height: 800px;
    background: url(./image/Businesses.jpg) center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0px 20px;
}
 

.project_devlopment_bussiness {
    padding: 50px 20px;
}


.business-banner_projects-developments {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0px 20px;
}

.business-content_project {
    padding: 50px 20px;
    background: #fff;
}

.business-content_project p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 95%;
    margin-bottom: 15px;
    font-weight: 400;
}

.top-bar-new_homeproject h2 {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e0c27b;
    background: linear-gradient(135deg, #e0c27b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.latest-news-section {
    padding: 50px 20px;
}

.news-header-project p {
    margin-bottom: 20px;
    font-size: 18px;
}

.news-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 0px;
}

.news-header-project_view {
    align-items: start;
    display: flex;
    justify-content: start;
    margin-bottom: 25px;
}

.operation-card {
    cursor: pointer;
    padding: 0px;
    transition: 0.5s;
}

.operations-section {
    background: #f5f5f5;
    padding: 50px 20px;
}

.profile-section {
    height: auto;
    overflow: hidden;
    background-color: #fff;
}

.speech-line {
    width: 100%;
    height: 80px;
    margin: 0;
    margin-top: -20px;
}

.quote-text {
    padding: 0px;
    line-height: 1.4;
    color: #333;
}

.showcase {
    position: relative;
    height: 435px;
    min-height: 655px;
    overflow: hidden;
}

.top-bar-new_our_chapters {
    margin-bottom: 30px;
    width: auto;
}

}





/* Contact Us  */

.contact-section{
    background:#ffff;
    padding: 80px;
}

.contact-form{
    background:#fff;
    padding:30px 30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form h2{
    font-weight:700;
}

.form-control{
    height:55px;
    border-radius:10px;
}

textarea.form-control{
    height:auto;
}

.btn-dark{
    height:55px;
    border-radius:10px;
    font-weight:600;
}