/* Enhanced Styles for Glossy Look Front Page */

/* Import Google Fonts for a more modern look */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables for consistent theming */
:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --primary-gradient: linear-gradient(135deg, #3498db, #2c3e50);
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #1a1a1a;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 20px;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Glossy Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-fast);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 52px;
    overflow: hidden;
    padding: 0.3em 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15);
}

.logo::before {
    content: '';
    display: inline-block;
    width: 42px;
    height: 42px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 12px;
    flex-shrink: 0;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover::before {
    transform: scale(1.05);
}

.logo-content {
    position: relative;
    display: inline-block;
    height: 100%;
    line-height: 1.25;
    padding-top: 2px;
}

.logo .english,
.logo .hindi {
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    backface-visibility: hidden;
    transform-origin: left center;
}

.logo .hindi {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: var(--primary-color);
    text-align: left;
    transform: translateY(0) scale(0.98);
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.logo:hover .english {
    transform: translateY(-100%);
}

.logo:hover .hindi {
    opacity: 1;
    transform: translateY(-100%) scale(1);
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
        height: 46px;
    }
    
    .logo::before {
        width: 36px;
        height: 36px;
        margin-right: 8px;
    }
}

/* Adjust the logo content in HTML */
.logo-content {
    display: block;
    position: relative;
    height: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-medium);
    border-radius: 2px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.login-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2980b9, #1a5276);
    transition: all var(--transition-medium);
    z-index: -1;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.login-btn:hover::before {
    left: 0;
}

/* Enhanced Hero Section */
main {
    margin-top: 70px;
}

.hero {
    height: 90vh;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero .swiper {
    width: 100%;
    height: 100%;
}

.hero .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar input {
    padding: 1rem 1.5rem;
    width: 70%;
    border: none;
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.search-bar input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3), var(--shadow-md);
}

.search-bar button {
    padding: 1rem 1.8rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.search-bar button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2980b9, #1a5276);
    transition: all var(--transition-medium);
    z-index: -1;
}

.search-bar button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.search-bar button:hover::before {
    left: 0;
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
    background: rgba(52, 152, 219, 0.7);
    transform: scale(1.1);
}

.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
    font-size: 1.5rem;
}

.hero .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
    width: 12px;
    height: 12px;
    transition: all var(--transition-fast);
}

.hero .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* Stats Section with Animation */
.stats-section {
    padding: 3rem 5%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    flex: 1;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(44, 62, 80, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
}

.stat-item:hover i {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.stat-count {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Properties Section */
.properties {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.properties h2, .land-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.8rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.properties h2::after, .land-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.property-filter {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    background: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: all var(--transition-medium);
    z-index: -1;
}

.filter-btn:hover, .filter-btn.active {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.filter-btn:hover::before, .filter-btn.active::before {
    left: 0;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.property-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

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

/* Mobile Menu Button Styles */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: none;
    border: none;
    padding: 0.5rem;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: none; /* Hide hamburger menu on mobile */
    }
    
    .property-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto 0;
    }
    
    .property-card {
        max-width: 100%;
    }
}

.property-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--shadow-lg);
}

.property-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    transform: translateZ(0);
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.3));
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.property-card:hover .property-image::before {
    opacity: 1;
}

.property-info {
    padding: 1.8rem;
    position: relative;
}

.property-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    transition: color var(--transition-fast);
}

.property-card:hover .property-info h3 {
    color: var(--primary-color);
}

.price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location {
    color: #7f8c8d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
}

.details {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details span:nth-child(1)::before {
    content: '\f236';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
}

.details span:nth-child(2)::before {
    content: '\f2cd';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
}

.details span:nth-child(3)::before {
    content: '\f1fe';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
}

/* Land Section */
.land-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.land-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem auto;
}

.land-feature {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.land-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    transition: height var(--transition-medium);
    z-index: -1;
}

.land-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.land-feature:hover::before {
    height: 100%;
    opacity: 0.1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(44, 62, 80, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all var(--transition-fast);
}

.land-feature:hover .feature-icon {
    transform: rotateY(360deg);
    background: var(--primary-gradient);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

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

.land-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    transition: color var(--transition-fast);
}

.land-feature:hover h3 {
    color: var(--primary-color);
}

.land-feature h3.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.land-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Land Item Styling */
.land-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.land-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.land-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.land-item:hover img {
    transform: scale(1.1);
}

.land-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transform: translateY(0);
    transition: transform var(--transition-medium);
}

.land-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.land-overlay p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-view {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    margin-top: 0.5rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: all var(--transition-medium);
    z-index: -1;
}

.btn-view:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-view:hover::before {
    left: 0;
}

.land-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .land-gallery {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .land-features {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .contact-form-container {
        background: white;
        border-radius: var(--border-radius-lg);
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    @media (max-width: 768px) {
        .contact-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .form-row {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .contact-map iframe {
            height: 300px;
        }
        
        .contact-form-container {
            padding: 1.5rem;
        }
        
        .btn-submit {
            width: 100%;
        }
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .property-info h3 {
        font-size: 1.2rem;
    }
    
    .details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 768px) {
    .floating-contact-buttons {
        position: fixed;
        left: 15px;
        bottom: 85px; /* Above mobile bottom navigation */
        flex-direction: column;
        gap: 12px;
        z-index: 1001;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .mobile-menu-btn {
        display: none; /* Hide hamburger menu */
    }
    
    .nav-links {
        display: none; /* Hide top navigation links on mobile */
    }
    
    .logo {
        font-size: 1.6rem;
        text-align: center;
        margin: 0 auto; /* Center the logo */
    }
    
    .logo .logo-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.2;
    }
    
    .logo .english {
        font-size: 1.6rem;
        font-weight: 700;
    }
    
    .logo .hindi {
        font-size: 1.1rem;
        font-weight: 500;
        opacity: 0.8;
        position: static; /* Remove absolute positioning */
        transform: none; /* Remove transform */
        color: var(--primary-color);
    }
    
    /* Simplify logo hover effect for mobile */
    .logo:hover .english {
        transform: none;
    }
    
    .logo:hover .hindi {
        transform: none;
    }
    
    /* Adjust nav layout for mobile */
    .nav {
        justify-content: center; /* Center the logo */
        padding: 1rem 2rem;
    }
}

@keyframes slideInMobile {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    width: 90%;
    max-width: 500px;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s;
}

.close:hover {
    color: var(--secondary-color);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 12px 0 8px 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 65px;
    position: relative;
}

.mobile-bottom-nav .nav-item i {
    font-size: 22px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-bottom-nav .nav-item.active {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.mobile-bottom-nav .nav-item.active i {
    transform: scale(1.1);
    color: #007bff;
}

.mobile-bottom-nav .nav-item:hover {
    color: #007bff;
    transform: translateY(-2px);
}

.mobile-bottom-nav .nav-item:active {
    transform: translateY(0) scale(0.95);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 576px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}