/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    /* padding-top: 76px;  */
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

html, body {
    overflow-x: hidden;
}

/* Light Orange Theme Colors */
:root {
    /* Primary Brand (Property / Real Estate) */
    --primary-color: #861f41;        /* Main maroon */
    --primary-dark: #6f1836;         /* Hover / dark maroon */
    --primary-light: #a63a5c;        /* Light maroon */

    /* Text & Neutral */
    --secondary-color: #2b2b2b;      /* Main text */
    --dark-color: #2b2b2b;
    --light-color: #f8f9fa;

    /* Backgrounds */
    --light-bg: #f6f4f5;             /* Section background */
    --card-bg: #ffffff;              /* Cards */
    --border-color: #e0d5d9;          /* Soft borders */
    --light-blue:#dff6f9;
    --light-theme-primary:linear-gradient(45deg, var(--primary-color), transparent, var(--primary-dark));
    /* Accent (Luxury touch for property) */
    --accent-gold: #c9a24d;           /* Featured / premium tag */

    /* Shadows (clean & professional) */
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.15);

    /* Status Colors (unchanged – universal) */
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --info-color: #3498db;
}


/* Override Bootstrap Colors */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 66, 0.25) !important;
}
.text-theme {
    color: var(--primary-color) !important;
}

.bg-primary {
     background-color: var(--primary-color) !important;
}

.back-theme {
     background-color: var(--primary-color) !important;
}

.badge {
    padding: 5px 12px;
    font-weight: 500;
    border-radius: 20px;
    font-size: 13px;
}

/* Theme-Based Badges */
.badge-theme {
    background-color: var(--primary-color);
    color: white;
}

/* Custom Badge Colors for Light Orange Theme */
.badge-theme-primary {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.badge-theme-secondary {
    background-color: var(--secondary-color) !important;
    color: white !important;
}

.badge-theme-light {
    background-color: var(--light-bg) !important;
    color: var(--primary-color) !important;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.badge-theme-success {
    background-color: rgba(46, 204, 113, 0.1) !important;
    color: #27ae60 !important;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.badge-theme-warning {
    background-color: rgba(241, 196, 15, 0.1) !important;
    color: #f39c12 !important;
    border: 1px solid rgba(241, 196, 15, 0.2);
}

.badge-theme-danger {
    background-color: rgba(231, 76, 60, 0.1) !important;
    color: #e74c3c !important;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.badge-theme-info {
    background-color: rgba(52, 152, 219, 0.1) !important;
    color: #3498db !important;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.badge-theme-dark {
    background-color: #2c3e50 !important;
    color: white !important;
}

/* Property Specific Badges */
.property-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.property-badge.featured {
    background-color: #ff6b6b;
    color: white;
}

.property-badge.premium {
    background-color: #ff8c42;
    color: white;
}

.property-badge.new {
    background-color: #2ecc71;
    color: white;
}

.property-badge.trending {
    background-color: #9b59b6;
    color: white;
}

.property-badge.hot {
    background-color: #e74c3c;
    color: white;
}

/* Blog Badges */
.blog-badge {
    background-color: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 140, 66, 0.3);
}

/* Locality Stats Badge */
.locality-stats .badge {
    background-color: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
}

/* Quick Search Badge */
.quick-search-badge {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.quick-search-badge:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* .bg-primary {
    color: var(--primary-color) !important;
} */

.top-bar {
    background-color: #861f41;
    color: #fff;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 12px;
    transition: opacity 0.2s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

/* Left section */
.top-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.top-left i {
    margin-right: 6px;
}

.top-email {
    margin-left: 10px;
    font-size: 13px;
}

/* Right section */
.top-right {
    display: flex;
    align-items: center;
}

.top-right a {
    margin-left: 0px;
}
.top-right p {
    align-items: center;
    margin-bottom: 0;
    margin-right: 15px;
}

/* ================= Tablet ================= */
@media (max-width: 992px) {
    .top-email {
        display: none; /* hide email on tablet */
    }
}

/* ================= Mobile ================= */
@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-left {
        justify-content: center;
    }

    .top-right {
        justify-content: center;
    }

    .top-right a {
        margin: 0 8px;
        font-size: 13px;
    }
}

/* ================= Small Mobile ================= */
@media (max-width: 480px) {
    .top-left a {
        margin-right: 8px;
    }

    .top-right a {
        font-size: 12px;
    }
}


/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 28px;
}

.brand-name {
    font-family: 'roboto_condensedbold';
    font-weight: 700;
    font-size: 24px;
    color: var(--secondary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}
/* Navbar Dropdown Styles */
/* .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
} */



/* Main dropdown styling */
.dropdown-menu {
    border: 1px solid rgba(255, 140, 66, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    padding: 8px 0;
    border-radius: 10px;
    margin-top: 10px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: var(--primary-color);
}

.dropdown-divider {
    margin: 8px 0;
    border-color: rgba(255, 140, 66, 0.1);
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* @media (mas-width: 992px){
    .dropdown-menu{
right: -20px;
    }

} */

/* @media (max-width: 992px) {
    .dropdown-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 5px !important;
        border: 1px solid rgba(255, 140, 66, 0.1) !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    }

    .navbar-collapse.show {
        overflow: visible;
    }
    
   
    .dropdown-menu.show {
        display: block !important;
        position: absolute !important;
        z-index: 1050 !important;
        background: white !important;
        margin-top: 5px !important;
        width: calc(100% - 30px) !important;
        left: 15px !important;
    }
} */

/* @media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
} */

@media (max-width: 992px) {
    .navbar-nav .nav-link:not(.dropdown-toggle) {
        padding: 10px 15px;
    }
}

.highlight-btn {
    background:linear-gradient(90deg, #c2185b, #f44336) !important;
    color: #861f41;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 24px;
    position: relative;
    animation: pulseGlow 1.8s infinite;
    box-shadow: 0 0 0 rgba(201, 162, 77, 0.7);
}

/* Pulse animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(201, 162, 77, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0);
        transform: scale(1);
    }
}

/* Hover effect */
.highlight-btn:hover {
    background-color: #d4b05a;
    color: #861f41;
}




/* Mobile responsive */


/* Main Content */
/* ================= Hero Section ================= */
/* ================= HERO BACKGROUND ================= */
.mb-hero {
    /* background:linear-gradient(45deg, #af9494, transparent); */
    background-image: url('../images/hero_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0 100px;
    background-position: center;
    
    position: relative;
}

.hero-section {
    background-image: url('../images/hero_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0 100px;
    background-position: center;
}

.mb-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Very light overlay */
    z-index: 1;
}

.mb-hero .container {
    position: relative;
    z-index: 2;
}

/* ================= Heading ================= */
.mb-heading h1 {
    font-size: 36px;
    font-weight: 500;
    color: #fff; /* Changed to white for better visibility on dark background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mb-heading span {
    font-weight: 700;
    color: #fff; /* Changed to white */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {

    .mb-heading h1 {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 15px;
    }

    .mb-heading span {
        display: block;
    }

    .mb-hero {
    /* background: linear-gradient(
        180deg,
        rgba(134, 31, 65, 0.12),
        rgba(134, 31, 65, 0.03)
    ); */

     background-image: url('../images/hero_banner.png');
    background-repeat: no-repeat;
    background-size: cover;
}

}

/* ================= Search Wrapper ================= */
.mb-search-wrapper {
    background: rgba(255, 255, 255, 0.15); /* Transparent white */
    backdrop-filter: blur(10px); /* Blur effect for better readability */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border-radius: 40px;
    padding: 20px 25px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
}

@media (max-width: 768px) {

    .mb-search-wrapper {
        border-radius: 25px;
        padding: 18px;
    }

}

/* ================= Tabs ================= */
.mb-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    overflow-x: auto;
    white-space: nowrap;
}

.mb-tabs::-webkit-scrollbar {
    display: none;
}

.mb-tab {
    font-weight: 600;
    padding-bottom: 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);;
    position: relative;
}

.mb-tab.active {
    color: var(--primary-color);
}

.mb-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ================= Search Bar ================= */
.mb-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Fields */
.mb-field {
    flex: 1;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.location-field {
    flex: 2;
}

.mb-field input,
.mb-field select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    background: transparent;
    color: #fff;
}

.mb-field input::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Semi-transparent placeholder */
}

.mb-field select option {
    background: #333; /* Dark background for dropdown options */
    color: #fff;
}

/* Search Button */
.mb-search-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    margin: 5px;
    transition: 0.3s;
}

.mb-search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ================= Side Banner ================= */
.mb-side-banner {
    background: rgba(255, 255, 255, 0.15); /* Transparent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-side-banner h5 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.mb-side-banner p {
    color: rgba(255, 255, 255, 0.9);
}

.mb-side-banner button {
    background: #fff;
    color: var(--primary-color);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    margin-top: 10px;
    font-weight: 600;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {

    .mb-search-bar {
        flex-direction: column;
        border-radius: 20px;
    }

    .mb-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .mb-search-btn {
        width: 95%;
        margin: 10px auto;
    }

    .mb-hero {
        padding: 50px 0;
    }
}

/* ================= Section ================= */
/* ================= Section ================= */

.mb-recommend-section {
    padding: 60px 0;
    background: linear-gradient(
        180deg,
        rgba(134, 31, 65, 0.06),
        rgba(134, 31, 65, 0.02)
    );
}

.project-hero {
     background-image: url('../images/project-banner.png');
}

/* ================= Title ================= */

.mb-section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.mb-section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: var(--primary-color);
    display: block;
    margin-top: 10px;
    border-radius: 10px;
}

/* ================= Cards ================= */

.mb-info-card {
    background: #fff;
    padding: 26px;
    border-radius: 20px;
    border: 1px solid rgba(134, 31, 65, 0.12);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mb-info-card:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

/* ================= First Highlight Card ================= */

.highlight-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.highlight-card p {
    font-weight: 500;
    color: #555;
}

.mb-info-card h5 {
    font-weight: 600;
    font-size: 18px;
}

.mb-info-card p {
    color: #777;
    margin: 8px 0 15px;
    font-size: 14px;
}

.mb-info-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.mb-info-card a:hover {
    color: var(--primary-dark);
}

/* ================= Banner Card ================= */

.banner-card {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
    );
    color: #fff;
    border: none;
}

.banner-card h5 {
    font-size: 18px;
    font-weight: 700;
}

.banner-card p {
    color: #fff;
    font-size: 14px;
}

.banner-card button {
    background: #fff;
    color: var(--primary-color);
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.banner-card button:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ================= Responsive ================= */

@media (max-width: 768px) {

    .mb-recommend-section {
        padding: 40px 0;
    }

    .mb-section-title {
        font-size: 22px;
    }

    .mb-info-card {
        padding: 18px;
        border-radius: 16px;
        min-height: 160px;
    }

    .highlight-card h2 {
        font-size: 28px;
    }

}







/* Property Listings */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}



@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ===== Featured Section ===== */
.featured-projects {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
}

/* ===== Card ===== */
.featured-card {
    background: #f5f5f5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* .featured-card::after {
    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.5s;
} */

/* ===== Image ===== */
.featured-image {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    
}


/* Red tag */
.featured-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background:var(--primary-color);
    color: #fff;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
}

/* ===== Content ===== */
.featured-content {
    padding: 18px;
}

.featured-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.featured-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.featured-location i {
    color: #333;
    margin-right: 5px;
}

.featured-price {
    font-size: 15px;
    color: #000;
}

/* ===== Swiper Fix ===== */
.swiper {
    width: 100%;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    height: auto;
}
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}
/* you tube video css */
/* ===== Video Section ===== */
/* ===== Video Slider ===== */
.video-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 12px 15px;
}

.video-info h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.video-info p {
    font-size: 13px;
    color: #666;
}



/* ===== Verified Section ===== */
.verified-properties {
    background: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

/* ===== Card ===== */
.verified-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    transition: .3s ease;
    position: relative;
}

.verified-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,.12);
}

/* ===== Image ===== */
.verified-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Top left image count */
.image-count {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,.7);
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 6px;
}

/* Top right selling */
.selling-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #26c6da;
    color: #fff;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 6px;
}

/* Bottom price strip */
.price-strip {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #c2185b, #f44336);
    color: #fff;
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* ===== Content ===== */
.verified-content {
    padding: 16px;
    position: relative;
}

.property-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.property-location,
.property-area {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.property-location i,
.property-area i {
    color: #444;
    margin-right: 6px;
}

/* Wishlist */
.wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 18px;
    color: #e91e63;
    cursor: pointer;
}



/* Services Section */
.services-section {
    background-color: var(--light-bg);
}

.service-card {
    padding: 30px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 140, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h4 {
    font-size: 20px;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    font-size: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: #ffc107;
}

/* Localities Section */
.locality-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.locality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.locality-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 140, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.locality-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

/* Blog Section */
.blog-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 20px;
}

/* Partners Section */
.partner-logo {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-logo i {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    color: white;
}

/* Stats Section */
.stat-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* FAQ Section */
.accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 66, 0.25);
}

.accordion-body {
    padding: 1.5rem;
}

/* Newsletter Section */
.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    .locality-card {
        margin-bottom: 1rem;
    }
    
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .partner-logo {
        margin-bottom: 1rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Trusted Developers Section Styles */
.trusted-developers {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.trusted-developers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.developer-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.developer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 140, 66, 0.3);
}

.developer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--light-bg);
    transition: all 0.3s ease;
}

.developer-card:hover .developer-logo {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.developer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 30px;
}

.developer-name {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.rating {
    margin-bottom: 10px;
}

.rating i {
    font-size: 14px;
}

.projects-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.projects-badge .badge {
    font-size: 11px;
    padding: 4px 10px;
    font-weight: 500;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.benefit-card {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 66, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    color: var(--primary-color);
    font-size: 24px;
}

.bg-theme-light {
    background-color: #dff6f9 !important;
    border: 1px solid rgba(255, 140, 66, 0.1);
}
.bg-theme-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.btn-theme {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 600;
}

.btn-theme:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.btn-outline-theme {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: transparent;
    font-weight: 600;
}

.btn-outline-theme:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .developer-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 20px;
        margin-bottom: 15px;
    }
}

/* Why Choose Us Section Styles */
.why-choose-us {
    background-color: var(--light-bg);
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.feature-card {
    background: white;
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 140, 66, 0.3);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 179, 71, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scale(1.1);
}

.icon-wrapper i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper i {
    color: white;
}

.feature-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list i {
    color: #27ae60;
    font-size: 14px;
    margin-right: 10px;
}

.experience-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.experience-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    animation: float 20s linear infinite;
}

.testimonial-highlight {
    background: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 140, 66, 0.1);
}

.testimonial-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.testimonial-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.process-step {
    padding: 20px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.number-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
    position: relative;
}

.number-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 140, 66, 0.3);
    animation: spin 10s linear infinite;
}

.cta-box {
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 50px 40px;
    border: 2px dashed rgba(255, 140, 66, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-dark));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .feature-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper i {
        font-size: 28px;
    }
    
    .experience-card,
    .testimonial-highlight {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .process-step {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .number-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .feature-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 14px;
    }
}

/* City Snapshot Section Styles */
.city-snapshot {
    background-color: #fff;
    position: relative;
}

.city-snapshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.city-header {
    position: relative;
    padding-bottom: 15px;
}

.city-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.city-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.city-stat-badge {
    background-color: var(--light-bg);
    border: 1px solid rgba(255, 140, 66, 0.2);
    font-size: 14px;
}

.city-stat-badge strong {
    color: var(--primary-color);
}

.city-description-card {
    background-color: var(--light-bg);
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.city-description-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 140, 66, 0.3);
}

.city-description {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin: 20px 0;
}

.city-highlights h6,
.city-landmarks h6 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.city-highlights h6::after,
.city-landmarks h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.city-highlights .row {
    margin-top: 15px;
}

.city-highlights .col-md-6 {
    margin-bottom: 10px;
}

.city-highlights i {
    color: #27ae60;
    font-size: 14px;
    min-width: 20px;
}

.city-landmarks .badge {
    font-size: 12px;
    padding: 6px 14px;
    margin: 3px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.city-landmarks .badge:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.city-stats-grid .stat-card {
    background: white;
    border: 1px solid rgba(255, 140, 66, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.city-stats-grid .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 140, 66, 0.3);
}

.city-stats-grid .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.city-stats-grid .stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 14px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon {
    opacity: 0.7;
}

.property-type-card {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid transparent;
}

.property-type-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 66, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--light-bg);
}

.property-type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 179, 71, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.property-type-card:hover .property-type-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scale(1.1);
}

.property-type-card:hover .property-type-icon i {
    color: white !important;
}

.property-type-card h6 {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.property-type-card small {
    font-size: 13px;
    color: #666;
}

.price-trends-card {
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 140, 66, 0.2);
    position: relative;
    overflow: hidden;
}

.price-trends-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,140,66,0.05) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.3;
    animation: float 20s linear infinite;
}

.price-trends-card h5 {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .city-description-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .city-stats-grid .stat-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .property-type-card {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .property-type-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .property-type-icon i {
        font-size: 1.5rem !important;
    }
    
    .price-trends-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .city-tagline {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .city-description {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .city-landmarks .badge {
        font-size: 11px;
        padding: 5px 10px;
        margin: 2px;
    }
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
}

.footer .logo-icon {
    color: var(--primary-color);
}

.footer .brand-name {
    color: white;
    /* font-family: 'Roboto Condensed', sans-serif; */
}

.footer-text {
    color: #bbb;
    line-height: 1.6;
}

.footer h5 {
    color: white;
    font-size: 18px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    color: #aaa;
    font-size: 14px;
}

/* Custom Utilities */
.rounded-lg {
    border-radius: 12px !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

/* Animation for property cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-card {
    animation: fadeInUp 0.5s ease-out;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .search-input-group .col-lg-1 {
        margin-top: 1rem;
    }
    
    .search-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .search-tabs {
        flex-wrap: wrap;
    }
    
    .search-tab {
        flex: 1;
        min-width: 120px;
        text-align: center;
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .quick-searches {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Floating WhatsApp Button Styles */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    color: white;
    font-size: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn i {
    animation: shake 3s infinite;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #333;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Shake Animation */
@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    5%, 15% {
        transform: rotate(-10deg);
    }
    10%, 20% {
        transform: rotate(10deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Mobile par tooltip hide karo */
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .whatsapp-btn {
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    }
}