* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Times New Roman', Times, serif, Tahoma, Geneva, Verdana, sans-serif Arial, Helvetica, sans-serif;

}

h3 {
    color: #0B1C2D;
}

.dropdown-menu {
    width: 250px;
    background-color: #0B1C2D;
    height: auto;
    color: white;
}

.dropdown-item {
    color: #C9A14A;
}

/* .announcement-bar {
    background: #623A62FF;
    color: white;
    overflow: hidden;

    white-space: nowrap;
}

.announcement-text {
    animation: marquee 18s linear infinite;
}

@media(max-width:768px) {
    .announcement-text {
        animation-duration: 20s;
        font-size: 14px;
    }
}

@keyframes marquee {
    from {
        transform: translateX(-10%);
    }

    to {
        transform: translateX(100%);
    }
} */


.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    transition: all .4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.team-card img {
    border-radius: 50%;
    height: 150px;
    width: 150px;
    object-fit: cover;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.custom-navbar .navbar-toggler {
    border: 1px solid #fff;
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.custom-navbar.sticky .navbar-toggler {
    border: 1px solid #000;
}

.custom-navbar.sticky .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler,
.navbar-toggler-icon {
    transition: all 0.3s ease;
}

.navbar-toggler.open .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler.open .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.open .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.custom-navbar.sticky .navbar-toggler-icon,
.custom-navbar.sticky .navbar-toggler-icon::before,
.custom-navbar.sticky .navbar-toggler-icon::after {
    background-color: #000;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 26px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 2px;
    background-color: inherit;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.custom-navbar {
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.38);
    transition: all 0.4s ease;
    z-index: 999;
}

/* Menu text white (default) */
.custom-navbar .nav-link {
    color: #fff !important;
}

.custom-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Sticky menu text black */
.custom-navbar.sticky .nav-link {
    color: #000 !important;
}
.custom-navbar.sticky p {
    color: black !important;
}
/* Mobile dropdown menu background */
@media (max-width: 991px) {

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.85);
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }

    html,
    body {
        overflow-x: hidden;
    }

    /* Mobile menu text white */
    .navbar-collapse .nav-link {
        color: #fff !important;
    }

    /* Sticky mobile menu background */
    .custom-navbar.sticky .navbar-collapse {
        background: #fff;
    }

    /* Sticky mobile menu text black */
    .custom-navbar.sticky .navbar-collapse .nav-link {
        color: #000 !important;
    }

    /* Center menu items */
    .menu {
        text-align: center;
    }
}

.menu li .nav-link {
    padding: 10px 15px;
    transition: 0.3s ease;
}

.menu li .nav-link:hover {
    background: #1a4066;
    color: #C9A14A !important;
    border-radius: 8px;
}


/* ===== SLIDE ANIMATION ===== */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.cssimage a img {
    --s: 100%;
    --b: 8px;
    /* the border thickness*/
    --g: 2px;
    /* the gap */
    --c: rgba(83, 3, 105, 0.773);
    /* the color */

    width: var(--s);
    aspect-ratio: 1;
    outline: calc(var(--s)/2) solid #0009;
    outline-offset: calc(var(--s)/-2);
    cursor: pointer;
    transition: .3s;
    z-index: 0;
}

.cssimage a img:hover {
    outline: var(--b) solid var(--c);
    outline-offset: var(--g);

}

/* ===== BODY OFFSET WHEN STICKY ===== */
body.nav-fixed {
    padding-top: 80px;
    /* navbar height */
}

/* carousel */
.carousel-item {
    height: 100vh;
}

.carousel-img {
    position: relative;
    height: 100%;
}

.carousel-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Black gradient overlay */
.carousel-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.3));
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px 18px;
    border-radius: 50%;
    z-index: 999;
    text-decoration: none;
}

.carousel-item {
    transition: transform 0.8s ease-in-out;
}

/* Property Card */

.property-track .property-card {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

/* ================= CREATIVE ENHANCEMENTS ================= */
.property-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.property-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.property-card {
    position: relative;
    background: linear-gradient(145deg, #C9A14A, #e0effd);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.18),
        inset 0 0 0 1px rgba(119, 119, 119, 0.6);
    transition: all 0.6s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.28);
}

/* IMAGE HOVER EFFECT */
.property-img-wrap {
    position: relative;
    overflow: hidden;
}

.property-img-wrap img {
    transition: transform 1.2s ease, filter 1.2s ease;

    height: 500px;
    width: auto;
}

.property-card:hover .property-img-wrap img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* GLASS OVERLAY */
.property-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 20px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.property-img-wrap:hover .property-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* GOLD PRICE BADGE */
.price-badge {
    background: linear-gradient(135deg, #c9a24d, #f5e38a);
    color: #000;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 20px rgba(201, 162, 77, 0.45);
    align-self: flex-start;
}



.property-overlay h4 {
    font-size: 22px;
    top: 0;
    color: #fff;
    text-align: center;

}

.property-overlay p {
    font-size: 14px;
    opacity: 0.95;
    color: #fff;
    text-align: center;
top: 0;
}

.property-overlay .btn {
    border-radius: 30px;
    padding: 6px 18px;
}


/* CONTENT SIDE DESIGN */
.property-info {
    position: relative;
    background: linear-gradient(to right,
            #0B1C2D,
            #163a5e);
}

/* GOLD ACCENT BAR */
.property-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35px;
    width: 4px;
    height: 90px;
    background: linear-gradient(to bottom, #c9a24d, #f5e38a);
    border-radius: 10px;
}

/* TITLE */
.property-info h3 {
    font-size: 28px;
    letter-spacing: 0.4px;
    padding-left: 16px;
    color:#C9A14A;
}

/* LIST */
.property-info ul li {
    padding-left: 16px;
    position: relative;
}

.property-info ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #c9a24d;
}

/* BUTTON UPGRADE */
.property-info .btn {
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: all 0.4s ease;
}

.property-info .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* SLIDER BUTTON PREMIUM */
.slider-btn {
    background: linear-gradient(135deg, #111, #333);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #c9a24d, #f5e38a);
    color: #000;
}

/* MOBILE REFINEMENT */
@media (max-width: 991px) {
    .property-info::before {
        display: none;
    }

    .property-info h3 {
        padding-left: 0;
        font-size: 22px;
    }

    .property-info ul li {
        padding-left: 0;
    }

    .property-info ul li::before {
        display: none;
    }
}

.coming-soon {
    text-align: center;
    padding: 60px 20px;
    background: #f7f7f7;
    border-radius: 12px;
}

.coming-soon h3 {
    font-size: 28px;
    font-weight: 600;
    color: #555;
}

.coming-soon p {
    font-size: 16px;
    color: #888;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(83, 3, 105, 0.773);
    color: #fff;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-btn:hover {
    background: #ffffff;
    color: rgba(83, 3, 105, 0.773);
}

.slider-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots span.active {
    background: #000;
}

.main-image {
    overflow: hidden;
    border-radius: 12px;
}

.zoom-img {
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.zoom-img:hover {
    transform: scale(1.2);
}

.thumb-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.thumb-img:hover {
    border: 2px solid #000;
}

/* who we are our mission section */
.mission-vision-section {
    background: #f8f9fa;
}

.mv-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box img {
    width: 36px;
    filter: invert(1);
}

.mv-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.mv-card p {
    color: #555;
    line-height: 1.7;
}

/* Animation */
.animate-left,
.animate-right {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.animate-left.show {
    opacity: 1;
    transform: translateX(0);
}

.animate-right.show {
    opacity: 1;
    transform: translateX(0);
}


/* who we are client feedback */
.testimonial-section {
    background: #f8f9fa;
    overflow: hidden;
}

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    animation: scrollTestimonials 25s linear infinite;
}

.testimonial-wrapper:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 32%;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    line-height: 1.7;
}

.testimonial-card h5 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-card span {
    font-size: 14px;
    color: #777;
}

/* Auto scroll animation */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 80%;
    }
}

/* ===== PAGE LOADER ===== */
#page-loader {
    position: fixed;
    inset: 0;
    background: #f9f9f9;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CENTER */
.loader-wrapper {
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* BUILDING */
.building {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.building span {
    width: 18px;
    height: 60px;
    background: #0B1C2D;
    animation: build 1.4s infinite ease-in-out;
}

.building span:nth-child(2) {
    animation-delay: 0.2s;
}

.building span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes build {

    0%,
    100% {
        height: 20px;
        opacity: 0.4;
    }

    50% {
        height: 60px;
        opacity: 1;
    }
}

/* TEXT */
#page-loader p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #555;
}

/* Our Partners */
.partners-title {
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.partners-title span {
    color: #C9A14A;
}

.partners-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
}

.partners-grid {
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
}

.partner-box {
    height: 140px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.partner-box img {
    max-width: 80%;
    max-height: 70px;
    object-fit: contain;

    transition: 0.3s ease;
}

.partner-box:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Footer */

.footer-area {
    background: #000000;
    color: #dcdde1;
    padding: 70px 0 0;
    font-size: 15px;
}

.footer-area p {
    color: #C9A14A;
}

.footer-title {
    color: #C9A14A;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #C9A14A;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.property-section h3::after {
    content: "";
    width: 140px;
    height: 3px;
    background: #C9A14A;
    left: 10px;
    position: absolute;
    top: 35px;

}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #dcdde1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #C9A14A;
}

.footer-contact i {
    color: #F8F9FA;
    margin-right: 10px;
}

.feed-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.feed-item i {
    color: #F8F9FA;
    font-size: 18px;
}

.feed-item a {
    color: #F8F9FA;
    text-decoration: none;
    display: block;
}

.feed-item span {
    font-size: 13px;
    color: #F8F9FA;
}

.newsletter-form input {
    background: #0B1C2D;
    border: 1px solid #C9A14A;
    color: #C9A14A;
    padding: 12px;
}

.newsletter-form input::placeholder {
    color: #C9A14A;
}

.footer-bottom {
    border-top: 1px solid #C9A14A;
    margin-top: 50px;
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
}

.social-icons a {
    color: #C9A14A;
    margin-left: 15px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: C9A14A;
}

.social-icons {
    display: flex;




}

.social-icons li {
    list-style: none;
}

.social-icons li a {
    width: 40px;
    height: 40px;
    background-color: #000000;
    text-align: center;
    line-height: 35px;
    font-size: 25px;
    margin: 0 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #C9A14A;
    z-index: 1;
}

.social-icons li a .icon {
    position: relative;
    color: #ffffff;
    transition: .5s;
    z-index: 3;
}

.social-icons li a:hover .icon {
    color: #ffffff;
    transform: rotateY(360deg);
}

.social-icons li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C9A14A;
    transition: .5s;
    z-index: 2;
}

.social-icons li a:hover:before {
    top: 0;
}

.social-icons li :nth-child(1) a:before {
    background: #3b5999;
}

.social-icons li :nth-child(2) a:before {
    background: #55acee;
}

.social-icons li :nth-child(3) a:before {
    background: #0077b5;
}

.social-icons li :nth-child(4) a:before {
    background: #dd4b39;
}