/* Custom Styles for Real Estate Website */

:root {
    --primary-color: #7b241d;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

/* Bootstrap Primary Color Override */
.btn-primary,
.bg-primary,
.badge.bg-primary {
    background-color: #7b241d !important;
    border-color: #7b241d !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #8b3528 !important;
    border-color: #8b3528 !important;
}

.btn-outline-primary {
    color: #7b241d !important;
    border-color: #7b241d !important;
}

.btn-outline-primary:hover {
    background-color: #7b241d !important;
    border-color: #7b241d !important;
    color: white !important;
}

.text-primary {
    color: #7b241d !important;
}

/* Page Header */
.page-header {
    margin-top: 0px;
    background: #7b241d;
}

.page-header h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header .lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Filter Section */
.filter-section {
    border-bottom: 2px solid #e9ecef;
}

.filter-section .form-control,
.filter-section .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.filter-section .form-control:focus,
.filter-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(123, 36, 29, 0.25);
}

body {
    font-family: 'Jost', sans-serif;
    padding-top: 60px;
    background-color: #f5f5f5;
}

/* Navbar */

.main-nav {
    padding: 3px 0 3px 0;
    background: #fff;
    background-color: #fff !important;
}

.navbar-brand img {
    width: 120px;
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    color: #000;
    padding-left: 15px !important;
    padding-right: 15px !important;
    font-size: 16px;
}

.nav-link:hover {
     
    color: #000;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #000;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url('../images/menu-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    margin-top: 16px;
    padding: 0rem 0;
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
    
}

.navbar-nav .dropdown-item.active {
    background-color: var(--primary-color);
    color: #fff;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
}

.navbar-nav .dropdown-toggle:hover {
    color: #000
}

/* Hover Dropdown for Desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown-menu {
        display: none;
        margin-top: 0;
    }
    
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block !important;
        animation: fadeInDown 0.3s ease;
    }
    
    /* Ensure Bootstrap's show class still works */
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }
}

/* Mobile: Keep Bootstrap's default behavior */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        margin-top: 0;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Button in Navigation */
.btn-contact-nav {
    background: #7b241d;
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
     
    display: flex;
    align-items: center;
    text-decoration: none;
}

.btn-contact-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 36, 29, 0.5);
    color: white !important;
    background: #7b241d;
}

.btn-contact-nav i {
    font-size: 14px;
}

@media (max-width: 991px) {
    .btn-contact-nav {
        margin-top: 15px;
        margin-left: 0 !important;
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: #fff;
    color: white;
    padding: 0px 0 0px;
    margin-bottom: 0;
    overflow: hidden;
    align-items: center;
}

.bannersec{
    position: relative;
    background-image: url('../images/header-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    width: 100%;
}

.bannersec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 1;
}

.bannersec > * {
    position: relative;
    z-index: 2;
}

.hero-section img {
    border-radius: 0 0 50px 50px;
}

.bannersec h2 {
    padding: 0px 0px 0px 0px;
    margin: 80px 0px 0px 0px;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
}

.bannersec p {
    padding: 10px 0px 0px 0px;
    text-align: center;
    width: 60%;
    margin: auto;
    font-size: 18px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title-main {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.hero-stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #212529;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    color: #212529;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    color: white;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-down {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: #ffd700;
    transform: scale(1.2);
}

/* Responsive Hero Section */
@media (max-width: 768px) {

    .hero-section {
        padding: 0px 0 0px;
        min-height: auto;
    }

    .hero-section p {
        font-size: 1rem;
        width: 100%;
    }
    

    .bannersec h2 {
        padding: 0px 0px 0px 0px;
        margin: 100px 0px 0px 0px;
        text-align: center;
        font-size: 22px;
        font-weight: 700;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        margin: 0 !important;
    }
}

/* Property Search Section */
.property-search-section {
    background: white;
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 60px;
    z-index: 1000;
    width: 70%;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 60px;
}

.search-wrapper {
    margin: 0 auto;
}

.search-box {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    z-index: 1000;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.1rem;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(123, 36, 29, 0.25);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 2px;
}

.suggestion-item {
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background: #f8f9fa;
    padding-left: 25px;
}

.suggestion-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.suggestion-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.suggestion-location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.suggestion-location i {
    font-size: 0.75rem;
}

.suggestion-price {
    font-weight: 600;
    color: var(--primary-color);
}

.btn-search {
    background: #7b241d;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 36, 29, 0.6);
    color: white;
    background: #8b3528;
}

.btn-search:active {
    transform: translateY(0);
}

/* Filter Section */
.filter-section {
    background: #f8f9fa;
}

.filter-checkboxes {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.filter-checkboxes .form-check-label {
    cursor: pointer;
    user-select: none;
    color: #495057;
    transition: color 0.2s ease;
}

.filter-checkboxes .form-check-input:checked ~ .form-check-label {
    color: var(--primary-color);
    font-weight: 500;
}

.filter-checkboxes .form-check-input {
    cursor: pointer;
    margin-top: 0.35rem;
}

/* Responsive Search */
@media (max-width: 768px) {
    .property-search-section {
        padding: 15px 0;
        width: 97%;
        border-radius: 20px;
    }
    
    .search-box {
        flex-direction: column;
        gap: 10px;
    }

    .search-input-wrapper {
        position: relative;
        flex: 1;
        z-index: 1000;
        width: 100%;
    }
    
    .btn-search {
        width: 100%;
        padding: 12px 30px;
    }
    
    .search-input {
        padding: 12px 15px 12px 45px;
    }
    
    .filter-checkboxes {
        max-height: 150px !important;
    }
}

/* Property Card */
.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.property-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-card-img {
    transform: scale(1.05);
}

.property-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
}

.property-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-card-title {
    font-size: 17px;
    color: var(--dark-color);
    margin-bottom: 7px;
}

.property-card-location {
    color: var(--secondary-color);
    margin-bottom: 3px;
    font-size: 15px;
}

.property-card-location i{
    font-size: 15px;
}

.property-card-configuration {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 14px;
     
}

.property-card-configuration i {
    font-size: 14px;
    margin-right: 5px;
}

.property-card-price {
    font-size: 17px;
    font-weight: bold;
    color: #7b241d;
    margin-bottom: 10px;
}

 

.property-card-format-rera {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    flex-wrap: wrap;
    font-weight: 600;
}

.property-card-format-rera .separator {
    color: #dee2e6;
}

.property-card-format-rera i {
    font-size: 12px;
}
.property-card-features {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.property-card-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
}

.property-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

/* Status Badge */
.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-for_sale {
    background-color: #7b241d;
    color: white;
}

.status-for_rent {
    background-color: var(--primary-color);
    color: white;
}

.status-sold {
    background-color: var(--secondary-color);
    color: white;
}

/* Featured Badge */
.featured-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
}

/* Property Details Page */
.property-detail-hero {
    height:250px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 30px;
}

.property-detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #000000b5 0%, rgb(0 0 0 / 84%) 100%);
}

.property-detail-header {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0px;
    color: white;
    z-index: 2;
}

.property-detail-header h1 {
    font-family: 'Jost', sans-serif;
    padding: 0 0 10px 0;
    margin: 0 0 0 0;
}

.property-detail-header p {
    font-family: 'Jost', sans-serif;
    padding: 0 0 10px 0;
    margin: 0 0 0 0;
    color: #fff;
    font-size: 16px;
}


.property-detail-header h2{
    font-family: 'Jost', sans-serif;
}

.property-gallery-carousel {
    margin-bottom: 30px;
}

.property-gallery-carousel .carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.property-carousel-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.property-carousel-img:hover {
    transform: scale(1.02);
}

.property-gallery-carousel .carousel-control-prev,
.property-gallery-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0.8;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.property-gallery-carousel .carousel-control-prev {
    left: 15px;
}

.property-gallery-carousel .carousel-control-next {
    right: 15px;
}

.property-gallery-carousel .carousel-control-prev:hover,
.property-gallery-carousel .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.property-gallery-carousel .carousel-indicators {
    margin-bottom: 20px;
}

.property-gallery-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
}

.property-gallery-carousel .carousel-indicators button.active {
    background-color: white;
}

/* Property Thumbnails */
.property-thumbnails {
    padding: 0 5px;
}

.thumbnail-item {
    width: 100px;
    height: 75px;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(123, 36, 29, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.property-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .property-thumbnail-img {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .property-carousel-img {
        height: 350px;
    }
    
    .property-gallery-carousel .carousel-control-prev,
    .property-gallery-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .property-gallery-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .property-gallery-carousel .carousel-control-next {
        right: 10px;
    }
    
    .thumbnail-item {
        width: 80px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .thumbnail-item {
        width: 70px;
        height: 52px;
    }
}

.property-info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.property-info-card h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

/* Pricing Configuration Cards */
.pricing-config-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef !important;
    height: 100%;
}

.pricing-config-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.pricing-floorplan-img {
    transition: transform 0.3s ease;
    filter: blur(4px);
}

.pricing-config-card:hover .pricing-floorplan-img {
    transform: scale(1.05);
}

.locationadvantages p {
    line-height: 32px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.info-value {
    color: var(--dark-color);
}

.reraqr img {
    width: 80px;
}

/* Bank Account Table */
.bank-account-table {
    margin-bottom: 0;
}

.bank-account-table td {
    padding: 12px 15px;
    vertical-align: middle;
}

.bank-account-table .table-label {
    width: 40%;
    background-color: #f8f9fa;
    color: var(--dark-color);
    font-weight: 600;
}

.bank-account-table td:not(.table-label) {
    color: var(--dark-color);
}

/* Google Map Container */
.google-map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
}

.google-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Section Headings */
.section-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--secondary-color);
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.no-results i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.5;
    color: var(--primary-color);
}

.no-results h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 2rem;
}

.no-results p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.no-results p strong {
    color: var(--dark-color);
    font-weight: 600;
}

.no-results .text-muted {
    font-size: 0.95rem;
    margin-top: 10px;
}

/* AJAX Search No Result */
.is-ajax-search-no-result {
    text-align: center;
    padding: 80px 20px;
    color: var(--secondary-color);
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Projects Section */
.projects-section {
    margin-top: 0;
    background: #fff;
    padding: 50px 0 50px 0;
}

.projects-section .section-heading {
    padding: 0 0 10px 0;
    font-size: 25px;
    margin: 0 0 0 0;
}

.projects-section .btn-outline-primary {
    background: #7b241d;
    border: #7b241d solid 1px;
    color: #fff !important;
    padding: 10px 20px 10px 20px;
    font-size: 15px;
    font-weight: 500;
}

 



/* Loading Spinner */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .search-container {
        padding: 20px;
    }
    
    .property-card-price {
        font-size: 1.5rem;
    }
    
    body {
        padding-top: 56px;
    }
}

/* Utilities */
.text-price {
    color: var(--primary-color);
    font-weight: bold;
}

.shadow-custom {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rounded-custom {
    border-radius: 15px;
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.why-choose-us-section .section-heading::after{
    display: none;
}

.why-choose-us-section .section-heading {
    padding: 0 0 0px 0;
    margin: 0 0 0 0;
    font-size: 25px;
}

.why-choose-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-color);
}

.why-choose-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: #7b241d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8b3528;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-card:hover .why-choose-icon::before {
    opacity: 1;
}

.why-choose-icon i {
    position: relative;
    z-index: 1;
}

.why-choose-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.why-choose-text {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Location Section */
.location-section {
    background: white;
    margin-top: 50px;
}


.location-section .section-heading {
    padding: 0 0 10px 0;
    font-size: 25px;
    margin: 0 0 0 0;
}


.location-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.location-card:hover .location-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 36%);
    transition: all 0.3s ease;
    z-index: 1;
}

.location-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.location-card h5 {
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.location-count {
    margin: 0;
}

.location-count .badge {
    font-size: 0.9rem;
    padding: 8px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 50px;
}

.testimonials-section .section-heading {
    padding: 0 0 10px 0;
    font-size: 25px;
    margin: 0 0 0 0;
}

.testimonials-section .owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
    display: none;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.testimonial-author-info h6 {
    font-weight: bold;
    color: var(--dark-color);
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50%;
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background: var(--dark-color) !important;
    transform: scale(1.1);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots button.active {
    background: var(--primary-color) !important;
    width: 30px;
    border-radius: 6px;
}

/* Property Carousel Styles */
.property-item {
    padding: 0 10px;
}

.new-launch-carousel .property-card,
.residential-projects-carousel .property-card,
.commercial-projects-carousel .property-card {
    height: 100%;
    margin-bottom: 0;
}

.new-launch-carousel .owl-stage-outer,
.residential-projects-carousel .owl-stage-outer,
.commercial-projects-carousel .owl-stage-outer {
    padding: 10px 0;
}

/* Builder Logos Section */
.builder-logos-section {
    background: white;
    margin-top: 50px;
}

.builder-logos-section .section-heading {
    padding: 0 0 10px 0;
    font-size: 25px;
    margin: 0 0 0 0;
}


.builder-logo-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.builder-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.builder-logo-img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
     
    transition: all 0.3s ease;
}

.builder-logo-card:hover .builder-logo-img {
    filter: grayscale(0%);
}

.builder-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 0px !important;
}

/* Blog Section */
.blog-section {
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.blog-excerpt {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

/* Blog Section */
.blog-section {
    background: #f8f9fa;
}

.blog-section .section-heading {
    padding: 0 0 10px 0;
    font-size: 25px;
    margin: 0 0 0 0;
}

/* Blog Details Page */
.blog-details-section {
    background: #f8f9fa;
}

.blog-details-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.blog-details-image {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.blog-details-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-details-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}

.blog-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.blog-details-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    padding: 20px 0;
}

.blog-details-content p {
    margin-bottom: 0.5rem;
}

.blog-details-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-share {
    display: flex;
    align-items: center;
}

/* Related Posts */
.related-posts {
    margin-top: 50px;
}

.related-posts .blog-card {
    height: 100%;
}

/* Blog Sidebar */
.blog-section .card,
/* Blog Sidebar Sticky */
.blog-sidebar-sticky {
    position: sticky;
    top: 100px; /* Adjust based on header height */
    z-index: 10;
}

/* Ensure sticky sidebar doesn't overflow on mobile */
@media (max-width: 991.98px) {
    .blog-sidebar-sticky {
        position: relative;
        top: 0;
    }
}

.blog-details-section .card {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.blog-section .card:hover,
.blog-details-section .card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-section .list-unstyled li a,
.blog-details-section .list-unstyled li a {
    transition: color 0.3s ease;
}

.blog-section .list-unstyled li a:hover,
.blog-details-section .list-unstyled li a:hover {
    color: var(--primary-color) !important;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Blog Breadcrumb Section */
.blog-breadcrumb-section {
    background: linear-gradient(135deg, #7b241d 0%, #9c3a30 100%);
    position: relative;
    overflow: hidden;
    padding: 50px 0 50px 0 !important;
    margin-top: 12px;
}

.blog-breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-breadcrumb-nav {
    position: relative;
    z-index: 1;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.blog-breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.blog-breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-breadcrumb-item a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.blog-breadcrumb-item a i {
    font-size: 0.85rem;
}

.blog-breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin: 0 4px;
}

.blog-breadcrumb-item.active {
    display: inline-flex;
    align-items: center;
}

.blog-breadcrumb-active-text {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Blog Breadcrumb */
@media (max-width: 768px) {
    .blog-breadcrumb-section {
        margin-top: 70px;
        padding: 15px 0 !important;
    }
    
    .blog-breadcrumb {
        gap: 6px;
    }
    
    .blog-breadcrumb-item a,
    .blog-breadcrumb-active-text {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .blog-breadcrumb-item a i {
        font-size: 0.75rem;
    }
    
    .blog-breadcrumb-separator {
        font-size: 0.7rem;
        margin: 0 2px;
    }
    
    .blog-breadcrumb-active-text {
        white-space: normal;
        max-width: 250px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .blog-breadcrumb {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .blog-breadcrumb-separator {
        display: none;
    }
    
    .blog-breadcrumb-item {
        width: 100%;
    }
    
    .blog-breadcrumb-item a,
    .blog-breadcrumb-active-text {
        width: 100%;
        justify-content: center;
    }
    
    .blog-breadcrumb-active-text {
        max-width: 100%;
        text-align: center;
    }
}

/* Blog Card Improvements */
.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.blog-card .blog-image {
    position: relative;
    overflow: hidden;
}

.blog-card .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    margin-bottom: 0;
}

.blog-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-details-title {
        font-size: 1.75rem;
    }
    
    .blog-details-content {
        font-size: 1rem;
    }
    
    .blog-details-card {
        padding: 20px;
    }
    
    .blog-details-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .blog-details-footer .col-md-6 {
        width: 100%;
    }
    
    .social-share {
        justify-content: center;
        width: 100%;
    }
}

/* Footer Styles */
footer {
    color: #ffffff !important;
}

footer h5 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 20px;
}

footer .text-muted {
    color: #b0b0b0 !important;
}

footer a {
    color: #b0b0b0 !important;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff !important;
}

footer ul li {
    color: #b0b0b0 !important;
    margin: 0 0 15px 0;
}

footer hr.bg-secondary {
    background-color: rgba(255, 255, 255, 0.2) !important;
    opacity: 1;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .why-choose-card {
        padding: 30px 20px;
    }
    
    .why-choose-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .why-choose-title {
        font-size: 1.1rem;
    }
    
    .why-choose-text {
        font-size: 0.9rem;
    }
    
    .location-card {
        height: 200px;
    }
    
    .location-card h5 {
        font-size: 1.25rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .builder-logo-img {
        max-height: 60px;
    }
    
    .blog-image {
        height: 180px;
    }
}

/* About Us Page Styles */
.about-section {
    background-color: #fff;
}

.about-image img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.feature-box {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: #f8f9fa;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

/* Contact Us Page Styles */
.contact-section .card {
    border-radius: 10px;
}

.contact-info .contact-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-info .contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    min-width: 50px;
    text-align: center;
}

.contact-section .form-control,
.contact-section .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(123, 36, 29, 0.25);
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    background: #f8f9fa;
}

.privacy-content {
    line-height: 1.8;
    color: #333;
}

.privacy-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.privacy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    color: #8b3528;
    text-decoration: underline;
}

.privacy-content .lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
}

@media (max-width: 768px) {
    .privacy-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content {
        font-size: 0.95rem;
    }
}

/* Sticky Social Sidebar */
.sticky-social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 15px 15px 0;
    padding: 15px 8px;
    transition: all 0.3s ease;
}

.sticky-social-sidebar:hover {
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
}

.sticky-social-sidebar .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.sticky-social-sidebar .social-icon:last-child {
    margin-bottom: 0;
}

.sticky-social-sidebar .social-icon i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sticky-social-sidebar .social-icon:hover i {
    transform: scale(1.2);
}

.sticky-social-sidebar .social-icon:hover {
    transform: translateX(5px);
}

/* Individual social media colors */
.sticky-social-sidebar .social-icon:nth-child(1) {
    background: #1877F2; /* Facebook */
}

.sticky-social-sidebar .social-icon:nth-child(1):hover {
    background: #166fe5;
}

.sticky-social-sidebar .social-icon:nth-child(2) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram */
}

.sticky-social-sidebar .social-icon:nth-child(2):hover {
    background: linear-gradient(45deg, #e8821f 0%, #d8562c 25%, #cc1f33 50%, #bc1f56 75%, #ac1478 100%);
}

.sticky-social-sidebar .social-icon:nth-child(3) {
    background: #1DA1F2; /* Twitter */
}

.sticky-social-sidebar .social-icon:nth-child(3):hover {
    background: #1a8cd8;
}

.sticky-social-sidebar .social-icon:nth-child(4) {
    background: #FF0000; /* YouTube */
}

.sticky-social-sidebar .social-icon:nth-child(4):hover {
    background: #e60000;
}

.sticky-social-sidebar .social-icon:nth-child(5) {
    background: #0077B5; /* LinkedIn */
}

.sticky-social-sidebar .social-icon:nth-child(5):hover {
    background: #006699;
}

/* Hide sticky sidebar on mobile */
@media (max-width: 768px) {
    .sticky-social-sidebar {
        display: none;
    }
}

/* Footer Section */
.footer-section {
    background: #000000;
    color: #ffffff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7b241d 0%, #9c3a30 50%, #7b241d 100%);
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
}

.footer-widget {
    height: 100%;
}

.footer-logo img {
    width: 150px;
}

.footer-logo h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo .text-primary {
    color: #7b241d !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-certification .badge {
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ab221782;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ab2217;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links li a i {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #7b241d;
    transform: translateX(5px);
}

.footer-links li a:hover i {
    opacity: 1;
    color: #7b241d;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 20px;
}


.footer-contact .contact-icon {
    width: 50px;
    height: 50px;
    background: rgb(255 255 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b241d;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    line-height: 50px;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item h5{
    color: #000;
}

.contact-item p a{
    color: #212529bf;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(123, 36, 29, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b241d;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    line-height: 50px;
}

.contact-icon i {
    font-size: 20px;
}
.contact-item:hover .contact-icon {
    background: #7b241d;
    color: #ffffff;
    transform: scale(1.1);
}

.contact-item:hover .contact-icon i {
    color: #ffffff !important;
}

.contact-info {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: #7b241d;
}

.footer-social {
    margin-top: 30px;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.twitter {
    background: #1DA1F2;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.linkedin {
    background: #0077B5;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright-text strong {
    color: #ab2217;
    font-weight: 600;
}

.rera-number {
    padding: 10px 15px;
    background: rgba(123, 36, 29, 0.1);
    border-radius: 5px;
    border-left: 3px solid #7b241d;
}

.rera-number strong {
    color: #7b241d;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.rera-footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.rera-footer-text i {
    color: #7b241d;
}

.rera-footer-text strong {
    color: #7b241d;
    font-weight: 600;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin: 0 10px;
}

.footer-bottom-link:hover {
    color: #7b241d;
}

/* Directors Message Page Styles */
.director-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.directors-section .section-heading::after {
    display: none;
}


.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.director-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
}

.director-message {
    line-height: 1.8;
    color: #555;
}

.value-icon {
    transition: transform 0.3s ease;
}

.value-icon:hover {
    transform: scale(1.1);
}

/* Career Page Styles */

.careers-section .section-heading::after {
    display: none;
}

.careers-section .section-heading {
     
    padding-bottom: 0;
    margin-bottom: 10px !important;
}

.careers-section .card-body p a {
    font-size: 18px;
    color: #7b241d;
}

.position-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.position-details ul li {
    margin-bottom: 8px;
    color: #555;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        margin-top: 50px;
    }

    .navbar-brand img {
        width: 85px;
    }

    .main-nav {
        padding: 0px 0 0px 0;
        background: #fff;
        background-color: #fff !important;
    }
    
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .footer-logo h4 {
        font-size: 1.3rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 10px;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Footer Social Links */
.social-links-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-footer a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-links-footer a i {
    font-size: 18px;
}

