/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.pad-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.main {
    overflow: auto;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.navbar-scrolled {
    padding: 10px 0;
    background: white;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-scrolled .navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 5px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-enquire {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    margin-left: 10px;
    transition: var(--transition) !important;
}

.btn-enquire:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(182, 135, 45, 0.3);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-info {
    background: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
}

.btn-info:hover, .btn-info:focus {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(182, 135, 45, 0.4);
}

/* Button Hover Effect */
.btn-hover-effect {
    position: relative;
    z-index: 1;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.btn-hover-effect.btn-hover::before {
    left: 100%;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 14px;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
}

/* ===== BANNER CAROUSEL FIXES ===== */
.banner-carousel-container {
    height: 100%;
    display: flex;
    align-items: center;
}

#bannerCarousel {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-inner {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.carousel-item {
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 500px;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(182, 135, 45, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel indicators */
.carousel-indicators {
    margin-bottom: 15px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.carousel-indicators button:hover {
    background-color: var(--secondary-color);
}

/* Carousel caption */
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
}

.carousel-caption p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Fade transition for carousel */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-active {
    transform: none;
}

/* Banner image column specific */
.banner-img {
    height: 100%;
    display: flex;
    align-items: stretch;
}

/* Ensure carousel takes full height */
#bannerCarousel,
.carousel-inner,
.carousel-item,
.carousel-image {
    min-height: 500px;
}
section#home {
    margin-top: 70px;
}
.col-md-4.banner-column {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}
/* Chatbot Styles */
#chatbotToggleButton:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 480px) {
    #chatbotContainer iframe {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    
    #chatbotToggleButton {
        bottom: 15px;
        right: 15px;
    }
}
/* ===== RESPONSIVE FIXES FOR CAROUSEL ===== */
@media (max-width: 992px) {
    .banner-carousel-container {
        padding: 5px;
    }
    
    .carousel-image {
        min-height: 400px;
    }
    
    #bannerCarousel,
    .carousel-inner,
    .carousel-item,
    .carousel-image {
        min-height: 400px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
}

@media (max-width: 768px) {
    
    .carousel-image {
        min-height: 350px;
    }
    
    #bannerCarousel,
    .carousel-inner,
    .carousel-item,
    .carousel-image {
        min-height: 350px;
    }
    
    .carousel-indicators {
        margin-bottom: 10px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    .col-md-4.banner-img {
    order: 1;
    padding: 0px;
}
.col-md-4.banner-column {
    order: 2;
}
.col-md-4.banner-column.project-highlights {
    order: 3;
}
.flex-column {
    flex-direction: column !important;
    padding: 15px;
}
.table tr td {
    display: block;
    width: 100%;
    max-width: 100%;
}
}

@media (max-width: 576px) {
    
    .carousel-image {
        min-height: 280px;
    }
    
    #bannerCarousel,
    .carousel-inner,
    .carousel-item,
    .carousel-image {
        min-height: 280px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0 3px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
    .table>thead {
    vertical-align: bottom;
    display: none;
}
}

.booking-badge {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    animation-duration: 2s !important;
}

.project-name {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.location {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.builder {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Offers Section */
.offers-section {
    background: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 15px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.offer-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.offer-list {
    list-style: none;
    padding: 15px;
    border: 2px dashed white;
    border-radius: var(--border-radius);
    margin-bottom: 0px;
}

.offer-list li {
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.offer-list li:last-child {
    margin-bottom: 0;
}

.offer-list li i {
    margin-right: 10px;
    font-size: 12px;
}

.available-inventory {
    color: #111;
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.inventory-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation-duration: 2s !important;
}

.download-brochure {
    width: 100%;
    text-align: center;
}

.download-brochure i {
    margin-right: 10px;
}

/* Project Highlights */
.project-highlights h3 {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.highlight-list li {
    color: #111;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.highlight-list li:last-child {
    border-bottom: none;
}

.highlight-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.highlight-buttons {
    margin-top: auto;
    padding-top: 20px;
}

.btn-highlight {
    width: 100%;
    margin-bottom: 10px;
    animation-duration: 3s !important;
}

.btn-highlight:last-child {
    margin-bottom: 0;
}

/* ===== INTRO SECTION ===== */
#intro {
    background: var(--primary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.9;
    z-index: 1;
}

#intro > .container {
    position: relative;
    z-index: 2;
}

.section-heading {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: white;
}

#intro .section-heading::after {
    background: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto 30px;
}

.intro-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.intro-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.intro-btn {
    min-width: 200px;
}

/* ===== PRICING SECTION ===== */
.section-pricing {
    background: var(--light-bg);
}

.section-heading-box {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    text-align: center;
}

.area-price .section-heading {
    color: white;
    margin: 0;
    font-size: 18px;
}

.area-price .section-heading::after {
    display: none;
}

.table {
    background: white;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.table th {
    background: #f8f9fa;
    border: none;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

.table td {
    padding: 15px;
    vertical-align: middle;
    text-align: center;
}

.price-btn {
    min-width: 120px;
}

.costing-card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.costing-card img {
    border-radius: var(--border-radius);
    width: 100%;
    height: auto;
}

/* ===== FLOOR PLANS ===== */
#floor-plan {
    text-align: center;
    padding: 50px 0;
}

.floor-plan-item {
    padding: 20px;
}

.plan-image {
    border: 3px solid #111;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.plan-image:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.plan-image img {
    border-radius: 5px;
    transition: var(--transition);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.plan-image:hover img {
    transform: scale(1.05);
}

/* ===== AMENITIES ===== */
.amenities-section {
    background: var(--light-bg);
}

.amenity-item {
    background: white;
    padding: 20px 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.amenity-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.amenity-icon {
    margin-bottom: 15px;
    transition: var(--transition);
}

.amenity-item:hover .amenity-icon {
    transform: rotateY(360deg);
}

.amenity-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.amenity-name {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    transition: var(--transition);
}

.amenity-item:hover .amenity-name {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== LOCATION ===== */
#location {
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

#location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.9;
    z-index: 1;
}

#location > .container {
    position: relative;
    z-index: 2;
}

#location .section-heading {
    color: white;
}

#location .section-heading::after {
    background: white;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 3px solid white;
    transition: var(--transition);
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.location-benefits {
    background: white;
    color: var(--text-color);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 3px solid #000;
    transition: var(--transition);
}

.location-benefits:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.location-benefits h4 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.location-benefits h4 i {
    margin-right: 10px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* ===== GALLERY ===== */
.gallery-section {
    background: var(--light-bg);
}

.gallery-item {
    text-align: center;
    padding: 20px;
}

.gallery-image {
    border: 3px solid #111;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-image:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.gallery-image img {
    border-radius: 5px;
    transition: var(--transition);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* ===== SITE VISIT FORM ===== */
.site-visit-section {
    background: white;
}

.site-visit-form {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.site-visit-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(182, 135, 45, 0.25);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
#top-footer {
    background: #f2f2f2;
}

.rera-badge {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.disclaimer small {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

footer {
    background: #383838;
    padding: 20px 0;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-links li {
    display: inline-block;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

/* ===== MODAL ===== */
.modal-content {
    border-radius: 10px;
    border: none;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 0;
    padding: 15px 20px;
    border-bottom: none;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.policy-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(182, 135, 45, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Button pulse animation */
@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(182, 135, 45, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(182, 135, 45, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(182, 135, 45, 0);
    }
}

.btn-hover-effect.btn-hover {
    animation: btnPulse 1s infinite;
}
/* ===== BUTTON ANIMATIONS ===== */
/* Continuous pulse animation for all buttons */
.btn-pulse {
    animation: btnPulseContinuous 2s infinite;
}

@keyframes btnPulseContinuous {
    0% {
        box-shadow: 0 0 0 0 rgba(182, 135, 45, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(182, 135, 45, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(182, 135, 45, 0);
        transform: scale(1);
    }
}

/* Bounce animation for CTA buttons */
.btn-bounce {
    animation: bounceSoft 2s infinite;
}

@keyframes bounceSoft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Shimmer effect for all buttons */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Glow effect for primary buttons */
.btn-glow {
    animation: glowEffect 2s infinite alternate;
}

@keyframes glowEffect {
    from {
        box-shadow: 0 0 5px var(--primary-color),
                    0 0 10px var(--primary-color),
                    0 0 15px var(--primary-color);
    }
    to {
        box-shadow: 0 0 10px var(--primary-color),
                    0 0 20px var(--primary-color),
                    0 0 30px var(--primary-color);
    }
}

/* Float animation */
.btn-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Color cycle animation */
.btn-color-cycle {
    animation: colorCycle 4s infinite;
}

@keyframes colorCycle {
    0% {
        background-color: var(--primary-color);
    }
    50% {
        background-color: var(--secondary-color);
    }
    100% {
        background-color: var(--primary-color);
    }
}

/* Border pulse animation */
.btn-border-pulse {
    position: relative;
    border: 2px solid transparent;
    animation: borderPulse 2s infinite;
}

@keyframes borderPulse {
    0% {
        border-color: var(--primary-color);
        box-shadow: 0 0 5px var(--primary-color);
    }
    50% {
        border-color: var(--secondary-color);
        box-shadow: 0 0 15px var(--secondary-color);
    }
    100% {
        border-color: var(--primary-color);
        box-shadow: 0 0 5px var(--primary-color);
    }
}

/* Rotate icon animation */
.btn-rotate-icon i {
    animation: rotateIcon 4s infinite linear;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Scale animation */
.btn-scale {
    animation: scaleAnimation 3s infinite;
}

@keyframes scaleAnimation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Breathing effect */
.btn-breathe {
    animation: breathe 4s infinite ease-in-out;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .banner-section {
        padding-top: 70px;
    }
    section#home {
    margin-top: 0px;
    }
    .project-name {
        font-size: 28px;
    }
    
    .inventory-price {
        font-size: 24px;
    }
    
    .section-heading {
        font-size: 24px;
    }

}

@media (max-width: 768px) {
    .banner-column {
        margin: 10px 0;
        min-height: auto !important;
    }
    
    .intro-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .rera-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .highlight-buttons {
        position: static;
        margin-top: 20px;
    }
    .col-md-4.banner-column {
        padding: 0px;
    }
    
}

@media (max-width: 576px) {
    .pad-50 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .project-name {
        font-size: 24px;
    }
    
    .section-heading {
        font-size: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .highlight-buttons .btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    .col-md-8.mb-3.number-column {
    width: 60%;
    }
    .col-md-4.mb-3.country-column {
    width: 40%;
    float: left;
    }
    select.form-control {
    font-size: 12px;
        padding: 15px 5px;
    }
    .modal-body {
    padding: 20px;
    }
    label.form-check-label.small {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3em;
}
}