/* primary color:#1b4b2bff; */
/* secondary color:#b30000; */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Top bar */

body{
    font-family: "Roboto", sans-serif;
}

.top-bar {
    background: linear-gradient(150deg, #000000 0%, #b30000 70%, #000000 100%);
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.top-bar a {
    color: white !important;
    text-decoration: none;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.top-bar a:hover {
    color: #b30000 !important;
    transform: translateY(-1px);
}

/* Navbar */
section {
    scroll-margin-top: 100px;
}

.navbar {
    background: linear-gradient(to right, #ffffff, #f8f9fa) !important;
    padding: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    padding: 10px 0px !important;
    z-index: 1000;
    overflow-x: hidden !important;
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #b30000 !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(200, 35, 51, 0.5);
}

.offcanvas-body .nav-link {
    padding: 12px 20px !important;
    border-bottom: 1px solid #f0f0f0;
}

/* Layout */
.layout-container {
    overflow-x: hidden !important;
}

/* Banner Carosuel */

.arrow-left,
.arrow-right {
    background: linear-gradient(150deg, #000000 0%, #b30000 70%, #000000 100%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px !important;
}

.carousel-indicators [data-bs-target] {
    width: 15px !important;
    height: 1px !important;
    background: #b30000;
    border-radius: 50%;
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 1;
}


/* features  */
.features-card {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid wheat;
}

/* 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-right: 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: #b30000;
    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: linear-gradient(150deg, #000000 0%, #b30000 70%, #000000 100%);
    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-right: none;
        border-bottom: 2px dashed #e0e0e0;
        padding-bottom: 25px;
        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;
    }
}

/* About Page  */

.about-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: justify;
    color: var(--text-color);
}

.highlight {
    color: #b30000;
    font-weight: 600;
}

.development-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.development-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.development-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    /* border-left: 3px solid var(--accent-color); */
}

.development-item i {
    color: #b30000;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
}

/* Amenities */
.section-title {
    position: relative;
    padding-bottom: 15px;
}

.section-title h1 {
    font-weight: 700;
    font-size: 30px;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    display: inline-block;
}

.developments-section {
    background: var(--light-color);
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid #b30000;
}


.amenity-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.amenity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    /* border-left: 3px solid var(--accent-color); */
}

.amenity-item i {
    color: #b30000;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.amenity-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
}

@media (max-width: 576px) {
    .section-title h1 {
        font-size: 24px;
    }

    .developments-section {
        padding: 20px 15px;
    }
}

.development-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 25px 20px;
    }

    .section-title h1 {
        font-size: 28px;
    }

    .amenity-item {
        padding: 10px 12px;
    }
}

/* form  */
/* 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: 8px;
    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: 8px;
    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;
    }
}

/* 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: linear-gradient(150deg, #000000 0%, #b30000 70%, #000000 100%);
    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: #27ae60;
    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: linear-gradient(150deg, #000000 0%, #b30000 70%, #000000 100%);
    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;
    }

}

/* Footer */
.footer-section {
    background: linear-gradient(150deg, #000000 0%, #b30000 70%, #000000 100%);
    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: #ffd700;
    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: #b30000;
    text-align: center;
    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;
    }
}

/* 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: 140px;
    background: white;
    border-radius: 12px;
    padding: 5px 25px 5px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid #b30000;
}


.article-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
    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;
}

.submit-btn {
    background: linear-gradient(150deg, #000000 0%, #b30000 70%, #000000 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-links a {
    color: white;
    font-size: 20px;
    margin: 5px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

@media (max-width: 992px) {

    .sidebar {
        position: static;
    }
}

/* Fab Icons */
.call-fab {
    position: fixed;
    background: red;
    color: white;
    font-size: 18px;
    left: 10px;
    bottom: 80px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1001;
}

.whatsapp-fab {
    position: fixed;
    background: rgb(4, 187, 4);
    color: white;
    font-size: 30px;
    left: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1001;

}

/* Thank u and Allready exist */

 .modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
  }