:root {
    --primary: #3778c9;
    --secondary: #7ec960;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    color: #111;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}
.text-dark{
    color: black !important;
}

.bg-primary {
    background-color: var(--primary);
}

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

.primary-btn {
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    padding: 11px 24px;
    transition: all 0.3s;
    background-color: white;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.primary-btn:hover {
    background-color: var(--primary);
    color: white;
}

.secondary-btn {
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    padding: 11px 24px;
    transition: all 0.3s;
    background-color: white;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

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

.mr-4 {
    margin-right: 2rem !important;
}

.ml-4 {
    margin-left: 2rem !important;
}

/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
}



.nav {
    max-width: 1200px;
    margin: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav ul li a {
    text-decoration: none;
    color: var(--primary);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 600;
}

.nav ul li a:hover {
    color: var(--secondary);
}

.nav-btn {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

ul.nav-links {
    margin-bottom: 0rem !important;
}

/* ================= HERO ================= */


  #heroSlider .carousel-item {
    height: 100vh; /* Full viewport height */
    position: relative;
  }

  #heroSlider .carousel-item img {
    object-fit: cover;
    height: 100%;
  }

  /* Centered Caption Box */
  #heroSlider .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;

    padding: 2rem;
    border-radius: 12px;
  }

  @media (max-width: 768px) {
    #heroSlider .carousel-caption h1 {
      font-size: 2rem;
    }
    #heroSlider .carousel-caption p {
      font-size: 1rem;
    }
    #heroSlider .carousel-caption .btn {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
    }
  }

/* ================= CONTROLS ================= */
.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 4px 16px;
    border-radius: 50%;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }
    
    .footer-logo img{
        margin-top:100px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

   .footer-box:nth-child(1),.footer-box:nth-child(2){
        margin-top:100px;
    }
}

.logo-img {
    height: 50px;
    width: 250px;
}

.about-section {
    padding: 100px 0;
    background: #fff;
    margin-top: 3rem;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.top-sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.top-sub-title .dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.main-title {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 600;
}

.about-head {
    font-size: 18px;
}

.about-desc {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
    max-width: 480px;
}

/* INFO BOX */
.info-box {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.info-box .icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--secondary) 20%, white 80%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--secondary) !important;
}


.info-box:hover .icon {
    background: var(--primary);
}

.info-box .icon i {
    font-size: 28px;
    color: #000;
    transition: color 0.3s ease;
}

.info-box:hover .icon i {
    color: #fff;
}


.info-box h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #0f172a;
}

.info-box p {
    font-size: 14px;
    color: #666;
}

/* RIGHT */
.right-content {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: 12px;
}

.spin-badge {
    position: absolute;
    top: -40px;
    left: -10px;
    width: 120px;
    animation: spin 12s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
    }

    .spin-badge {
        display: none;
    }

    .main-title {
        font-size: 34px;
    }
}

.properties-section {
    padding: 80px 20px;
    background: color-mix(in srgb, var(--secondary) 10%, white 90%);
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}


.bg-title {
    font-size: 80px;
    color: rgba(0, 0, 0, 0.05);
    font-weight: 700;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.sub-title {
    display: block;
    color: #DCA879;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    color: #0f172a;
}

/* Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Slider */
.property-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.property-slider img.active {
    display: block;
}

.property-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.property-slider .prev {
    left: 10px;
}

.property-slider .next {
    right: 10px;
}

/* Content */
.property-content {
    padding: 20px;
}

.property-content h3 {
    margin: 0 0 8px;
    color: var(--primary);
}

.location {
    color: #666;
    font-size: 14px;
}

.features {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.btn {
    background: var(--secondary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
}
.cta-head{
    font-size: 16px;
    font-weight: 600;
    color:white;
}

/* Responsive */
@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
    }

    .bg-title {
        font-size: 50px;
    }
}

/* ================= FOOTER ================= */
.site-footer {
    background: var(--primary);
    color: #cbd5e1;
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-top: 130px;
    padding-top:40px
}

/* Main Footer */
.main-footer {
    padding: 70px 0 40px;
}

.footer-box {
    margin-bottom: 30px;
}

.footer-logo img {
    margin-bottom: 20px;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Titles */
.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--secondary);
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social li a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social li a:hover {
    background: var(--secondary);
    color: #0f172a;
}

/* Newsletter */
.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    height: 46px;
    padding: 0 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 36px;
    padding: 0 20px;
    background: var(--secondary);
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--secondary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links li a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-bottom-links li a:hover {
    color: #DCA879;
}

.footer-bottom p {
    margin: 0;
    text-align: right;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .footer-bottom p {
        text-align: left;
        margin-top: 10px;
    }
    .site-footer{
        padding-top:100px
    }
    .cta-inner{
        border-radius: 0 !important;
    }
}

/* ================= SPECIALITY SECTION ================= */
.speciality-section {
    padding: 100px 20px;
    background: color-mix(in srgb, var(--primary) 15%, white 90%);
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title .bg-title {
    font-size: 80px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.06);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    white-space: nowrap;
}

.section-title .sub-title {
    display: block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 36px;
    color: var(--navy);
    position: relative;
    z-index: 1;
}

.speciality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.speciality-card {
    background: #fff;
    padding: 36px 30px 20px 20px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.speciality-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy), #020617);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.speciality-card:hover::before {
    opacity: 1;
}

.speciality-card * {
    position: relative;
    z-index: 1;
}

.speciality-card .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;   /* IMPORTANT */
    min-height: 60px;  /* IMPORTANT */
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--secondary) 15%, white 80%);
    display: inline-flex; /* safer than flex */
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    color: var(--secondary);
    font-size: 30px;
    box-sizing: border-box;
}


.speciality-card:hover .icon {
    background: var(--primary);
}

.speciality-card .icon i {
    transition: filter 0.4s;
}

.speciality-card:hover .icon i {
    filter: brightness(0) invert(1);
}

.speciality-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 15px;
    transition: 0.3s;
}

.speciality-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    transition: 0.3s;
}

.speciality-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.speciality-card:hover h3,

.speciality-card:hover .speciality-link {
    color: #fff;
}
.speciality-card:hover p{
    color: #64748b;
}

@media (max-width: 992px) {
    .speciality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .speciality-grid {
        grid-template-columns: 1fr;
    }

    .section-title .bg-title {
        font-size: 48px;
        top: -20px;
    }
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
    padding: 100px 20px;
    background: color-mix(in srgb, var(--secondary) 10%,  white 90%);
}

.testimonials-section .section-header h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 10px;
}

.testimonials-section .section-header p {
    color: #64748b;
    font-size: 16px;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.testimonial-card {
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    margin-right: 15px;
}

.star-rating {
    color: #FBBF24;
    margin-bottom: 10px;
}

.testimonial-content {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 13px;
    color: #64748b;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 450px;
        display: flex;
        flex-direction: column;
    }
}

/* ================= DREAM HOME CTA (Elementor-style) ================= */


.cta-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
}


.cta-inner {
    max-width: 1200px;
    padding: 40px 20px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    background: var(--secondary);
    border-radius: 10px;
}
.site-footer,
.footer-main,
.footer-wrap {
    overflow: visible !important; /* ⭐ REQUIRED */
}


.cta-left {
    max-width: 800px;
    position: relative
}

.bg-title-wrap {
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 0
}

.background-title {
    font-size: 72px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    white-space: nowrap
}

.cta-left h2 {
    font-size: 38px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1
}

.cta-left p {
    font-size: 16px;
    color: #666666;
    position: relative;
    z-index: 1
}

.cta-right {
    flex-shrink: 0
}

.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--primary);
    color: white;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .3)
}

@media(max-width:900px) {
    .cta-inner {
        flex-direction: column;
        text-align: center
    }

    .bg-title-wrap {
        left: 50%;
        transform: translateX(-50%)
    }

    .cta-left {
        max-width: 100%
    }
}

/* ===== Numbers Section ===== */
.numbers-section {
    position: relative;
    background: color-mix(in srgb, var(--secondary) 10%, white 90%);
    padding: 100px 0 60px;
    overflow: hidden;
    color: #fff;
}

.numbers-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 45, 0.85);
}

.container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    z-index: 2;
}

/* ===== Section Title ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title .bg-title {
    font-size: 90px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #cfd8e3;
    font-size: 16px;
}

/* ===== Counters Grid ===== */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

/* ===== Counter Card ===== */
.counter-card {
    animation: zoomIn 0.8s ease forwards;
}

.counter-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 6px solid #00c194;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.counter-value {
    font-size: 36px;
    font-weight: 700;
    color: #00c194;
}

.counter-card h4 {
    font-size: 18px;
    font-weight: 600;
}

/* ===== Bottom Shape ===== */
.numbers-shape {
    margin-top: 60px;
    text-align: center;
}

.numbers-shape img {
    max-width: 100%;
}

/* ===== Animations ===== */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title .bg-title {
        font-size: 70px;
    }
}

@media (max-width: 576px) {
    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .counter-circle {
        width: 140px;
        height: 140px;
    }
}

.page-title {
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    transition: background-size 1.5s ease-out, opacity 1s ease;
}

.page-title {
    background-color: var(--primary);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 450px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background-position: center center;
    padding: 120px 0px 0px;
}

.page-title:before {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.4;
}

.text-animation {
    animation: slideInDown 1s ease-out 0.5s both;
}


/*Contact Section */
.contact-sec-title {
    position: relative;
    margin-bottom: 50px;
}

.contact-sec-title h2 {
    color: var(--primary);
    font-size: 30px;
}

.contact-sec-title .text {
    position: relative;
    margin-top: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #666666;
}
.contact-details__info {
    position: relative;
    display: block;
    margin-top: 41px;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.contact-details__info li {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.contact-details__info li .icon {
    height: 80px;
    width: 80px;
    background-color: var(--primary);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 500ms;
}

.contact-details__info li .icon span
 {
    color: white;
    font-size: 25px;
 }

.contact-details__info li + li {
    margin-top: 19px;
}
.contact-details__info li .text {
    margin-left: 30px;
}   
.contact-head{
    font-size: 18px;
    color: var(--secondary);
    font-weight: 500;
    line-height: 1.4em;
}
.contact-text{
    color:#666666;
    text-decoration: none;
}
.map-section {
    position: relative
}

.map {
    height: 550px;
}
.form-control{
    width: 100%;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f8f9fa;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
label{
    font-size: 14px;
    margin-bottom:5px;
    color: #666666;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.auto-container {
    position: static;
    max-width: 1320px;
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

/* Stats Box */
.stats-box {
    background: var(--secondary);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon */
.stats-box i {
    font-size: 2.5rem;
    color: color-mix(in srgb, var(--secondary) 10%, white 90%);
    margin-bottom: 1rem;
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Value */
.stats-box .stats-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111;
    transition: color 0.4s ease;
}

/* Label */
.stats-box .stats-label {
    font-size: 0.95rem;
    color: #666;
}

/* Hover Effects */
.stats-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: var(--primary);
    color: #fff;
}

.stats-box:hover i {
    color: #fff;
    transform: rotate(10deg) scale(1.2);
}

.stats-box:hover .stats-value {
    color: #fff;
}

.stats-box:hover .stats-label {
    color: #f0f0f0;
}
/* Vision, Mission, Values Cards */
.row.g-4.text-center .card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon Styling */
.row.g-4.text-center .card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

/* Card Title */
.row.g-4.text-center .card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.4s ease;
}

/* Card Paragraph */
.row.g-4.text-center .card p {
    font-size: 0.95rem;
    color: #6c757d;
    transition: color 0.4s ease;
}

/* Hover Effect */
.row.g-4.text-center .card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background: var(--primary);
    color: #fff;
}

.row.g-4.text-center .card:hover i {
    color: #fff;
    transform: scale(1.3) rotate(10deg);
}

.row.g-4.text-center .card:hover h3,
.row.g-4.text-center .card:hover p {
    color: #fff;
}

/* Optional: Add a subtle gradient glow effect */
.row.g-4.text-center .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: 0;
}

.row.g-4.text-center .card:hover::before {
    opacity: 0.3;
}

/* Ensure card content is above glow */
.row.g-4.text-center .card * {
    position: relative;
    z-index: 1;
}
.story-section{
    padding:100px 0px;
    background-color: color-mix(in srgb, var(--primary) 10%, white 90%);
}
/* CSS: Listing Grid */
.rtcl-listings {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.product-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-thumb {
  position: relative;
}

.thumbnail-bg {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.listing-link {
  position: absolute;
  inset: 0;
  display: block;
}

.product-type {
  position: absolute;
  top: 10px;
  left: 10px;
}

.listing-type-badge {
  background: #ff5a5f;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  margin-right: 5px;
}

.rtcl-listing-badge-wrap .badge {
  background: #28a745;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 5px;
}

.product-price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,0.9);
  padding: 5px 8px;
  border-radius: 5px;
  font-weight: bold;
}

.product-content {
  padding: 15px;
}

.product-category a {
  font-size: 12px;
  color: #777;
  text-decoration: none;
}

.item-title {
  font-size: 16px;
  margin: 5px 0;
}

.entry-meta li {
  font-size: 12px;
  color: #555;
  list-style: none;
}

.rtcl-listable {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 12px;
}

.product-bottom-content ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 10px 0 0 0;
  list-style: none;
}

.item-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.product-content h3 a {
    text-decoration: none;
    color: var(--primary) !important;
    font-size: 15px;
}
.btn-primary {
  padding: 6px 12px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}
.btn-secondary {
  padding: 6px 12px;
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid var(--secondary);
}
.btn-outline-secondary {
  padding: 6px 12px;
  background: white;
  color: var(--secondary);
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid var(--secondary);
}
.entry-meta{
    padding-left: 0rem !important;
}
.entry-meta li a, .entry-meta li i{
    text-decoration: none;
    color: var(--secondary  );
}
.property-hero {
    background-color: color-mix(in srgb, var(--secondary) 10%, white 90%); /* light gray background */
    padding: 180px 0;
    text-align: center;
    margin-top:50px
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.hero-title .text-primary {
    color: var(--primary); /* Primary color */
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6c757d; /* muted gray */
    max-width: 700px;
    margin: 0 auto 30px;
}

.property-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #6c757d;
    border-radius: 5px;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.filter-btn.active {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.property-gallery {
    background-color: #f8f9fa;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.gallery-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

.overlay h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.overlay p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.view-btn {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background-color: #007bff;
    border-color: #007bff;
}
.project-para{
    color: #666666;
    font-size:13px !important;
}
/* ===== NAVBAR ===== */


.logo-img {
    height: 55px;
}

/* Desktop menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    color: #222;
}

/* Mobile menu icon */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 991px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        display: none;
        border-top: 1px solid #eee;
    }

    .nav-links li {
        border-bottom: 1px solid #eee;
    }

    .nav-links li a {
        padding: 15px 20px;
        display: block;
    }

    /* SHOW MENU */
    .nav-links.active {
        display: flex;
    }
}
.video-section {
    width: 100%;
    padding: 50px 15px;
    background: color-mix(in srgb, var(--primary) 10%, white 90%); /* optional background color */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.video-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.video-text .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.video-container {
    width: 80%;
    max-width: 900px;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .video-text h1 { font-size: 2rem; }
    .video-text p { font-size: 1rem; }
}

@media (max-width: 576px) {
    .video-text h1 { font-size: 1.5rem; }
    .video-text p { font-size: 0.9rem; }
    .video-text .btn { font-size: 0.95rem; padding: 0.5rem 1.5rem; }
    .video-container { width: 95%; }
}
.youtube-short-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px; /* optional max width */
    height: 500px; /* slightly decreased height */
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto 20px; /* center horizontally */
}

.youtube-short-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.spin-badge {
    position: absolute;
    top: -40px;
    left: -4px;
    width: 120px;
    animation: spin 12s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media(max-width: 768px) {
    .youtube-short-wrapper {
        height: 350px; /* shorter for mobile */
    }
    .spin-badge {
        width: 80px;
        top: -20px;
        left: -20px;
    }
}
.about-section {
    background: #f9fafb;
}

/* Badge */
.section-badge {
    display: inline-block;
    background: rgba(126, 201, 96, 0.15);
    color: #4b8f3f;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* Title underline */
.title-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #7ec960, #5fa84a);
    border-radius: 10px;
}

/* Trust points */
.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-weight: 500;
    color: #333;
}

.trust-points span {
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Video Card */
.video-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
}

.video-card iframe {
    width: 100%;
    height: 420px;
}

/* Spin badge */
.spin-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    animation: spin 12s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .video-card iframe {
        height: 260px;
    }
    .spin-badge {
        display: none;
    }
}
a.primary-btn, a.secondary-btn{
    text-decoration: none !important;
}
.story-box {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.story-intro {
    font-size: 1rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 10px;
}

.story-intro span {
    color: #7ec960;
}

.story-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.story-points {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
    margin-left:1.5rem
}

.story-points li {
    position: relative;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.story-points li::before {
    content: "✔";
    position: absolute;
    left: -20px;
    top: 0;
    color: #7ec960;
    font-weight: bold;
}

.story-footer {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .story-box {
        padding: 25px;
    }

    .story-intro {
        font-size: 1.2rem;
    }
}
.carousel-caption {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* subtle overlay */
    padding: 20px;
}

/* Heading */
.carousel-caption h1 {
    font-family: 'Seaweed Script', cursive;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.6);
}

/* Tagline */
.carousel-caption p {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #f1f1f1;
    margin-bottom: 25px;
}

/* Button */
.carousel-caption .btn {
    font-family: 'Poppins', sans-serif;
    padding: 12px 32px;
    font-size: 1rem;
    border-radius: 50px;
    background: #0d6efd;
    border: none;
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    background: #084298;
    transform: translateY(-3px);
}
