*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f8f8f8;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 70px;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:1000;
}

.logo img{
height:90px;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
color:#0b1d48;
font-weight:600;
}

nav a.active,
nav a:hover{
color:#c89b2b;
}

/* HERO */


.hero{
    height:90vh;
    background:url("images/banner.jpeg");
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    padding-left:100px;
}

.hero-overlay{
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(255,255,255,0.45);
}

.hero-content{
position:relative;
max-width:600px;
z-index:2;
}

.subtitle{
color:#c89b2b;
font-weight:bold;
letter-spacing:2px;
}

.hero-content h1{
font-size:75px;
line-height:1.1;
color:#07173a;
margin:20px 0;
}

.hero-content h1 span{
display:block;
color:#c89b2b;
}

.hero-content p{
font-size:22px;
line-height:1.6;
margin-bottom:30px;
color:#333;
}

.btn{
display:inline-block;
padding:14px 30px;
background:#c89b2b;
color:white;
text-decoration:none;
border-radius:5px;
}

/* FEATURES */

.features{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:60px 80px;
background:#07173a;
color:white;
}

.feature-box{
text-align:center;
}

.feature-box i{
font-size:45px;
margin-bottom:15px;
color:#c89b2b;
}

.feature-box h3{
margin-bottom:10px;
}

/* WELCOME */

.welcome{
display:flex;
align-items:center;
gap:50px;
padding:80px;
background:white;
}

.welcome-image img{
width:100%;
border-radius:15px;
}

.welcome-image{
flex:1;
}

.welcome-text{
flex:1;
}

.welcome-text h2{
font-size:40px;
color:#07173a;
margin-bottom:20px;
}

.welcome-text p{
line-height:1.8;
margin-bottom:25px;
}

/* FOOTER */

footer{
background:#07173a;
padding:30px;
text-align:center;
color:white;
}
.page-banner{
    background:#07173a;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.page-banner h1{
    font-size:50px;
}

.about-section{
    display:flex;
    gap:50px;
    padding:80px;
    background:white;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
}

.about-content{
    flex:1;
}

.about-content h2{
    color:#07173a;
    margin-bottom:20px;
    font-size:40px;
}

.about-content p{
    line-height:1.8;
    margin-bottom:15px;
}

.about-content h3{
    margin-top:20px;
    color:#c89b2b;
}

.about-content ul{
    margin-top:15px;
    padding-left:20px;
}

.about-content li{
    margin-bottom:10px;
}
.project-banner{
    background:linear-gradient(rgba(7,23,58,.8),
    rgba(7,23,58,.8)),
    url("images/banner.jpeg");
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:100px 20px;
}

.project-banner h1{
    font-size:60px;
    margin-bottom:15px;
}

.project-section{
    display:flex;
    gap:50px;
    padding:80px;
    background:#fff;
}

.project-image{
    flex:1;
}

.project-image img{
    width:100%;
    border-radius:15px;
}

.project-content{
    flex:1;
}

.tag{
    background:#c89b2b;
    color:white;
    padding:8px 15px;
    border-radius:30px;
}

.project-content h2{
    margin:20px 0;
    font-size:42px;
    color:#07173a;
}

.project-content p{
    line-height:1.8;
    margin-bottom:15px;
}

.highlights{
    margin-top:20px;
}

.highlight{
    margin-bottom:12px;
}

.highlight i{
    color:#c89b2b;
    margin-right:10px;
}

.amenities{
    padding:80px;
    background:#f8f8f8;
    text-align:center;
}

.amenities h2{
    margin-bottom:40px;
    color:#07173a;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
}

.card i{
    font-size:40px;
    color:#c89b2b;
    margin-bottom:15px;
}

.location-advantages{
    padding:80px;
}

.location-advantages h2{
    color:#07173a;
    margin-bottom:20px;
}

.location-advantages li{
    margin-bottom:12px;
}
.location-section{
    display:flex;
    gap:50px;
    padding:80px;
    background:#fff;
    align-items:center;
}

.location-content{
    flex:1;
}

.location-content h2{
    color:#07173a;
    margin-bottom:20px;
    font-size:40px;
}

.location-content p{
    line-height:1.8;
    margin-bottom:25px;
}

.location-points div{
    margin-bottom:15px;
    font-size:18px;
}

.location-points i{
    color:#c89b2b;
    margin-right:10px;
}

.location-map{
    flex:1;
}

.location-map img{
    width:100%;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.map-btn{
    display:inline-block;
    margin-top:25px;
    padding:15px 30px;
    background:#c89b2b;
    color:white;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.map-btn:hover{
    background:#07173a;
}
/* GALLERY PAGE */

.gallery-section{
    padding:80px;
    background:#f8f8f8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-item img:hover{
    transform:scale(1.08);
}
.gallery-intro{
    text-align:center;
    padding:60px 100px;
    background:#ffffff;
}

.gallery-tag{
    background:#c89b2b;
    color:white;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
    letter-spacing:1px;
}

.gallery-intro h2{
    margin:25px 0;
    color:#07173a;
    font-size:42px;
}

.gallery-intro p{
    max-width:900px;
    margin:15px auto;
    line-height:1.9;
    color:#555;
    font-size:17px;
}
.gallery-intro{
    text-align:center;
    padding:60px 100px;
    background:#ffffff;
}

.gallery-tag{
    background:#c89b2b;
    color:white;
    padding:8px 20px;
    border-radius:30px;
    font-weight:bold;
}

.gallery-intro h2{
    margin:20px 0;
    color:#07173a;
    font-size:42px;
}

.gallery-intro p{
    max-width:900px;
    margin:15px auto;
    line-height:1.8;
    color:#555;
}

.gallery-item h4{
    text-align:center;
    padding:15px;
    color:#07173a;
    background:white;
}
/* GALLERY PAGE */

.gallery-section{
    padding:80px;
    background:#f8f8f8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-item img:hover{
    transform:scale(1.08);
}
.gallery-ad{
    text-align:center;
    padding:60px 80px;
    background:#ffffff;
}

.ad-tag{
    background:#c89b2b;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
}

.gallery-ad h2{
    font-size:48px;
    color:#07173a;
    margin:20px 0;
}

.gallery-ad p{
    max-width:900px;
    margin:0 auto 30px;
    line-height:1.8;
    color:#555;
    font-size:18px;
}

.ad-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    max-width:900px;
    margin:auto;
}

.ad-features div{
    background:#f8f8f8;
    padding:15px;
    border-radius:10px;
    font-weight:600;
    color:#07173a;
}
.contact-section{
    padding:80px;
    background:#f8f8f8;
}

.contact-card{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-card h2{
    text-align:center;
    color:#07173a;
    margin-bottom:30px;
}

.contact-info p{
    margin-bottom:25px;
    font-size:18px;
    line-height:1.8;
}

.contact-info i{
    color:#c89b2b;
    margin-right:10px;
}

.buttons{
    text-align:center;
    margin-top:30px;
}

.contact-btn{
    display:inline-block;
    margin:10px;
    padding:15px 30px;
    background:#07173a;
    color:white;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.brochure-btn{
    background:#c89b2b;
}

.developer-section{
    padding:80px;
    text-align:center;
    background:white;
}

.developer-section h2{
    color:#07173a;
    margin-bottom:25px;
    font-size:42px;
}

.developer-section p{
    max-width:900px;
    margin:15px auto;
    line-height:1.9;
    color:#555;
    font-size:17px;
}
.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    height:80px;
    width:auto;
}

.logo-text h2{
    color:#07173a;
    font-size:28px;
    margin:0;
    font-weight:700;
    letter-spacing:1px;
}

.logo-text p{
    color:#c89b2b;
    font-size:14px;
    margin-top:3px;
    font-weight:600;
}
.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    height:80px;
    width:auto;
}

.logo-text h2{
    color:#07173a;
    font-size:28px;
    margin:0;
    font-weight:700;
    letter-spacing:1px;
}

.logo-text p{
    color:#c89b2b;
    font-size:14px;
    margin-top:3px;
    font-weight:600;
}
.contact-section{
    padding:80px;
    background:#f8f8f8;
}

.contact-card{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-card h2{
    text-align:center;
    color:#07173a;
    margin-bottom:30px;
}

.contact-info p{
    margin-bottom:25px;
    font-size:18px;
    line-height:1.8;
}

.contact-info i{
    color:#c89b2b;
    margin-right:10px;
}

.buttons{
    text-align:center;
    margin-top:30px;
}

.contact-btn{
    display:inline-block;
    margin:10px;
    padding:15px 30px;
    background:#07173a;
    color:white;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.brochure-btn{
    background:#c89b2b;
}

.developer-section{
    padding:80px;
    text-align:center;
    background:white;
}

.developer-section h2{
    color:#07173a;
    margin-bottom:25px;
    font-size:42px;
}

.developer-section p{
    max-width:900px;
    margin:15px auto;
    line-height:1.9;
    color:#555;
    font-size:17px;
}
.welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column; /* stacks content vertically */
    padding: 50px 20px;
}

.welcome-text {
    max-width: 700px;
}

.welcome-text h2 {
    margin-bottom: 15px;
}

.welcome-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    letter-spacing: 1px;
}
/* ABOUT SECTION */

.about-section{
    display:flex;
    align-items:center;
    gap:50px;
    padding:70px 10%;
    background:#fff;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.about-content{
    flex:1;
}

.about-content h2{
    font-size:36px;
    color:#222;
    margin-bottom:20px;
}

.about-content p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:15px;
}

.about-content h3{
    margin-top:25px;
    margin-bottom:15px;
    color:#c89b3c;
}

.about-content ul{
    padding-left:20px;
}

.about-content ul li{
    margin-bottom:10px;
    color:#444;
}


/* MISSION & VISION SECTION */

.mission-vision{
    display:flex;
    gap:30px;
    padding:70px 10%;
    background:#f7f7f7;
}

.mission-box,
.vision-box{
    flex:1;
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.mission-box h2{
    background:#c89b3c;
    color:#fff;
    text-align:center;
    padding:15px;
    border-radius:8px;
    margin-bottom:20px;
}

.vision-box h2{
    background:#333;
    color:#fff;
    text-align:center;
    padding:15px;
    border-radius:8px;
    margin-bottom:20px;
}

.mission-box p,
.vision-box p{
    line-height:1.8;
    color:#555;
    text-align:justify;
}


/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .about-section{
        flex-direction:column;
    }

    .mission-vision{
        flex-direction:column;
    }

    .about-content h2{
        font-size:28px;
    }

}
/* ABOUT SECTION */

.about-section{
    max-width:1200px;
    margin:50px auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    gap:40px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    height:auto;
    display:block;
    border-radius:10px;
}

.about-content{
    flex:1;
}

.about-content h2{
    font-size:32px;
    margin-bottom:15px;
}

.about-content p{
    line-height:1.8;
    margin-bottom:15px;
}

.about-content ul{
    padding-left:20px;
}

.about-content li{
    margin-bottom:8px;
}


/* MISSION & VISION */

.mission-vision{
    max-width:1200px;
    margin:50px auto;
    padding:0 20px;
    display:flex;
    gap:30px;
}

.mission-box,
.vision-box{
    flex:1;
    background:#f8f8f8;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.mission-box h2{
    background:#c89b3c;
    color:#fff;
    padding:12px;
    text-align:center;
    border-radius:6px;
    margin-bottom:15px;
}

.vision-box h2{
    background:#333;
    color:#fff;
    padding:12px;
    text-align:center;
    border-radius:6px;
    margin-bottom:15px;
}

.mission-box p,
.vision-box p{
    line-height:1.8;
    text-align:justify;
}


/* MOBILE */

@media (max-width: 768px){

    .about-section{
        flex-direction:column;
    }

    .mission-vision{
        flex-direction:column;
    }

    .about-content h2{
        font-size:28px;
    }
}
/* CONTACT SECTION */

.contact-section {
    padding: 70px 10%;
    background: #f8f8f8;
}

.contact-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #222;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.contact-info i {
    color: #c89b3c;
    margin-right: 10px;
}

/* BUTTONS */

.buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #c89b3c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #a97d25;
}

.brochure-btn {
    background: #333;
}

.brochure-btn:hover {
    background: #111;
}

/* DEVELOPER SECTION */

.developer-section {
    padding: 70px 10%;
    background: #fff;
    text-align: center;
}

.developer-section h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 25px;
}

.developer-section p {
    max-width: 900px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

    .contact-card {
        padding: 25px;
    }

    .contact-card h2,
    .developer-section h2 {
        font-size: 28px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 220px;
        text-align: center;
    }
}

/* ENQUIRY SECTION */

.enquiry-section{
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8e7c9, #fff5e6);
    text-align: center;
}

.enquiry-section h2{
    font-size: 36px;
    color: #222;
    margin-bottom: 30px;
}

.enquiry-form{
    max-width: 600px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.enquiry-form input,
.enquiry-form textarea{
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    background: #f9f9f9;
    box-sizing: border-box;
    transition: 0.3s;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus{
    border-color: #c89b3c;
    background: #fff;
    outline: none;
}

.enquiry-form button{
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #c89b3c, #e0b75a);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-form button:hover{
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200,155,60,0.4);
}