*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    overflow-x:hidden;
}

/* HEADER */

header{
    background:whitesmoke;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 40px;
}

.logo img{
    height:35px;
    display: block;
}

/* NAVIGATION */
nav a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
}

nav{
    display:flex;
    align-items:center;
    gap:30px;
}


nav{
    display:flex;
    gap:25px;
    align-items:center;
}

nav a{
    text-decoration:none;
    color:white;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}


nav a span{
    font-size:6px;
    letter-spacing:1px;
}
/* HERO SECTION */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-image{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-1;
}

/* Optional dark overlay */


.hero-content{
    position:relative;
    z-index:1;

    max-width:700px;

    padding-left:70px;
    padding-top:180px;
}

.hero-content h3{
    font-size:28px;
    color:white;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:85px;
    line-height:0.95;
    color:#dfe7e2;
    font-family:Georgia, serif;
}

.hero-content p{
    font-size:24px;
    color:white;
    margin-top:25px;
    max-width:550px;
}

.btn{
    display:inline-block;
    margin-top:30px;
    background:#c6cf8c;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#30473b;
}

/* MOBILE */

@media(max-width:768px){

header{
    flex-direction:column;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
    margin-top:15px;
}


.hero-content{
    padding:120px 25px;
}

.hero-content h1{
    font-size:45px;
}

.hero-content h3{
    font-size:20px;
}

.hero-content p{
    font-size:18px;
}
}
.fa-solid{
    line-height:1;
}

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.hero-content{
    position:absolute;
    top:50%;
    left:80px;
    transform:translateY(-50%);
    color:rgb(216, 22, 22);
    z-index:2;
}

/* NAVIGATION */

nav{
    display:flex;
    align-items:center;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:rgb(18, 17, 17);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

nav a i{
    font-size:32px;
    color:#7f9c95;
    margin-bottom:8px;
}

nav a span{
    font-size:14px;
    letter-spacing:1px;
    text-align:center;
}

nav a:hover i{
    color:#221d1d;
}

nav a:hover span{
    color:#c4bf87;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f5f5f5;
    color:#d2a280;
    line-height:1.6;
}

/* Banner */

.about-banner{
    background:url("images/pic.jpeg") center/cover no-repeat;
    height:350px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.about-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.about-banner h1{
    position:relative;
    color:#fff;
    font-size:60px;
    z-index:1;
}

/* Company Section */

.about-company{
    display:flex;
    gap:50px;
    align-items:center;
    padding:80px 10%;
    background:#fff;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:70px;
    line-height:1;
    color:#486556;
    margin-bottom:20px;
    font-family:Georgia, serif;
}

.about-text h3{
    font-size:32px;
    color:#333;
    margin-bottom:25px;
}

.about-text p{
    font-size:22px;
    line-height:1.8;
    color:#444;
    margin-bottom:20px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
}

/* Projects */

.projects{
    padding:80px 10%;
    text-align:center;
}

.projects h2{
    margin-bottom:40px;
    color:#486556;
}

.project-cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.card{
    background:#fff;
    width:320px;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.card h3{
    color:#486556;
}

.card span{
    display:inline-block;
    margin-top:10px;
    color:rgb(234, 42, 13);
    font-weight:bold;
}

/* Experience */

.experience{
    padding:80px 10%;
    background:#fff;
}

.experience h2{
    text-align:center;
    margin-bottom:40px;
    color:#486556;
}

table{
    width:100%;
    border-collapse:collapse;
}

table th{
    background:#486556;
    color:#fff;
    padding:15px;
}

table td{
    border:1px solid #ddd;
    padding:15px;
}

/* Testimonials */

.testimonials{
    padding:80px 10%;
    text-align:center;
}

.testimonials h2{
    margin-bottom:40px;
    color:#486556;
}

.testimonial-box{
    background:#fff;
    margin:20px auto;
    max-width:800px;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(154, 164, 13, 0.782);
}

.testimonial-box h4{
    margin-top:15px;
    color:#486556;
}

/* Footer */

.footer-note{
    background:#000;
    color:#fff;
    text-align:center;
    padding:8px;
}

/* Mobile */

@media(max-width:768px){

.about-company{
    flex-direction:column;
}

.about-banner h1{
    font-size:40px;
}

table{
    display:block;
    overflow-x:auto;
}
}
/* HEADER */

header{
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:6px 50px;
}
.hero,
.contact-hero,
.about-banner,
.gallery-hero{
    margin-top: 90px;
}

.logo img{
    height:80px;
}

nav{
    display:flex;
    align-items:center;
    gap:35px;
}
/* PROJECTS dropdown */

nav summary{
    list-style: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(6, 6, 6);
    text-decoration: none;
}

nav summary::-webkit-details-marker{
    display: none;
}

nav summary i{
    font-size: 30px;
    color: #7f9c95;
    margin-bottom: 8px;
    transition: 0.3s;
}

nav summary span{
    color: rgb(9, 9, 9);
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav summary:hover i{
    color: rgb(25, 23, 23);
}

nav summary:hover span{
    color: #7f9c95;
}

nav a{
    text-decoration:none;
    color:rgb(10, 10, 10);
    display:flex;
    flex-direction:column;
    align-items:center;
}

nav a i{
    font-size:30px;
    color:#7f9c95;
    margin-bottom:8px;
}

nav a span{
    font-size:14px;
    letter-spacing:1px;
}

nav a:hover i{
    color:rgb(32, 30, 30);
}

nav a:hover span{
    color:#7f9c95;
}

/* ================= HEADER ================= */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background: white;
    z-index: 1000;
    box-sizing: border-box;
}

/* ================= LOGO ================= */

.logo img{
    height: 80px;
}

/* ================= NAVIGATION ================= */

nav{
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a{
    text-decoration: none;
    color: #0f0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

nav a i{
    font-size: 30px;
    color: #7f9c95;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

nav a span{
    font-size: 14px;
    letter-spacing: 1px;
    color: #020202;
    transition: all 0.3s ease;
}

nav a:hover i{
    color: #151414;
}

nav a:hover span{
    color: #7f9c95;
}

/* ================= HERO SECTIONS ================= */

.hero,
.contact-hero,
.about-banner,
.gallery-hero{
    padding-top: 120px;   /* Space below the fixed header */
}
.big-heading{
    font-size:80px;
    line-height:0.95;
    color:rgb(235, 231, 231);
    font-family:Georgia, serif;
    font-weight:normal;
    margin-bottom:25px;
}





.projects-page{
    padding:80px 10%;
    text-align:center;
}

.project-container{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.project-box{
    width:400px;
    background:#0d0d0d;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(40, 192, 6, 0.563);
}

.project-box h2{
    color:#486556;
    margin-bottom:15px;
}

.project-box p{
    margin-bottom:20px;
}

.btn{
    background:#486556;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:30px;
}



.dropdown{
    position:relative;
    text-align:center;
}

.dropdown summary{
    list-style:none;
    cursor:pointer;
    color:white;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.dropdown summary::-webkit-details-marker{
    display:none;
}

.dropdown summary i{
    font-size:32px;
    color:#7f9c95;
    margin-bottom:8px;
}

.dropdown-content{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    background:white;
    min-width:220px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(4, 180, 22, 0.697);
    z-index:999;
}

.dropdown-content a{
    display:block;
    padding:12px;
    text-decoration:none;
    color:#333;
}

.dropdown-content a:hover{
    background:#f2f2f2;
}




body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

/* HERO */
.project-hero {
  height: 100vh;
  background: url("hero1.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(72, 186, 6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
 
}

.hero-content {
  position: relative;
  z-index: 2;
}

.project-hero h1 {
  font-size: 55px;
  margin: 0;
}

.project-hero h3 {
  color: gold;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: gold;
  color: black;
  text-decoration: none;
  margin-top: 15px;
  font-weight: bold;
  border-radius: 5px;
}

/* SECTIONS */
.section {
  padding: 30PX 10%;
  background: white;
}

.section.dark {
  background: #111;
  color: white;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: #f0f0f0;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
}

.section.dark .card {
  background: #d8e8e6;
  color: rgb(23, 25, 21);
}

/* LIST */
.list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.list li {
  padding: 8px;
  font-size: 18px;
}

/* IMAGES */
.full-img {
  width: 100%;
  border-radius: 10px;
}

/* CONTACT */


.contact-box{
    text-align:center;
    background:#f9f9f9;
    padding:35px;
    border-radius:10px;
    font-size:24px;   /* Increase overall text size */
    line-height:1.8;
}

.contact-box p{
    font-size:24px;
    margin-bottom:15px;
}

.contact-box b{
    font-size:30px;   /* Contact heading bigger */
    color:#486556;
}

/* CTA */
.cta {
  background: gold;
  text-align: center;
  padding: 40px;
  font-size: 22px;
  font-weight: bold;
}


.project-hero{
    height:100vh;
    background-image:url("hero1.jpeg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(21, 188, 175, 0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
}

/* =========================
   IMPERIAL HERO SECTION
========================= */

.project-hero{
    height:100vh;
    width:100%;
    background:url("hero1.png") center center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(16, 172, 183, 0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#b90c0c;
    max-width:800px;
    padding:20px;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:10px;
    letter-spacing:3px;
    text-shadow:2px 2px 10px rgba(0,0,0,0.6);
}

.hero-content h3{
    font-size:28px;
    color:#f5c542;
    margin-bottom:15px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    background:#f5c542;
    color:#000;
    text-decoration:none;
    font-weight:bold;
    border-radius:6px;
    transition:0.3s;
}

.btn:hover{
    background:#e0b52e;
    transform:translateY(-2px);
}

/* Mobile */

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-content h3{
        font-size:20px;
    }

    .hero-content p{
        font-size:16px;
    }

}

.project-hero{
    height:100vh;
    width:100%;
    background-image:url("images/hero1.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}


.section h2{
    font-size: 48px;
    font-weight: bold;
    color: #d4af37;
    text-align: center;
    margin-bottom: 35px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(213, 219, 23, 0.718);
}

.list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: auto;
}

.list li {
    padding: 12px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.list li i {
    color: #d4af37;
    font-size: 20px;
    min-width: 25px;
}


.highlights-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:20px;
    max-width:1000px;
    margin:auto;
}

.highlights-grid div{
    background:#fff;
    padding:15px 20px;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(5, 185, 47, 0.812);
    font-size:18px;
    display:flex;
    align-items:center;
    gap:12px;
}

.highlights-grid i{
    color:#d4af37;
    font-size:20px;
}

/* Mobile */
@media(max-width:768px){
    .highlights-grid{
        grid-template-columns:1fr;
    }
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(250px, 1fr));
    gap:20px;
    max-width:1000px;
    margin:auto;
}

.amenities-grid div{
    background:#e10a39;
    color:#fff;
    padding:18px 20px;
    border-radius:10px;
    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
    box-shadow:0 3px 10px rgba(37, 169, 14, 0.836);
}

.amenities-grid i{
    color:#d4af37;
    font-size:24px;
    min-width:30px;
}

@media (max-width:768px){
    .amenities-grid{
        grid-template-columns:1fr;
    }
}


.connectivity-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:1000px;
    margin:auto;
}

.connectivity-grid div{
    background:#f8f8f8;
    padding:18px 20px;
    border-radius:10px;
    display:flex;
    align-items:center;
    gap:15px;
    font-size:18px;
    box-shadow:0 3px 10px rgba(6, 195, 25, 0.571);
}

.connectivity-grid i{
    color:#d4af37;
    font-size:24px;
    min-width:30px;
}

@media(max-width:768px){
    .connectivity-grid{
        grid-template-columns:1fr;
    }
}


.plot-card{
    background:#8B0000;
    color:white;
    border:2px solid #D4AF37;
    font-size:36px;
    font-weight:700;
    letter-spacing:2px;
    padding:35px;
}


.loan-card{
    background:#D4AF37;
    color:#c50e45;
    border:2px solid #8B0000;
    font-weight:bold;
}

.about-project{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.about-project p{
    font-size:22px;
    line-height:1;
    margin-bottom:20px;
    color:#444;
}



.project-about{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding:80px 10%;
    background:#fff;
}

.project-about-text{
    flex:1;
}

.project-about-text h2{
    font-size:42px;
    color:#d4af37;
    margin-bottom:25px;
}

.project-about-text p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:20px;
    color:#444;
}

.project-about-image{
    flex:1;
}

.project-about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

/* Mobile & Tablet */
@media(max-width:768px){

    .project-about{
        flex-direction:column;
        padding:50px 20px;
    }

    .project-about-text h2{
        font-size:32px;
        text-align:center;
    }

    .project-about-text p{
        font-size:18px;
    }

    .project-about-image{
        width:100%;
    }
}



/* =========================
   GALLERY PAGE
========================= */

.gallery-banner{
    height:60vh;
    background:url("images/gallery-banner.jpg") center center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.gallery-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
}

.gallery-content h1{
    font-size:70px;
    margin-bottom:15px;
}

.gallery-content p{
    font-size:24px;
}

.gallery-projects{
    padding:80px 10%;
    text-align:center;
}

.gallery-projects h2{
    font-size:42px;
    color:#d4af37;
    margin-bottom:50px;
}

.gallery-cards{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.gallery-card{
    width:420px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.gallery-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.gallery-card h3{
    font-size:30px;
    margin-top:20px;
    color:#486556;
}

.gallery-card p{
    padding:15px 25px;
    font-size:18px;
}

.gallery-card .btn{
    display:inline-block;
    margin-bottom:25px;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    padding:12px 30px;
    border-radius:30px;
    font-weight:bold;
}

.gallery-card .btn:hover{
    background:#c09c2e;
}

/* MOBILE */

@media(max-width:768px){

    .gallery-content h1{
        font-size:40px;
    }

    .gallery-content p{
        font-size:18px;
    }

    .gallery-card{
        width:100%;
    }

    .gallery-projects h2{
        font-size:32px;
    }
}



.gallery-page{
    padding:60px 10%;
    text-align:center;
}

.gallery-page h1{
    font-size:50px;
    color:#d4af37;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}




/* CAREER HERO */

.career-hero{
    height:60vh;
    background:url("images/career-banner.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}
/* CAREERS HERO */

.career-hero{
    height:100vh;
    background:url("images/career-banner.jpg") center center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.career-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:800%;
   
}

.career-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:500px;
    padding:20px;
}

.career-content h1{
    font-size:40px;
    margin-bottom:10px;
    text-shadow:2px 2px 8px rgba(0,0,0,0.5);
}

.career-content p{
    font-size:24px;
    margin-bottom:30px;
}

.career-points{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.career-points span{
    background:#d4af37;
    color:#000;
    padding:12px 20px;
    border-radius:30px;
    font-weight:bold;
}

/* WHY US */

.why-us{
    padding:80px 10%;
    text-align:center;
    background:#fff;
}

.why-us h2{
    font-size:42px;
    color:#486556;
    margin-bottom:40px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-box{
    background:#f8f8f8;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.why-box h3{
    color:#486556;
    margin-bottom:15px;
}

.why-box p{
    font-size:17px;
}

/* MOBILE */

@media(max-width:768px){

    .career-content h1{
        font-size:36px;
    }

    .career-content p{
        font-size:18px;
    }

    .career-points{
        flex-direction:column;
        align-items:center;
    }

    .why-us h2{
        font-size:30px;
    }
}



.contact-box{
    max-width:700px;
    margin:50px auto;
    padding:40px;
    background:#ffffff;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-box h2{
    font-size:38px;
    color:#486556;
    margin-bottom:25px;
}

.contact-box p{
    font-size:22px;
    line-height:1.8;
    color:#333;
    margin-bottom:10px;
}

.contact-box strong{
    color:#d4af37;
    font-size:24px;
}

.contact-box:hover{
    transform:translateY(-5px);
    transition:0.3s;
}

/* Mobile */

@media(max-width:768px){

    .contact-box{
        width:90%;
        padding:25px;
    }

    .contact-box h2{
        font-size:28px;
    }

    .contact-box p{
        font-size:18px;
    }

    .contact-box strong{
        font-size:20px;
    }
}

/* CONTACT HERO */

.contact-hero{
    height:70vh;
    background:url("images/contact-banner.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.contact-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.contact-content{
    position:relative;
    z-index:2;
    color:white;
}

.contact-content h1{
    font-size:65px;
    margin-bottom:15px;
}

.contact-content p{
    font-size:24px;
}

/* CONTACT SECTION */

.contact-section{
    padding:80px 10%;
    background:#fff;
}

.contact-section h2{
    text-align:center;
    color:#486556;
    margin-bottom:40px;
}

.contact-card{
    max-width:900px;
    margin:auto;
    background:#f8f8f8;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    text-align:center;
}

.contact-card h3{
    margin-top:25px;
    color:#486556;
}

.contact-card p{
    font-size:20px;
    line-height:1.8;
}

/* PROJECTS */

.projects-info{
    padding:80px 10%;
    text-align:center;
}

.project-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.project-box{
    width:350px;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* INVESTMENT */

.investment-section{
    background:#111;
    color:white;
    text-align:center;
    padding:70px 10%;
}

.investment-section p{
    max-width:900px;
    margin:auto;
    font-size:20px;
}

/* MAP */

.map-section{
    text-align:center;
    padding:80px 10%;
}

.map-btn{
    background:#d4af37;
    color:black;
    text-decoration:none;
    padding:15px 30px;
    border-radius:8px;
    font-weight:bold;
}

/* MOBILE */

@media(max-width:768px){

.contact-content h1{
    font-size:40px;
}

.contact-content p{
    font-size:18px;
}

.contact-card p{
    font-size:18px;
}

.project-box{
    width:100%;
}
}




/* ENQUIRY FORM */

.enquiry-section{
    padding:80px 10%;
    text-align:center;
    background:#f8f8f8;
}

.enquiry-section h2{
    font-size:42px;
    color:#486556;
    margin-bottom:15px;
}

.enquiry-section p{
    font-size:20px;
    margin-bottom:30px;
}

.enquiry-form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
    padding:16px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:18px;
    width:100%;
}

.enquiry-form textarea{
    height:120px;
    resize:none;
}

.enquiry-form button{
    background:#486556;
    color:white;
    padding:16px;
    border:none;
    border-radius:8px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}

.enquiry-form button:hover{
    background:#30473b;
}

/* MOBILE */

@media(max-width:768px){

    .enquiry-section h2{
        font-size:32px;
    }

    .enquiry-section p{
        font-size:18px;
    }

    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea{
        font-size:16px;
    }
}


/* WhatsApp Chat Button */

.whatsapp-chat{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    text-decoration:none;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
    z-index:9999;
}

.whatsapp-chat:hover{
    transform:scale(1.1);
    transition:0.3s;
}


.chat-popup{
    position:fixed;
    bottom:100px;
    right:25px;
    background:white;
    padding:15px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
    z-index:9999;
    text-align:center;
}

.chat-popup a{
    background:#25D366;
    color:white;
    padding:8px 15px;
    text-decoration:none;
    border-radius:5px;
}



.status-badge{
    background:#d4af37;
    color:#000;
    padding:10px 20px;
    border-radius:30px;
    font-weight:bold;
    display:inline-block;
    margin-bottom:15px;
}



/* =========================
   ANANTHA VISTHARA HERO
========================= */

.anantha-hero{
    height:100vh;
    width:100%;
    background:url("images/hero2.jpg") center center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.anantha-hero .hero-content{
    position:relative;
    z-index:2;
    color:rgb(190, 218, 14);
    max-width:800px;
    padding:20px;
}

.anantha-hero h1{
    font-size:60px;
    letter-spacing:3px;
    margin-bottom:15px;
    text-shadow:2px 2px 10px rgba(0,0,0,0.7);
}

.anantha-hero h3{
    font-size:28px;
    color:#f5c542;
    margin-bottom:12px;
}

.anantha-hero p{
    font-size:22px;
    margin-bottom:25px;
}

.anantha-hero .btn{
    display:inline-block;
    padding:14px 30px;
    background:#f5c542;
    color:#000;
    text-decoration:none;
    font-weight:bold;
    border-radius:6px;
    transition:0.3s;
}

.anantha-hero .btn:hover{
    background:#e0b52e;
}

/* Mobile Responsive */
@media(max-width:768px){

    .anantha-hero h1{
        font-size:38px;
    }

    .anantha-hero h3{
        font-size:20px;
    }

    .anantha-hero p{
        font-size:16px;
    }
}

.card,
.testimonial-box {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-top: 4px solid #c9a227; /* Gold */
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}


/* Floating Cards */
.card,
.testimonial-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover,
.testimonial-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* Project Cards Layout */
.project-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.project-cards .card {
    width: 320px;
    text-align: center;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.testimonial-box {
    max-width: 350px;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

/* Background Video */
.hero-video{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* Dark Overlay */
.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}

/* Hero Content */
.hero-content{
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 80px;
    color: #fff;
}

.hero-content h3{
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.big-heading{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn{
    display: inline-block;
    padding: 14px 35px;
    background: #d4af37;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover{
    background: #b8942e;
    transform: translateY(-3px);
}
.what-we-do{
    width:90%;
    margin:80px auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.what-image{
    flex:1;
}

.what-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.what-content{
    flex:1.2;
}

.what-content h2{
    font-size:42px;
    color:#0d3c2f;
    margin-bottom:20px;
}

.what-content p{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.service-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.service-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
    background:#fff;
    padding:18px 20px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-item:hover{
    transform:translateY(-5px);
}

.service-item i{
    font-size:28px;
    color:#b8860b;
    margin-top:5px;
}

.service-item h3{
    margin-bottom:8px;
    color:#0d3c2f;
}

.service-item p{
    margin:0;
    font-size:15px;
}

.bottom-text{
    margin-top:30px;
    font-weight:500;
}

@media(max-width:900px){

.what-we-do{
    flex-direction:column;
}

.what-content{
    text-align:center;
}

.service-item{
    text-align:left;
}

}
.service-item{
    display:flex;
    align-items:center;
    gap:30px;
    margin-bottom:35px;
}

.service-image{
    width:220px;
    flex-shrink:0;
}

.service-image img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.service-content{
    flex:1;
}

.service-content h3{
    color:#0d3c2f;
    margin-bottom:10px;
}

.service-content p{
    line-height:1.8;
}
.service-item{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:30px;
}

.service-item img{
    width:180px;
    height:130px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    flex-shrink:0;
}

.service-content{
    flex:1;
}

.service-content h3{
    margin-bottom:10px;
    color:#0d3c2f;
}

.service-content p{
    margin:0;
    line-height:1.7;
}
.contact-wrapper{
    width:90%;
    max-width:1400px;
    margin:80px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.contact-left{
    width:100%;
}

.contact-right{
    width:100%;
}

.contact-right img{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.enquiry-form{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:25px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.enquiry-form textarea{
    height:140px;
    resize:none;
}

.enquiry-form button{
    padding:16px;
    background:#486556;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:17px;
    cursor:pointer;
}

.project-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top:30px;
}

.project-box{
    background:#f7f7f7;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

@media (max-width:991px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.contact-right{
    order:-1;
}

.contact-right img{
    height:400px;
}

.project-grid{
    grid-template-columns:1fr;
}

}