:root {
    --bs-primary: #0a58ca;
    --bs-secondary: #f59e0b;
    --bs-dark: #0f172a;
    --bs-light: #f8fafc;
    --premium-blue: #2563eb;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0a58ca 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(15, 23, 42, 0.85); /* Premium Dark Slate Glass */
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    background-color: var(--bs-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--bs-dark);
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/




/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

/*** Fact Start ***/
.fact-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
}

.fact-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.counter-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 15px;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.counter-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
    color: #fff;
}

.counter-content h5 {
    color: #94a3b8;
    font-size: 15px;
    margin-top: 5px;
    font-weight: 500;
}

/*** Fact End ***/

/*** Navbar Start ***/
.navbar {
    transition: 0.5s;
    padding: 15px 0;
    margin: 0 !important;
}

.sticky-top {
    top: -100px;
    transition: 0.5s;
}

.sticky-top {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar .navbar-brand h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: 0.5s;
    letter-spacing: 1px;
}

.sticky-top .navbar-brand h1 {
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15px;
    background-color: var(--bs-secondary);
    transition: 0.3s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Header Animations ***/
.animate-logo {
    animation: logoSlideIn 0.8s ease-out forwards;
}

.animate-nav-item {
    opacity: 0;
    animation: navItemSlideUp 0.6s ease-out forwards;
}

.animate-contact {
    animation: contactSlideIn 0.8s ease-out forwards;
}

@keyframes logoSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes navItemSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stagger delays for nav items */
@media (min-width: 992px) {
    .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }
}

/* Contact Phone Hover Effect */
.contact-phone-glow {
    transition: all 0.3s ease-in-out;
    display: inline-block;
    cursor: pointer;
}

.contact-phone-glow:hover {
    transform: scale(1.03);
    color: var(--bs-secondary) !important;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

/*** Page Header Start ***/
.page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    padding: 160px 0 100px 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.page-header h1 {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-secondary);
}

.breadcrumb-item a {
    color: #94a3b8;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: #fff;
}
/*** Page Header End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
    height: 100vh;
    min-height: 400px;
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.carousel-caption h1 {
    font-weight: 700;
    letter-spacing: 1px;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 30px;
    padding: 15px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 30px;
    padding: 15px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }

    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 36px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 450px;
    }

    .carousel-item img {
        min-height: 450px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
        margin-bottom: 15px !important;
        padding: 0 10px;
    }

    .carousel-caption .carousel-content a button {
        padding: 10px 15px !important;
        font-size: 14px;
        margin-bottom: 10px;
        width: 100%;
        display: block;
    }

    .carousel-caption .carousel-content a button a {
        padding: 0 !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/Gemini_Generated_Image_4yaz5u4yaz5u4yaz.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.services-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.services-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.services-item:hover::before {
    transform: scaleX(1);
}

.services-content-icon i {
    font-size: 60px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.5s;
}

.services-item:hover .services-content-icon i {
    transform: scale(1.1) rotate(5deg);
}

.services-item h4 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    transition: 0.5s;
}

.services-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    transition: 0.5s;
}

.services-item:hover h4 {
    color: var(--bs-primary);
}

/*** Services End ***/
/*** Real Estate Start ***/
.real-estate-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.real-estate-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.real-estate-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.real-estate-text h2 {
    font-size: 16px;
    color: var(--bs-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    margin-bottom: 15px;
}

.real-estate-text h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
}

.real-estate-text p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 550px;
}

.real-estate-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.metric-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
    min-width: 140px;
}

.metric-item h4 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 5px;
}

.metric-item span {
    color: #64748b;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.real-estate-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.real-estate-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s;
}

.real-estate-visual:hover img {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 50%);
}

.real-estate-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 60px;
    width: 100%;
}

.real-estate-services .service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
    text-align: left;
}

.real-estate-services .service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: rgba(0, 242, 254, 0.2);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card:hover .service-card-icon {
    background: #00f2fe;
    color: #0f172a;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.service-card h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .real-estate-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .real-estate-services {
        grid-template-columns: 1fr;
    }
}
/*** Real Estate End ***/

/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;

}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}

.blog-icon-1 {
    position: relative;
    top: -4px;
}

.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/

.pdf-viewer {
    padding: 60px 10%;
    background: #f5f5f5;
    text-align: center;
}

.pdf-container {
    width: 100%;
    height: 700px;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
}



/*** Contact Start ***/
.contact-glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 40px;
    transition: 0.4s;
    height: 100%;
}

.contact-glass-panel:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 242, 254, 0.2);
    transform: translateY(-5px);
}

.contact-icon-glow {
    width: 80px;
    height: 80px;
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.contact-glass-panel:hover .contact-icon-glow {
    background: #00f2fe;
    color: #0f172a;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
    transform: rotate(5deg) scale(1.1);
}

.contact-glass-panel h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-glass-panel p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Premium Form Styles */
.contact-glass-panel .form-control {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 15px;
}

.contact-glass-panel .form-floating label {
    color: #64748b;
}

.contact-glass-panel .form-control:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: #00f2fe !important;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2) !important;
}

.contact-glass-panel .form-floating > .form-control:focus ~ label,
.contact-glass-panel .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #00f2fe;
}

.btn-premium-send {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-premium-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.btn-premium-send::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.btn-premium-send:hover::after {
    transform: scale(1);
}
/*** Contact End ***/


.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.whatsapp-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 260px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 999;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}


.map-btn {
    display: inline-block;
    background: #4285F4;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.map-btn:hover {
    background: #2b6adf;
    transform: scale(1.05);
}

.popup-header {
    background: #25D366;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
}

.popup-body {
    padding: 15px;
    text-align: center;
}

.contact-area {
    padding: 70px 10%;
    background: #f5f7fb;
    text-align: center;
    font-family: Arial;
}

.contact-area h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 18px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: #ff6a00;
    color: white;
}

/*** About Start ***/
.about-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-img {
    position: relative;
    padding-right: 15%;
    padding-bottom: 15%;
}

.main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border: 12px solid #fff;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.second-img {
    position: absolute;
    width: 75%;
    bottom: 0;
    right: 0;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.25);
    border: 12px solid #fff;
    z-index: 2;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.about-img:hover .main-img {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
}

.about-img:hover .second-img {
    transform: perspective(1000px) rotateY(5deg) translate(15px, -20px);
    box-shadow: 0 50px 100px rgba(15, 23, 42, 0.35);
}

.about-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--bs-dark);
}

.about-subtitle {
    font-size: 14px;
    color: var(--bs-primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.about-features-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.feature-badge-minimal {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 15px;
    transition: 0.4s;
}

.feature-badge-minimal:hover {
    background: #fff;
    border-color: var(--bs-primary);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
    transform: translateY(-5px);
}

.feature-badge-minimal i {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-badge-minimal span {
    font-weight: 700;
    color: #334155;
    font-size: 15px;
}

.about-btn-premium {
    background: #0f172a;
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s;
    border: none;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.about-btn-premium:hover {
    background: var(--bs-primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}
/*** About End ***/

/*** Team Start ***/

.team-section {
    padding: 100px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.team-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.team-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
    letter-spacing: 1px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 280px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 10px;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-card img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #fdfdfd;
    border-radius: 15px;
    transition: 0.5s;
}

.team-card:hover img {
    transform: scale(1.1);
}

.team-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.team-card:hover::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .team-container {
        gap: 20px;
    }
    .team-card {
        width: 100%;
        max-width: 320px;
    }
}

/*** Team End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    color: #94a3b8;
    padding-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer .btn-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
    font-weight: 500;
}

.footer .btn-link:hover {
    color: #fff;
    letter-spacing: 1px;
    padding-left: 5px;
}

.footer .btn-social {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
    margin-right: 10px;
}

.footer .btn-social:hover {
    background: var(--gradient-primary);
    border-color: var(--bs-primary);
    transform: translateY(-5px);
}

.copyright {
    padding: 30px 0;
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
}

.copyright a {
    color: #fff;
}
/*** Footer End ***/

/*** Real Estate Start ***/
.real-estate-section {
    padding: 100px 0;
    background: var(--bs-dark);
    overflow: hidden;
}

.real-estate-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.real-estate-text h2 {
    font-size: 56px; /* Scaled Up for Impact */
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.real-estate-text h3 {
    font-size: 20px; /* Scaled Down for Professional Sub-header */
    font-weight: 600;
    color: var(--bs-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.real-estate-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 40px;
}

/* Metrics */
.real-estate-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-item h4 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
}

.metric-item span {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

/* Service Cards */
.real-estate-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.service-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.service-card-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.service-card p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Visual Box */
.real-estate-visual-box {
    position: relative;
}

.real-estate-visual {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
}

.real-estate-visual img {
    width: 100%;
    transition: 0.8s;
}

.real-estate-visual:hover img {
    transform: scale(1.1) rotate(2deg);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(15,23,42,0.4));
}

.real-estate-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: var(--bs-dark);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s;
    box-shadow: 0 20px 40px rgba(15,23,42,0.2);
}

.real-estate-btn:hover {
    transform: translateY(-5px);
    background: var(--bs-primary);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 991px) {
    .real-estate-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .real-estate-metrics {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .real-estate-services {
        grid-template-columns: 1fr; /* Force single column on tablets and mobile */
        gap: 30px;
    }
    .real-estate-text h2 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .real-estate-section {
        padding: 60px 0;
    }
    .real-estate-text h2 {
        font-size: 32px; /* Scale down for mobile phones */
    }
    .real-estate-text h3 {
        font-size: 16px;
        letter-spacing: 2px;
    }
    .real-estate-metrics {
        padding: 20px;
        gap: 30px;
    }
    .metric-item h4 {
        font-size: 28px;
    }
}
/*** Real Estate End ***/

/*** Brochure Viewer Start ***/
.pdf-viewer {
    background: var(--bs-dark);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pdf-viewer h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pdf-viewer p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.pdf-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.pdf-container iframe {
    width: 100%;
    height: 800px;
    border-radius: 10px;
}

.brochure-btn-premium {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    border: none;
    margin-top: 30px;
}

.brochure-btn-premium i {
    font-size: 20px;
}

.brochure-btn-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
    color: #fff;
}

@media (max-width: 991px) {
    .pdf-container {
        display: none; /* Hide heavy iframe on mobile for performance and compatibility */
    }
    
    .pdf-viewer {
        padding: 60px 20px;
    }
    
    .pdf-viewer h2 {
        font-size: 32px;
    }
}
/*** Brochure Viewer End ***/
/* ==========================================================================
   PREMIUM FINTECH ANIMATIONS & HERO SOCIAL
   ========================================================================== */

/* Hero Social Sidebar */
.hero-social-sidebar {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.social-icon-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0; 
    transform: translateY(20px);
}

.social-icon-link:hover {
    transform: scale(1.1) !important;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.social-icon-link:active {
    transform: scale(0.95) !important;
}

/* Brand Colors on Hover */
.social-icon-link.instagram:hover { color: #E1306C; box-shadow: 0 0 20px rgba(225, 48, 108, 0.3); }
.social-icon-link.facebook:hover { color: #1877F2; box-shadow: 0 0 20px rgba(24, 119, 242, 0.3); }
.social-icon-link.linkedin:hover { color: #0A66C2; box-shadow: 0 0 20px rgba(10, 102, 194, 0.3); }
.social-icon-link.whatsapp:hover { color: #25D366; box-shadow: 0 0 20px rgba(37, 211, 102, 0.3); }

/* GSAP Text Reveal Helper Classes */
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

/* SplitText Masking */
.text-mask {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}

/* Soft Fintech Hover Effects */
.btn-premium, .nav-link, .services-item, .team-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.services-item:hover, .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Responsive Social Sidebar */
@media (max-width: 991px) {
    .hero-social-sidebar {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 30px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 15px;
    }
}

/* Global Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Youtube Background Section */
.yt-video-container {
    position: relative;
    width: 100%;
    height: 60vh; /* Controlled height for the section */
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.yt-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Ensure the iframe covers the area nicely */
.yt-video-bg iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2); /* Zoom effect added */
    pointer-events: none;
}

.yt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
    z-index: 2;
}

.yt-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
}

.yt-content h1 {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--bs-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInScale 1.5s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Carousel YouTube Background */
.carousel-yt-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.carousel-yt-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%) scale(1.3); /* Slightly more zoom for full screen */
}

.carousel-yt-bg iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5));
    z-index: 1;
}

/* Ensure carousel caption stays above everything */
.carousel-caption {
    z-index: 2;
}

/* --- Luxury Hero Section Styles --- */
.luxury-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
    width: 100%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.luxury-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c8a96a;
    margin-bottom: 20px;
    animation: fadeUpLuxury 1.2s ease-out forwards;
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff !important;
    margin-bottom: 20px;
    animation: fadeUpLuxury 1.2s ease-out 0.2s forwards;
    opacity: 0;
}

.luxury-title span {
    background: linear-gradient(90deg, #c8a96a, #f5e6c4, #c8a96a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.luxury-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #d1d1d1;
    max-width: 650px;
    margin: 0 auto 30px auto;
    animation: fadeUpLuxury 1.2s ease-out 0.4s forwards;
    opacity: 0;
}

.luxury-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #c8a96a;
    color: #c8a96a !important;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: transparent;
    animation: fadeUpLuxury 1.2s ease-out 0.6s forwards;
    opacity: 0;
}

.luxury-btn:hover {
    background: #c8a96a;
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 169, 106, 0.2);
}

@keyframes fadeUpLuxury {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .luxury-title {
        font-size: 56px;
    }
}

@media (max-width: 767px) {
    .luxury-title {
        font-size: 38px;
    }
    .luxury-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }
}


