:root {
    --primary-color: #0b2c4d;
    --secondary-color: #f2b705;
}
submitbtn body {
    font-family: "Segoe UI", sans-serif;
}

.custom-navbar {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Toggler icon visibility */
.navbar-light .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
    filter: invert(0);
}

/* Offcanvas */
.offcanvas {
    max-width: 280px;
}

.section-title {
    color: var(--primary-color);
}

.icon-box i {
    font-size: 40px;
    color: var(--secondary-color);
}

.tab-pane {
    padding-top: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background-color: #071e33;
}

.whycard {
    background-color: #ffffff;
    box-shadow: 10px 5px 0px 0px #ffc107;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #ffc107 !important;
    color: #000000 !important;
    font-weight: 600;
    border-bottom: 3px solid #000000;
}
.nav-link {
    color: black !important;
}
.hero-section {
    background: linear-gradient(rgba(11, 44, 77, 0.75), rgba(11, 44, 77, 0.75)),
        url("/landing-assets/hero.jpg") center/cover no-repeat;
    border-radius: 20px;
    margin: 20px;
    padding: 60px 20px;
}

.hero-content h1 {
    line-height: 1.2;
}

.search-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
}

.search-card .form-control,
.search-card .form-select {
    border-radius: 10px;
    padding: 10px 12px;
}

.btn-search {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
}

.btn-search:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
}
.metrics-section {
    background-color: #f6f5f2;
}

.metric-card {
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}

.metric-dark {
    background-color: #031834;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* background-image: url('../landing-assets/loanimg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; */
}

.metric-light {
    background-color: #0318342b;
    color: #111;
}

.metric-peach {
    background-color: #ffc1073b;
    color: #111;
}

.metric-bottom {
    margin-top: auto;
}

.metric-image {
    border-radius: 20px;
    overflow: hidden;
}

.metric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .metric-card h1 {
        font-size: 2.5rem;
    }
}

/* Card base */
.whycard {
    border: none;
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.whycard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(11, 44, 77, 0.15);
    cursor: pointer;
}

/* Top accent line */
.whycard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whycard:hover::before {
    opacity: 1;
}

/* Icon styling */
.whycard i {
    color: var(--secondary-color);
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Icon animation on hover */
.whycard:hover i {
    transform: scale(1.15) rotate(3deg);
    color: var(--primary-color);
}

/* Title */
.whycard .card-title {
    color: var(--primary-color);
    margin-top: 10px;
}

/* Text */
.whycard .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section title */
.section-title {
    color: var(--primary-color);
}

/* Responsive spacing fix */
@media (max-width: 768px) {
    .whycard {
        padding: 20px;
    }
}
.antigravity-footer {
    background-color: #061a2f;
    padding: 0px 20px 40px;
}

.antigravity-footer .container {
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    border-radius: 32px;
    padding: 100px 20px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Big brand text */
.footer-brand {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 10px;
    color: #061a2f;
    display: inline-block;
    cursor: default;
}

/* GO part */
.go-text {
    display: inline-block;
    color: var(--secondary-color);
    transition: transform 0.8s ease;
    cursor: pointer;
}

/* Hover effect – ONLY GO moves up slowly */
.antigravity-footer .container:hover .go-text {
    transform: translateY(-18px);
}

/* Optional subtle accent underline */
.footer-brand::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 20px auto 0;
    border-radius: 4px;
}

/* Tagline */
.footer-tagline {
    font-size: 1rem;
    color: #061a2f;
    margin-top: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Bottom text */
.footer-bottom {
    font-size: 0.9rem;
    color: #061a2f;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .antigravity-footer .container {
        padding: 70px 15px 30px;
    }
}

.testimonials-section {
    background-color: #f6f5f2;
    padding: 100px 0px 100px 0px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    margin-top: auto;
    gap: 15px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-user h6 {
    margin: 0;
    color: var(--primary-color);
}

.testimonial-user small {
    color: #777;
}

/* Swiper buttons */
.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-color);
}

/* Pagination */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

.fixed-contact-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 40px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* Buttons */
.contact-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Divider */
.fixed-contact-bar .divider {
    width: 1px;
    height: 28px;
    background: rgba(0, 0, 0, 0.15);
}

/* WhatsApp */
.contact-btn.whatsapp {
    background-color: #25d366;
}

/* Call */
.contact-btn.call {
    background-color: var(--primary-color);
}

/* Hover Effects */
.contact-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Mobile safety */
@media (max-width: 576px) {
    .fixed-contact-bar {
        bottom: 15px;
    }
}
@media (min-width: 768px) {
    .fixed-contact-bar {
        display: none;
    }
}
.cta-section {
    background-color: #f6f5f2;
}

.cta-box {
    background: linear-gradient(135deg, #0b2c4d 0%, #061a2f 100%);
    border-radius: 22px;
    padding: 70px 60px;
    color: #ffffff;
    overflow: hidden;
}

/* Title */
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Text */
.cta-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-bottom: 30px;
}

/* Button */
.cta-btn {
    background-color: var(--secondary-color);
    color: #0b2c4d;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #e0a904;
    transform: translateY(-2px);
}

/* Image */
.cta-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cta-image:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-box {
        padding: 40px 25px;
        text-align: center;
    }

    .cta-text {
        margin-left: auto;
        margin-right: auto;
    }
}
.property-locations-section {
    background: linear-gradient(180deg, #0b1d39, #0a1630);
    position: relative;
}

.property-locations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #6f42c1, #fd7e14, #20c997);
}

.location-list li {
    font-size: 18px;
    padding: 6px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.location-list li:hover {
    color: #f8c146;
    transform: translateX(4px);
}
.connect-social {
    /* background: #0b1d39; */
    padding: 20px 0;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #0b1d39;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #f8c146;
    color: #000;
    transform: translateY(-3px);
}
.mainhead {
    color: var(--secondary-color);
    font-size: 5rem;
}
@media (max-width: 768px) {
    .mainhead {
        font-size: 2rem;
    }
    #agreecontent {
        font-size: 14px;
    }
    .footer-brand {
        letter-spacing: -4px;
    }
}
