:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

/* Top Navigation Styles */
.top-nav {
    background: linear-gradient(135deg, #1a237e, #0d47a1) !important;
    color: #ffffff !important;
    padding: 8px 0 !important;
    font-size: 0.9rem !important;
    border-bottom: 2px solid #ff9800 !important;
}

.top-nav a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.top-nav a:hover {
    color: #ffeb3b !important;
    text-decoration: underline !important;
}

.top-nav .contact-info {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.top-nav .contact-info span:not(.mx-2) {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    color: #ffffff !important;
}

/* FIX: Make sure social icons are visible */
.top-nav .social-icons {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 15px !important;
}

.top-nav .social-icons a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.top-nav .social-icons a:hover {
    background: #ff9800 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
}

/* IMPORTANT: Make icons white and visible */
.top-nav .social-icons i {
    font-size: 14px !important;
    color: #ffffff !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Debug: Add border to see if element exists */
.top-nav .social-icons a {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .top-nav .text-center span {
        font-size: 0.85rem !important;
        color: #ffffff !important;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 6px 0 !important;
        font-size: 0.8rem !important;
    }
    
    .top-nav .social-icons {
        gap: 10px !important;
    }
    
    .top-nav .social-icons a {
        width: 26px !important;
        height: 26px !important;
    }
}
/* Marquee Bar */
.marquee-bar {
    padding: 8px 0;
    font-weight: 500;
}

/* Hero Slider */
.hero-slider {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Property Cards */
.property-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.property-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

/* Search Form */
.search-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobile Sticky */
.mobile-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    border-radius: 50px;
    padding: 10px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: none;
}

/* Footer */
.footer-area {
    background: var(--dark-color);
    color: #ecf0f1;
    padding-top: 40px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 350px;
    }
    
    .top-nav .contact-info {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-mobile-hide {
        display: none;
    }
    
    .mobile-sticky {
        display: flex;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 300px;
    }
}

/* Login/Register Forms */
.auth-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Dashboard Styles */
.user-dashboard .sidebar {
    background: var(--dark-color);
    color: white;
    min-height: calc(100vh - 56px);
}

.user-dashboard .sidebar a {
    color: white;
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.user-dashboard .sidebar a:hover {
    background: rgba(255,255,255,0.1);
}

/* Property Details */
.property-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.property-images img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

/* Admin Panel */
#sidebar-wrapper {
    min-height: 100vh;
    transition: margin 0.25s ease-out;
}

#sidebar-wrapper .list-group {
    width: 16rem;
}

#page-content-wrapper {
    min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: -16rem;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }

    #wrapper.toggled #sidebar-wrapper {
        margin-left: -16rem;
    }
}

/* Razorpay Button */
.razorpay-payment-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.razorpay-payment-button:hover {
    background: #0b5ed7;
}

/* Alert Messages */
.alert-custom {
    border-radius: 8px;
    border-left: 4px solid;
}

.alert-success-custom {
    border-left-color: var(--accent-color);
}

.alert-warning-custom {
    border-left-color: var(--warning-color);
}

.alert-danger-custom {
    border-left-color: var(--danger-color);
}

/* Footer Specific Styles */
.footer-area {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding-top: 50px;
    margin-top: 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4,
.footer-widget h5,
.footer-widget h6 {
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4:after,
.footer-widget h5:after,
.footer-widget h6:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover:before {
    transform: translateX(3px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form input {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 20px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
}

.contact-info .fas {
    color: var(--primary-color);
    width: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.breadcrumb-bar {
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-bar .breadcrumb {
    margin-bottom: 0;
    padding: 0.75rem 0;
}

.breadcrumb-bar .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-bar .breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--secondary-color);
}

/* Mobile Sticky Buttons */
.mobile-sticky {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 1050;
    background: white;
    border-radius: 25px;
    padding: 10px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    gap: 10px;
}

.mobile-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mobile-sticky a:hover {
    transform: scale(1.1);
}

/* Mobile Bottom Bar */
.fixed-bottom {
    z-index: 1040;
}

.fixed-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fixed-bottom a:hover {
    color: var(--accent-color);
}

.fixed-bottom .small {
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-area {
        padding-top: 30px;
        text-align: center;
    }
    
    .footer-widget {
        margin-bottom: 20px;
    }
    
    .footer-widget h4:after,
    .footer-widget h5:after,
    .footer-widget h6:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a:before {
        display: none;
    }
    
    .contact-info .d-flex {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .mobile-sticky {
        bottom: 60px;
        right: 10px;
    }
}

/* Print Styles */
@media print {
    .top-nav,
    .marquee-bar,
    .fixed-bottom,
    .mobile-sticky,
    .btn-back-to-top,
    .social-icons,
    .newsletter-form,
    .app-download {
        display: none !important;
    }
    
    .footer-area {
        background: white !important;
        color: black !important;
    }
    
    .footer-area a {
        color: black !important;
    }
}
/* Hero Slider Styles */
.hero-slider {
    position: relative;
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-caption h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.carousel-caption p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.carousel-caption .btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
}

.carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 8px;
    border: 2px solid #fff;
    background-color: transparent;
}

.carousel-indicators button.active {
    background-color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-slide {
        height: 350px;
    }
    
    .carousel-caption {
        padding: 20px;
        max-width: 90%;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 300px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

