* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --primary-black: #1A1A1A;
    --primary-white: #FFFFFF;
    --muted-grey: #F8F8F8;
    --dark-grey: #333333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    display: block;
    width: 100%;
    z-index: 1000;
    padding: 0px;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgb(212 235 221) 0%, rgba(255, 255, 255, 1) 128%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled {
    padding: 0px;
    background: linear-gradient(180deg, rgb(212 235 221) 0%, rgba(255, 255, 255, 1) 128%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .logo img{
    height: 100px;
 }
.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.back-home {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-home:hover {
    color: var(--primary-gold);
}



/* Navigation Tabs */
.project-nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    z-index: 100;
}

.nav-tabs {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 0 50px;
    border: 0;
}

.tab-link {
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.tab-link.active,
.tab-link:hover {
    background: var(--primary-gold);
    color: white;
}

/* Content Sections */
.content-section {
    display: none;
    padding: 40px 0;
}

.content-section.active {
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--primary-black);
    letter-spacing: -1px;
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.overview-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--dark-grey);
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-list li i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.project-stats {
    background: var(--muted-grey);
    padding: 40px;
    border-radius: 20px;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-grey);
    margin-top: 5px;
}

.map-container {
    height: 400px;
    background: var(--muted-grey);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-grey);
    font-size: 1.2rem;
}

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}



.plan-info {
    padding: 30px;
}

.plan-info h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.plan-info p {
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.view-plan-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-plan-btn:hover {
    background: #B8941F;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    z-index: 3;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* MLP Section */
.mlp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #B8941F;
    transform: translateY(-2px);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.action-card {
    background: var(--muted-grey);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.action-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.action-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.action-card p {
    color: var(--dark-grey);
    margin-bottom: 25px;
}

.action-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-black);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--dark-grey);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    background: var(--primary-black);
    color: white;
    padding: 50px;
    border-radius: 20px;
}

.contact-info h4 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    width: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-grid,
    .plans-grid,
    .mlp-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-container1 {
        padding: 0 20px;
    }

   

    .project-title {
        font-size: 2.5rem;
    }

    .nav-tabs {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 20px;
    }

    .tab-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 20px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }
}

.content-area {
flex-grow: 1;
padding: 20px;
background-color: #f9f9f9;
}
.wing-image {
max-width: 100%;
height: auto;
display: block;
}
#wingContent {
padding: 0;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
}
#unitModalImage {
max-width: 100%;
height: auto;
}

.overlay-area {
position: absolute;
cursor: pointer;
background-color: rgba(252, 176, 58, 0);
border: 2px solid transparent;
transition: background-color 0.2s, border 0.2s;
z-index: 2;
}
/* .overlay-area:hover {
background-color: rgba(252, 176, 58, 0.1);
border: 2px solid #fcb03a;
} */
.hover-shape {
display: none;
position: absolute;
width: 100%;
height: 100%;
object-fit: contain;
pointer-events: none;
z-index: 5;
}
.overlay-area:hover .hover-shape {
display: block;
}
.image-container {
position: relative;
width: 100%;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.plan-img{
width: 100%;

}
.wings{
display: flex;
text-decoration: none;
justify-content: space-between;
width: 100%;

}
.nav-link{
color: #fff;
background-color: #007e1f;
border-radius: 20px;
text-decoration: none;
padding: 10px 20px;

}
.nav-link:hover{
color: #fff;
background-color: #007e1f;
text-decoration: none;
padding: 10px 20px;

}

.nav-tabs .nav-link.active {
color: #fff;
background-color: #000000 !important;
border-radius: 20px;
text-decoration: none;
padding: 10px 20px;

}
.wings a li{
list-style: none;
}

/* Main Carousel Styles */
.carousel {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CAROUSEL & LIGHTBOX STYLES ===== */

/* Navigation Arrows */
.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.9);
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
color: #333;
transition: all 0.3s ease;
z-index: 10;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
background: white;
transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
left: 20px;
}

.carousel-btn.next {
right: 20px;
}

/* Thumbnail Navigation */
.thumbnails {
display: flex;
gap: 12px;
padding: 20px;
background: white;
overflow-x: auto;
scrollbar-width: thin;
}

.thumbnails::-webkit-scrollbar {
height: 6px;
}

.thumbnails::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 3px;
}

.thumbnails::-webkit-scrollbar-thumb {
background: #667eea;
border-radius: 3px;
}

.thumbnail {
min-width: 80px;
height: 60px;
border-radius: 8px;
overflow: hidden;
cursor: pointer;
border: 3px solid transparent;
transition: all 0.3s ease;
opacity: 0.6;
}

.thumbnail:hover {
opacity: 1;
transform: scale(1.05);
}

.thumbnail.active {
border-color: #667eea;
opacity: 1;
}

.thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* Lightbox Styles */
.lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.95);
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
opacity: 0;
transition: opacity 0.3s ease;
}

.lightbox.active {
display: flex;
opacity: 1;
}

.lightbox-content {
position: relative;
max-width: 90%;
max-height: 90%;
display: flex;
align-items: center;
justify-content: center;
}

.lightbox img {
max-width: 100%;
max-height: 90vh;
border-radius: 8px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-btn {
position: absolute;
background: rgba(255, 255, 255, 0.9);
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #333;
transition: all 0.3s ease;
}

.lightbox-btn:hover {
background: white;
transform: scale(1.1);
}

.lightbox-btn.prev {
left: 20px;
}

.lightbox-btn.next {
right: 20px;
}

.lightbox-close {
position: absolute;
top: 20px;
right: 20px;
background: rgba(255, 255, 255, 0.9);
border: none;
width: 45px;
height: 45px;
border-radius: 50%;
cursor: pointer;
font-size: 28px;
color: #333;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
z-index: 10001;
}

.lightbox-close:hover {
background: white;
transform: rotate(90deg);
}

.lightbox-counter {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
background: rgba(255, 255, 255, 0.9);
padding: 10px 20px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
color: #333;
}

/* Mobile Responsiveness for Carousel */
@media (max-width: 768px) {
.carousel-btn, .lightbox-btn {
width: 40px;
height: 40px;
font-size: 18px;
}

.carousel-btn.prev {
left: 10px;
}

.carousel-btn.next {
right: 10px;
}

.thumbnail {
min-width: 60px;
height: 45px;
}

.thumbnails {
gap: 8px;
padding: 15px;
}

.lightbox-close {
top: 10px;
right: 10px;
width: 40px;
height: 40px;
font-size: 24px;
}

.lightbox-counter {
bottom: 20px;
font-size: 12px;
padding: 8px 16px;
}
}