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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #cce7ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(22, 163, 74, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.contact-number {
    display: flex;
    align-items: center;
}

.contact-number .call-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-number .call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.contact-number .call-btn i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-left: 25px;
        margin-top: 7px;
        transition: all 0.3s ease;
    }

.nav-logo .logo-subtitle {
    margin-left: 5px;
}

.nav-logo .logo-image {
    width: 260px;
    height: 117px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('For-Nimbus-Group-Image-2-1.jpg.webp') no-repeat center center;
    background-size: cover;
    color: white;
    padding-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-content {
    flex: 1;
    padding: 0 20px;
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-top: 196px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}



.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.6s both;
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* About Section */
.about {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro {
    margin-bottom: 2.5rem;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.intro-badge i {
    font-size: 1rem;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}



.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.3rem;
    color: white;
}

.feature-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-content p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    position: relative;
    margin-top: 20px;
}

.about-image .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* About Images Layout */
.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-image-secondary {
    position: relative;
    margin-top: 20px;
}

.about-image-secondary .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-secondary img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image-secondary:hover img {
    transform: scale(1.05);
}

/* Projects Section */
.projects {
    padding: 60px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.project-content p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.project-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.project-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #3498db;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Payment Plans Section */
.payment-plans {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

.payment-content {
    margin-top: 50px;
}

.payment-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.highlight-text h3 {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 10px;
    font-weight: 700;
}

.highlight-subtitle {
    font-size: 1.3rem;
    color: #059669;
    margin-bottom: 30px;
    font-weight: 600;
}

.payment-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-features .feature i {
    color: #16a34a;
    font-size: 1.2rem;
}

.payment-features .feature span {
    color: #374151;
    font-weight: 500;
}

.payment-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
}

.payment-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover .payment-image {
    transform: scale(1.05);
}

.payment-note {
    text-align: center;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
}

.payment-note p {
    color: #92400e;
    font-size: 0.9rem;
    margin: 0;
}

/* Project Snapshot Section */
.project-snapshot {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.snapshot-content {
    margin-top: 50px;
}

.snapshot-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-text h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-text p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

.why-choose-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.why-choose-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-choose-header h3 i {
    color: #f39c12;
}

.why-choose-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.why-choose-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.feature-item:hover {
    background: #e9ecef;
}

.feature-item i {
    color: #27ae60;
    font-size: 1.1rem;
}

.feature-item span {
    color: #2c3e50;
    font-weight: 500;
}

.location-highlights {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-header h3 i {
    color: #e74c3c;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.location-item i {
    color: #3498db;
    font-size: 1.2rem;
}

.location-item span {
    color: #2c3e50;
    font-weight: 500;
}

/* Price List Section */
.price-list {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.price-content {
    max-width: 800px;
    margin: 0 auto;
}

.price-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.price-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
}

.price-table tr:hover {
    background: #f8f9fa;
}

.price-table td:last-child {
    font-weight: 600;
    color: #16a34a;
    font-size: 1.1rem;
}

.price-note {
    text-align: center;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 1rem;
}

.price-note p {
    color: #92400e;
    font-size: 0.9rem;
    margin: 0;
}

/* Floor Plan Section */
.floor-plan {
    padding: 60px 0;
    background: white;
}

.floor-plan-content {
    margin-top: 2rem;
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.floor-plan-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.floor-plan-image {
    height: 250px;
    overflow: hidden;
}

.floor-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.floor-plan-card:hover .floor-plan-image img {
    transform: scale(1.05);
}

.floor-plan-details {
    padding: 2rem;
}

.floor-plan-details h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.floor-plan-details p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.plan-specs i {
    color: #3498db;
    width: 16px;
}

/* Site Plan Section */
.site-plan {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.site-plan-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.site-plan-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.site-plan-image img {
    width: 100%;
    height: auto;
    display: block;
}

.site-plan-details {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-highlights h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.plan-highlights ul {
    list-style: none;
    padding: 0;
}

.plan-highlights li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.plan-highlights li:last-child {
    border-bottom: none;
}

.plan-highlights i {
    color: #27ae60;
    font-size: 1.1rem;
}

/* Construction Update Section */
.construction-update {
    padding: 60px 0;
    background: white;
}

.construction-content {
    margin-top: 2rem;
}

.construction-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.construction-status {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.status-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.status-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-icon i {
    font-size: 1.5rem;
    color: white;
}

.status-details {
    flex: 1;
}

.status-details h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.status-details .progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.status-details .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.status-details span {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Downloads Section */
.downloads {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.download-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.download-icon i {
    font-size: 2rem;
    color: white;
}

.download-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.download-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.download-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #7f8c8d;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2980b9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .contact-number {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }



    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

        .services-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-highlight {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .highlight-text h3 {
        font-size: 2rem;
    }
    
    .payment-features {
        grid-template-columns: 1fr;
    }
    
    .payment-images {
        grid-template-columns: 1fr;
    }
    
    .snapshot-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .why-choose-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-item {
        min-width: auto;
        justify-content: flex-start;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .price-table {
        overflow-x: auto;
    }
    
    .price-table table {
        min-width: 600px;
    }
    
    .floor-plan-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .site-plan-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .construction-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .construction-status {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .status-item {
        padding: 1.5rem;
    }
}

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

    .container {
        padding: 0 15px;
    }

    .project-card,
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}



/* Location Section */
.location {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.location-info {
    padding: 30px;
    background: #f0f8ff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-details h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-details h3 i {
    color: #e74c3c;
}

.location-details p {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.location-features {
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.feature i {
    color: #3498db;
    font-size: 1.2rem;
}

.feature span {
    color: #2c3e50;
    font-weight: 500;
}

.location-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.location-actions .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    border-radius: 15px;
}

/* Responsive Location */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .location-actions .btn {
        flex: none;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 0;
    top: 65%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    background: #f0f8ff;
    color: #333;
    padding: 15px 20px;
    border-radius: 50px 0 0 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: 100px;
    width: 50px;
    justify-content: center;
}

.floating-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.call-btn {
    background: #27ae60;
    color: white;
}

.call-btn:hover {
    background: #229954;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.enquiry-btn {
    background: #667eea;
    color: white;
}

.enquiry-btn:hover {
    background: #5a6fd8;
}

.floating-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.floating-btn span {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Enquiry Form */
.enquiry-form {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    background: white;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
}

.enquiry-form.active {
    right: 0;
}

.enquiry-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 20px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.enquiry-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.close-btn:hover {
    opacity: 0.8;
}

.enquiry-form-content {
    padding: 20px;
}

.enquiry-form-content .form-group {
    margin-bottom: 15px;
}

.enquiry-form-content input,
.enquiry-form-content select,
.enquiry-form-content textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.enquiry-form-content input:focus,
.enquiry-form-content select:focus,
.enquiry-form-content textarea:focus {
    outline: none;
    border-color: #3498db;
}

.enquiry-form-content textarea {
    resize: vertical;
    min-height: 80px;
}

.enquiry-form-content .btn {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
}

/* Mobile responsive for enquiry form */
@media (max-width: 768px) {
    .enquiry-form {
        width: 90%;
        right: -90%;
    }
    
    .floating-buttons {
        display: none;
    }
}

/* Loading Popup Styles */
.loading-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.loading-popup.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.5s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.loading-popup.active .loading-content {
    transform: scale(1);
}

.loading-image {
    margin-bottom: 20px;
}

.emi-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.emi-image:hover {
    transform: scale(1.05);
}

.loading-text h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-text p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-info {
    background: white;
    color: #2c3e50;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e9ecef;
}

.contact-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.contact-info p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-info i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.contact-info strong {
    font-weight: 700;
    font-size: 1.2rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.loading-spinner {
    margin: 20px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

.loading-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.loading-close:hover {
    background: #f8f9fa;
    color: #e74c3c;
    transform: scale(1.1);
}

/* Mobile responsive for loading popup */
@media (max-width: 768px) {
    .loading-content {
        padding: 20px;
        margin: 20px;
    }
    
    .loading-text h3 {
        font-size: 1.3rem;
    }
    
    .loading-text p {
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 12px;
        margin: 12px 0;
    }
    
    .contact-info p {
        font-size: 1rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info strong {
        font-size: 1.1rem;
    }
    
    .emi-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .loading-content {
        padding: 15px;
        margin: 15px;
    }
    
    .loading-text h3 {
        font-size: 1.2rem;
    }
    
    .loading-text p {
        font-size: 0.85rem;
    }
    
    .contact-info {
        padding: 10px;
        margin: 10px 0;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-info strong {
        font-size: 1rem;
    }
}

 