@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #227b65;
    --primary-s: #25dcae;

    --secondary: #d7a100;
    --accent: #e9af00;
    --light: #f8f9fa;
    --dark: #1a1a1a;
    --text: #333333;
    --bg-clr:#5c181d;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: auto !important;
    padding-right: 0 !important; /* Fix shift issue */
}


h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000 !important;
    position: sticky;
    top: 0;
    background: #f7fffd;
}

section {
    scroll-margin-top: 100px;
    overflow-x: hidden !important;
    /* or whatever your navbar height is */
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light) !important;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary) !important;
}

.navbar-nav .nav-link {
    color: black !important;
    font-weight: bold;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    font-size: 17px !important;
}


.navbar.scrolled .navbar-nav .nav-link {
    color: var(--text) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    font-weight: bold;
}

.navbar-toggler {
    border: 1px solid black !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* Banner Hero Split Layout Styles */
.hero-split .container-fluid,
.hero-split .row {
    height: 100%;
}

/* Carousel Styles */
.carousel-image {
    background-size: contain;
    /* background-position: start; */
    background-repeat: no-repeat;
    /* background-color: #094378; */
}

.btn {
    padding: 10px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: var(--bg-clr);
    color: white;
}

.btn-primary:hover {
    background: var(--bg-clr);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* highlights */
.highlights {
    color: #227b65;
    font-weight: bold;
}

/* Custom Carousel Controls in Pagination Area */
.carousel-pagination-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.carousel-indicators {
    position: static;
    margin-top: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: #094378 !important;
    border: none;
}

.carousel-indicators [data-bs-target] {
    width: 15px !important;
    height: 15px !important;
    border: 1px solid #094378;
}

.carousel-indicators button.active {
    background-color: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
}

/* Project Details Sidebar */
.project-details-sidebar {
    background: #daebff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.project-details {
    width: 100%;
    max-width: 400px;
}

.projectState {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-details h1 {
    color: #0d4d8c;
    font-size: 1.8rem;
}

.project-details h3 {
    color: #0d4d8c;
    font-size: 1.2rem;
    font-weight: 500;
}

.offerBox {
    background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
    color: white;
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
}

.offerBox .innerBox p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.tableOffers table {
    width: 100%;
    margin: 15px 0;
}

.tableOffers td {
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
}

.tableOffers td:first-child {
    font-weight: 600;
    color: #0d4d8c;
}

.tableOffers td:last-child {
    text-align: right;
    color: #0d4d8c;
}

.offer-info-text {
    color: #666;
    font-size: 0.9rem;
}

.price-text {
    text-align: center;
    /* margin: 15px 0; */
}

.color-imp {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: bold;
}

.price-sub-text {
    color: #0d4d8c;
    font-size: 2rem;
    font-weight: bold;
}

.price {
    color: #666;
    font-size: 1rem;
}

.enquiryNowBtn {
    background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
    /* margin-top: 15px; */
    transition: all 0.3s ease;
}

.enquiryNowBtn:hover {
    background: #094378;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .project-details-sidebar {
        order: -1;
        padding: 1.5rem;
        background-color: #daebff !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .project-details h1 {
        font-size: 1.5rem;
    }
}


/* .section-title {
            text-align: center;
            margin-bottom: 30px;
        } */

.section-title h2 {
    font-size: 2rem;
    color: black;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* About Section */

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}


.footer-bottom {
    background: #000;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

}

/* Features Section */
.features-section {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 4px;
}

.feature i {
    color: #1a6bb3;
    font-size: 14px;
}

.feature span {
    font-size: 10px;
    color: #555;
    font-weight: 500;
}

/* Callback Section */
.callback-section {
    /* padding: 12px; */
    background: #f9f9f9;
    text-align: center;
}

.btn-callback {
    background: #1a6bb3;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    margin: 0 auto;
    font-size: 12px;
}

.btn-callback:hover {
    background: #0d4d8c;
    color: white;

}

/* Sticky positioning */
.sticky-form {
    position: sticky;
    top: 20px;
    z-index: 100;
}

/* Animation for offer boxes */
.action-buttons {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .compact-registration-container {
        font-size: 12px;
    }

    .btn {
        font-size: 14px;
        padding: 12px 10px;
    }
}

@media (max-width: 576px) {
    .action-buttons {
        flex-direction: column;
    }

    .phone-group {
        flex-direction: column;
    }

    .phone-group .compact-select,
    .phone-group .compact-input {
        width: 100%;
    }

    .feature {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
}

/* Project Plan  */

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.plan-header {
    padding: 30px 30px 20px;
    text-align: center;
    background: white;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.plan-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.plan-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-image img {
    transform: scale(1.05);
}

.plan-card:hover .image-overlay {
    opacity: 1;
}

.plan-action {
    padding: 25px 30px;
    background: white;
    text-align: center;
}

.plan-btn {
    background: var(--bg-clr);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {

    .floor-plan-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        /* padding: 0 15px; */
    }

    .plan-header {
        padding: 25px 20px 15px;
    }

    .plan-action {
        padding: 20px 25px;
    }

    .plan-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .plan-header h3 {
        font-size: 1.3rem;
    }
}

/* Amenities */

    .amenity-card {
        border-radius: var(--border-radius);
        overflow: hidden;
        transition: var(--transition);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        text-align: center;
        padding: 1.5rem 1rem;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .amenity-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: var(--secondary);
    }

    .amenity-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 1px solid #b4eddfff;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .amenity-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .amenity-title {
        font-size: 1.2rem;
        color: black;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

/* Galler Popup */
.gallery-content {
    background-color: transparent !important;
    border: none !important;
}

/* location advantage  */

.connectivity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.connectivity-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-clr);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.connectivity-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* .feature-category {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
} */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #227b65;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.feature-name {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.feature-distance {
    background: var(--bg-clr);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* .connectivity-map {
    display: flex;
    align-items: stretch;
} */

.map-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.map-image {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.map-card:hover .map-image img {
    transform: scale(1.05);
}

.map-actions {
    padding: 20px 25px;
    background: white;
}


/* Responsive Design */
@media (max-width: 992px) {
    .connectivity-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .connectivity-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .connectivity-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .feature-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .connectivity-card {
        padding: 20px;
    }

    /* .feature-category {
        padding: 15px;
    } */

}

/* Schedule Site visit and form  */
.down-contact-inner {
    margin: 0 auto;
}

.down-contact-data {
    padding: 0;
}

.down-contact-row {
    align-items: stretch;
    margin: 0;
}

.down-image-carousel,
.down-image-carousel-alt {
    padding: 0;
}

.down-ps-0 {
    padding-left: 0 !important;
}

.down-pe-0 {
    padding-right: 0 !important;
}

.down-m-0 {
    margin: 0 !important;
}

.down-contact-visual,
.down-contact-visual-alt {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.down-visual-img,
.down-visual-img-alt {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.down-contact-visual:hover .down-visual-img,
.down-contact-visual-alt:hover .down-visual-img-alt {
    transform: scale(1.05);
}

.down-form-data {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: -20px;
    position: relative;
    z-index: 2;
}

.down-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: left;
}

.down-form-container {
    width: 100%;
}

.down-form-group {
    margin-bottom: 20px;
}

.down-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.down-form-control:focus {
    outline: none;
    border-color: #1a6bb3;
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 107, 179, 0.1);
}

.down-phone-group {
    display: flex;
    gap: 10px;
}

.down-country-code {
    width: 40%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    font-size: 14px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.down-country-code:focus {
    outline: none;
    border-color: #1a6bb3;
    background: white;
}

.down-hidden {
    display: none;
}

.down-mb-3 {
    margin-bottom: 1rem;
}

.down-ipaddress {
    display: none;
}

.down-loan-form {
    margin-top: 20px;
}

.down-switch {
    display: block;
    font-size: 10px;
    color: #6c757d;
    line-height: 1.4;
    cursor: pointer;
}

.down-text {
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 992px) {
    .down-form-data {
        margin-left: 0;
        margin-top: -20px;
    }

    .down-contact-row {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .down-form-data {
        padding: 20px;
    }

    .down-form-title {
        font-size: 24px;
        text-align: center;
    }

    .down-phone-group {
        flex-direction: column;
    }

    .down-country-code {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .down-contact-visual,
    .down-contact-visual-alt {
        border-radius: 10px;
    }

    .down-visual-img,
    .down-visual-img-alt {
        border-radius: 10px;
    }

    .down-form-data {
        padding: 15px;
    }

    .down-form-title {
        font-size: 20px;
    }

    .down-submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/* Animation for form elements */
.down-form-control,
.down-country-code,
.down-submit-btn {
    transition: all 0.3s ease;
}

/* Focus states */
.down-form-control:focus,
.down-country-code:focus {
    transform: translateY(-1px);
}

/* Hover effects */
.down-submit-btn:hover {
    transform: translateY(-2px);
}

/* fab icons */
.car-icon-fab {
    position: fixed;
    bottom: 50%;
    left: 5px;
    z-index: 1040;
}

.whatsap-icon-fab {
    position: fixed;
    bottom: 40%;
    left: 5px;
    z-index: 1040;

}

.call-icon-fab {
    position: fixed;
    bottom: 30%;
    left:5px;
    z-index: 1040;

}


.car-icon-fab i {
    background: var(--bg-clr);
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    border-radius: 50%;
}

.whatsap-icon-fab i {
    background: #25D366;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    border-radius: 50%;
}

.call-icon-fab i {
    background: #007AFF;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    border-radius: 50%;
}

@media (max-width:768px) {
    .mobile-fab {
        display: flex !important;
        gap: 2px;
        background: white;
        width: 100%;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        z-index: 1040;
    }
}

/* pricing Table */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.table-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

.pricing-table th {
    background: #1a6bb3;
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table td {
    padding: 20px;
}

.pricing-table tr {
    border-bottom: 1px solid #e9ecef;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background: #f8f9fa;
}

.config {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.config strong {
    font-size: 1.1rem;
    color: #2c3e50;
}

.area {
    color: #6c757d;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.currency {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
}

.price strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.price-note {
    color: #6c757d;
    font-size: 0.85rem;
    margin-left: 5px;
}

.btn-details {
    background: #1a6bb3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-details:hover {
    background: #0d4d8c;
}

/* Responsive */
@media (max-width: 768px) {

    .section-title {
        font-size: 1.5rem;
    }

    .pricing-table {
        display: block;
        overflow-x: auto;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .btn-details {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Footer */
.footer-section {
    background:#100607;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-content {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-widget a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-section {
    display: flex;
    flex-direction: column;
}
.social-link{
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #b30000 !important;
}
.social-link i{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.realnest:hover{
    color: blue !important;
}

.copyright-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.copyright-text {
    color: #5c181d;
    text-align: center;
    font-weight: bold;
    margin: 0;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        padding: 50px 0 30px;
    }

    .footer-widget {
        margin-bottom: 40px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 20px;
    }

    .footer-widget h4 {
        font-size: 18px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* top details */
.property-card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.logo-container {
    border-left: 2px dashed #e0e0e0;
    padding: 20px;
    text-align: center;
}

.logo-container img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.logo-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 10px;
}

.details-container {
    padding: 20px;
}

.location {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.location i {
    font-size: 22px;
    color: #227b65;
    margin-right: 12px;
}

.location-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.specs-container {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.spec-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-clr);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: white;
}

.spec-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.spec-details {
    color: #666;
    font-size: 14px;
}

.rera-badge {
    display: inline-flex;
    align-items: center;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.rera-badge i {
    margin-right: 8px;
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
    .logo-container {
        border-left: none;
        border-bottom: 2px dashed #e0e0e0;
        padding-bottom: 25px !important;
        margin-bottom: 25px;
        padding: 0 !important;
    }

    .logo-container img {
        max-width: 160px;
    }

    .logo-container iframe {
        height: 220px;
    }

    .details-container {
        padding: 10px;
    }

    .location-text {
        font-size: 16px;
    }

    .spec-item {
        padding: 10px 12px;
    }
}

@media (max-width: 576px) {
    .logo-container iframe {
        height: 200px;
    }

    .spec-icon {
        width: 35px;
        height: 35px;
    }

    .spec-title {
        font-size: 15px;
    }

    .spec-details {
        font-size: 13px;
    }
}

/* accordian */
.accordion-button:focus {
    box-shadow: none !important;
    background-color: #f7fffd !important;
}

.accordion-button:not(.collapsed) {
    background:#f7fffd !important;
}

/* layout */
/* Layout */
.main-content {
    flex: 9;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar {
    position: sticky;
    top: 150px;
    background: white;
    border-radius: 12px;
    padding: 5px 25px 5px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #5c181d;
}


.article-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #5c181d;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.article-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.sidebar-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f1f1;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.category-list a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #3498db;
}

.category-count {
    background: #3498db;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f1f1f1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #3498db;
    color: white;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

@media (max-width: 992px) {

    .sidebar {
        position: static;
    }
}