html{

scroll-behavior:smooth;

}

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

body{
    background:black;
    color:white;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    z-index:1000;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(10px);
}

.logo h2{
    font-size:26px;
    font-weight:600;
}

.logo p{
    font-size:12px;
    letter-spacing:3px;
    color:#ccc;
}

.menu a{
    color:white;
    text-decoration:none;
    margin-left:35px;
    font-size:16px;
    transition:0.4s;
}

.menu a:hover{
    color:#d4af37;
}

/* HERO SECTION */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

#bgVideo{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    z-index:2;
}

.hero-content h1{
    font-family:'Playfair Display',serif;
    font-size:80px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    max-width:600px;
    color:#ddd;
    font-size:18px;
    line-height:30px;
    margin-bottom:40px;
}

.btn{
    display:inline-block;
    padding:16px 40px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.btn:hover{
    background:#d4af37;
}

/* MUTE BUTTON */

#muteBtn{
    position:absolute;
    right:40px;
    bottom:40px;
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    color:white;
    font-size:22px;
    cursor:pointer;
    backdrop-filter:blur(10px);
    z-index:3;
}

/* MOBILE */

@media(max-width:768px){

.menu{
display:none;
}

.hero-content{
left:30px;
right:30px;
}

.hero-content h1{
font-size:52px;
}

.hero-content p{
font-size:15px;
line-height:25px;
}

.logo h2{
font-size:18px;
}

}
/* CONTACT PAGE */

.contact-page{
padding:120px 8%;
min-height:100vh;
background:black;
color:white;
text-align:center;
}

.contact-page h1{
font-size:60px;
margin-bottom:20px;
font-family:'Playfair Display',serif;
}

.contact-page p{
color:#bbb;
margin-bottom:50px;
}

.contact-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.contact-card{
background:#111;
padding:40px;
border-radius:20px;
transition:.4s;
}

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

.contact-card i{
font-size:40px;
color:#d4af37;
margin-bottom:20px;
}

.contact-card h2{
margin-bottom:15px;
}
/* ABOUT SECTION */

.about{
padding:120px 8%;
background:#050505;
text-align:center;
}

.about h4{
color:#d4af37;
letter-spacing:4px;
margin-bottom:20px;
}

.about h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:30px;
}

.about p{
max-width:900px;
margin:auto;
line-height:35px;
color:#bbb;
font-size:18px;
}

.stats{
margin-top:80px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.box{
background:#111;
padding:50px;
border-radius:20px;
transition:.5s;
}

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

.box h2{
font-size:50px;
color:#d4af37;
margin-bottom:15px;
}

.box p{
font-size:16px;
line-height:25px;
}
/* VISION SECTION */

.vision{
padding:120px 8%;
display:flex;
justify-content:space-between;
align-items:center;
gap:50px;
background:#0a0a0a;
flex-wrap:wrap;
}

.vision-left{
flex:1;
}

.vision-left h4{
color:#d4af37;
letter-spacing:4px;
margin-bottom:20px;
}

.vision-left h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:30px;
}

.vision-left p{
color:#bbb;
line-height:35px;
font-size:18px;
margin-bottom:40px;
}

.vision-right{
flex:1;
display:grid;
gap:25px;
}

.vision-card{
background:#111;
padding:40px;
border-radius:20px;
transition:.5s;
}

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

.vision-card h2{
color:#d4af37;
margin-bottom:15px;
}

.vision-card p{
color:#ccc;
}

@media(max-width:768px){

.vision-left h1{
font-size:45px;
}

}
/* PROJECT SECTION */

.projects{
padding:120px 8%;
background:#050505;
text-align:center;
}

.projects h4{
color:#d4af37;
letter-spacing:4px;
margin-bottom:20px;
}

.projects h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:70px;
}

.project-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.project-card{
background:#111;
padding:50px;
border-radius:20px;
transition:.5s;
}

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

.project-card h2{
color:#d4af37;
margin-bottom:20px;
}

.project-card p{
line-height:30px;
color:#bbb;
}
/* FOOTER */

footer{
padding:80px 8%;
background:black;
text-align:center;
border-top:1px solid #222;
}

footer h2{
font-family:'Playfair Display',serif;
margin-bottom:20px;
}

footer p{
color:#aaa;
}

.footer-links{
margin:40px 0;
}

.footer-links a{
text-decoration:none;
color:white;
margin:0 20px;
transition:.4s;
}

.footer-links a:hover{
color:#d4af37;
}
/* WHATSAPP BUTTON */

.whatsapp{
position:fixed;
right:30px;
bottom:30px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:35px;
color:white;
text-decoration:none;
z-index:1000;
box-shadow:0 0 25px rgba(37,211,102,.5);
transition:.4s;
}

.whatsapp:hover{
transform:scale(1.1);
}

.copyright{
margin-top:30px;
font-size:14px;
color:#777;
}
/* AI ASSISTANT */

.ai-section{
padding:120px 8%;
background:black;
min-height:100vh;
text-align:center;
}

.ai-section h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:20px;
}

.ai-section p{
color:#aaa;
margin-bottom:50px;
}

.chat-box{
max-width:900px;
margin:auto;
background:#111;
padding:40px;
border-radius:20px;
}

.bot-message{
background:#1b1b1b;
padding:20px;
border-radius:15px;
margin-bottom:20px;
text-align:left;
}

.user-message{
background:#d4af37;
color:black;
padding:20px;
border-radius:15px;
margin-bottom:20px;
text-align:right;
}

.ai-section input{
width:90%;
padding:20px;
margin-top:40px;
border:none;
outline:none;
background:#111;
color:white;
border-radius:50px;
}

.send-btn{
margin-top:25px;
padding:15px 40px;
border:none;
background:#d4af37;
border-radius:50px;
font-weight:600;
cursor:pointer;
}
/* MEETING PAGE */

.meeting{
padding:120px 8%;
background:black;
min-height:100vh;
text-align:center;
}

.meeting h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:20px;
}

.meeting p{
color:#aaa;
margin-bottom:50px;
}

.meeting form{
max-width:800px;
margin:auto;
}

.meeting input,
.meeting textarea{
width:100%;
padding:20px;
margin-bottom:25px;
background:#111;
border:none;
outline:none;
color:white;
border-radius:15px;
}

.meeting button{
padding:18px 50px;
background:#d4af37;
border:none;
border-radius:50px;
font-size:17px;
font-weight:600;
cursor:pointer;
transition:.4s;
}

.meeting button:hover{
transform:scale(1.05);
}
/* LEGAL PAGES */

.legal{
padding:120px 10%;
background:black;
min-height:100vh;
}

.legal h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:40px;
}
/* TESTIMONIALS */

.testimonials{
padding:120px 8%;
background:#050505;
text-align:center;
}

.testimonials h4{
color:#d4af37;
letter-spacing:4px;
margin-bottom:20px;
}

.testimonials h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:70px;
}

.testimonial-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.testimonial-card{
background:#111;
padding:50px;
border-radius:20px;
transition:.5s;
}

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

.testimonial-card p{
line-height:35px;
color:#bbb;
margin-bottom:20px;
}

.testimonial-card h3{
color:#d4af37;
}

.legal p{
font-size:18px;
line-height:40px;
color:#bbb;
}
/* LOCATION */

.location{
padding:120px 8%;
background:black;
text-align:center;
}

.location h4{
color:#d4af37;
letter-spacing:4px;
margin-bottom:20px;
}

.location h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:20px;
}

.location p{
margin-bottom:50px;
color:#bbb;
}
/* TEAM SECTION */

.team{
padding:120px 8%;
background:#050505;
text-align:center;
}

.team h4{
color:#d4af37;
letter-spacing:4px;
margin-bottom:20px;
}

.team h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:70px;
}

.team-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.team-card{
background:#111;
padding:50px;
border-radius:20px;
transition:.5s;
}

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

.team-card h2{
color:#d4af37;
margin-bottom:20px;
}

.team-card p{
color:#bbb;
line-height:32px;
}
/* GALLERY */

.gallery{
padding:120px 8%;
background:black;
text-align:center;
}

.gallery h4{
color:#d4af37;
letter-spacing:4px;
margin-bottom:20px;
}

.gallery h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:70px;
}

.gallery-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.gallery-card{
overflow:hidden;
border-radius:25px;
}

.gallery-card img{
width:100%;
height:350px;
object-fit:cover;
transition:.7s;
}

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

/* HAMBURGER MENU */

.hamburger{
display:none;
font-size:28px;
cursor:pointer;
color:white;
}

@media(max-width:768px){

.hamburger{
display:block;
}

.menu{
position:absolute;
top:90px;
left:-100%;
width:100%;
background:black;
display:flex;
flex-direction:column;
text-align:center;
padding:30px 0;
transition:.5s;
}

.menu.active{
left:0;
}

.menu a{
margin:20px 0;
}

}
/* SCROLL ANIMATION */

.reveal{
position:relative;
transform:translateY(100px);
opacity:0;
transition:all 1s ease;
}

.reveal.active{
transform:translateY(0);
opacity:1;
}


/* PREMIUM HOVER EFFECTS */

.box,
.project-card,
.team-card,
.testimonial-card,
.vision-card{
transition:.5s;
}

.box:hover,
.project-card:hover,
.team-card:hover,
.testimonial-card:hover,
.vision-card:hover{

transform:translateY(-15px);
box-shadow:0 0 30px rgba(212,175,55,.3);

}

/* GOLD GLOW */

.btn:hover,
.send-btn:hover,
.meeting button:hover{

box-shadow:0 0 25px rgba(212,175,55,.6);

}

.gallery-card{

box-shadow:0 0 20px rgba(212,175,55,.15);

}
/* GALLERY OVERLAY */

.gallery-card{
position:relative;
overflow:hidden;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.5);
display:flex;
justify-content:center;
align-items:center;
opacity:0;
transition:.5s;
}

.overlay h2{
font-size:35px;
font-family:'Playfair Display',serif;
color:#fff;
}

.gallery-card:hover .overlay{
opacity:1;
}
/* FOOTER */

.footer{
background:#050505;
padding:80px 10%;
text-align:center;
border-top:1px solid rgba(212,175,55,.3);
}

.footer h1{
color:#d4af37;
margin-bottom:20px;
font-family:'Playfair Display',serif;
}

.footer p{
color:#bbb;
line-height:35px;
}
/* TOP BUTTON */

#topBtn{
position:fixed;
bottom:30px;
right:30px;
width:55px;
height:55px;
border:none;
border-radius:50%;
background:#d4af37;
color:black;
font-size:24px;
cursor:pointer;
display:none;
z-index:999;
}
/* VIDEO GALLERY */

.video-gallery{
padding:120px 8%;
background:black;
text-align:center;
}

.video-gallery h4{
color:#d4af37;
letter-spacing:4px;
}

.video-gallery h1{
font-size:60px;
margin-bottom:50px;
font-family:'Playfair Display',serif;
}

.video-gallery video{
border-radius:25px;
box-shadow:0 0 40px rgba(212,175,55,.3);
}
/* LOCATION */

.location{
padding:120px 8%;
background:#050505;
text-align:center;
}

.location h4{
color:#d4af37;
letter-spacing:4px;
margin-bottom:20px;
}

.location h1{
font-size:60px;
font-family:'Playfair Display',serif;
margin-bottom:20px;
}

.location p{
color:#bbb;
margin-bottom:40px;
}

.location iframe{
box-shadow:0 0 40px rgba(212,175,55,.25);
}
/* PAGE TRANSITION */

body{

animation:fadeIn 1s ease;

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}
::selection{

background:#d4af37;

color:black;

}
/* SCROLLBAR */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:black;

}

::-webkit-scrollbar-thumb{

background:#d4af37;

border-radius:10px;

}
/* FLOATING CONTACT */

.floating-contact{

position:fixed;
left:20px;
bottom:30px;
display:flex;
flex-direction:column;
gap:15px;
z-index:999;
}

.floating-contact a{

width:55px;
height:55px;
border-radius:50%;
background:#d4af37;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
text-decoration:none;
color:black;

box-shadow:0 0 25px rgba(212,175,55,.5);

} 
.hero-content h1{

animation:slideUp 1.5s ease;

}

@keyframes slideUp{

from{

transform:translateY(100px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}
.gallery-card img{

transition:.7s;

}

.gallery-card:hover img{

transform:scale(1.1);

}
section{

border-bottom:1px solid rgba(212,175,55,.08);

}
.btn{

transition:.5s;

}

.btn:hover{

transform:translateY(-5px);

}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b0b0b;
    color: white;
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #111;
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    box-shadow: 0 0 20px gold;
}

h1 {
    text-align: center;
    color: gold;
}

input, textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 6px;
}

button {
    width: 100%;
    padding: 12px;
    background: gold;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
}

button:hover {
    background: #d4af37;
}

#status {
    text-align: center;
    margin-top: 10px;
}
/* SERVICES */

.services{

padding:120px 8%;

background:#050505;

text-align:center;

}

.services h4{

color:#d4af37;

letter-spacing:4px;

margin-bottom:20px;

}

.services h1{

font-size:60px;

margin-bottom:70px;

font-family:'Playfair Display',serif;

}

.service-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.service-card{

background:#111;

padding:40px;

border-radius:20px;

transition:.5s;

border:1px solid rgba(212,175,55,.2);

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 0 30px rgba(212,175,55,.3);

}

.service-card h2{

color:#d4af37;

margin-bottom:20px;

}

.service-card p{

color:#bbb;

line-height:28px;

}
/* GALLERY PAGE */

.gallery-page{

padding:120px 8%;

background:black;

text-align:center;

}

.gallery-page h4{

color:#d4af37;

letter-spacing:4px;

margin-bottom:20px;

}

.gallery-page h1{

font-size:60px;

font-family:'Playfair Display',serif;

margin-bottom:60px;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.gallery-item{

overflow:hidden;

border-radius:25px;

}

.gallery-item img{

width:100%;

height:300px;

object-fit:cover;

transition:.7s;

}

.gallery-item:hover img{

transform:scale(1.1);

}
/* STATISTICS */

.stats{

padding:100px 8%;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

background:#0a0a0a;

text-align:center;

}

.stat-box{

background:#111;

padding:50px 20px;

border-radius:20px;

border:1px solid rgba(212,175,55,.2);

transition:.5s;

}

.stat-box:hover{

transform:translateY(-10px);

box-shadow:0 0 30px rgba(212,175,55,.3);

}

.stat-box h1{

font-size:55px;

color:#d4af37;

margin-bottom:15px;

}

.stat-box p{

color:#bbb;

font-size:18px;

}
/* ABOUT PAGE */

.vision-section{
padding:120px 8%;
background:#000;
color:white;
min-height:100vh;
}

.vision-section h4{
color:#d4af37;
letter-spacing:4px;
margin-bottom:20px;
}

.vision-section h1{
font-size:60px;
color:#d4af37;
margin-bottom:30px;
font-family:'Playfair Display',serif;
}

.vision-section p{
font-size:18px;
line-height:1.8;
max-width:700px;
color:#ddd;
}

.info-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:60px;
}

.info-card{
background:#111;
padding:35px;
border-radius:20px;
transition:.4s;
border:1px solid rgba(212,175,55,.2);
}

.info-card:hover{
transform:translateY(-10px);
box-shadow:0 0 25px rgba(212,175,55,.4);
}

.info-card h2{
color:#d4af37;
font-size:40px;
margin-bottom:10px;
}

/* PROJECT PAGE */

.projects-page{
padding:120px 8%;
background:#000;
color:white;
min-height:100vh;
text-align:center;
}

.projects-page h4{
color:#d4af37;
letter-spacing:4px;
}

.projects-page h1{
font-size:65px;
color:#d4af37;
margin:20px 0 60px;
font-family:'Playfair Display',serif;
}

.service-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.service-card{
background:#111;
padding:40px;
border-radius:25px;
transition:.4s;
border:1px solid rgba(212,175,55,.2);
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 0 30px rgba(212,175,55,.4);
}

.service-card h2{
color:#d4af37;
margin-bottom:20px;
font-size:28px;
}

.service-card p{
color:#ccc;
line-height:1.7;
}

/* FOOTER */

.footer{
background:#000;
padding:40px;
text-align:center;
border-top:1px solid rgba(212,175,55,.2);
}

.footer h2{
color:#d4af37;
}

.projects-hero{
padding:140px 10%;
text-align:center;
background:black;
color:white;
}

.projects-hero h4{
color:#d4af37;
letter-spacing:4px;
}

.projects-hero h1{
font-size:70px;
margin:20px 0;
color:#d4af37;
}

.project-title{
text-align:center;
color:#d4af37;
font-size:45px;
margin:80px 0 40px;
}

.status{
padding:8px 15px;
border-radius:30px;
font-size:12px;
font-weight:bold;
display:inline-block;
margin-bottom:20px;
}

.ongoing{
background:#0f5132;
color:white;
}

.upcoming{
background:#664d03;
color:white;
}

.completed{
background:#1e3a8a;
color:white;
}



.project-item{
display:flex;
align-items:center;
gap:40px;
background:linear-gradient(
145deg,
#111,
#1a1a1a
);
padding:35px;
margin-bottom:50px;
border-radius:30px;
border:1px solid rgba(212,175,55,.25);
box-shadow:0 10px 30px rgba(0,0,0,.5);
transition:.4s;
overflow:hidden;
}

.project-item:hover{
transform:translateY(-10px);
box-shadow:0 0 40px rgba(212,175,55,.35);
}

.project-item img{
width:500px;
height:320px;
object-fit:cover;
border-radius:20px;
border:3px solid #d4af37;
}

.project-info h2{
font-size:42px;
color:#d4af37;
margin-bottom:15px;
font-family:'Playfair Display',serif;
}

.project-info p{
font-size:17px;
line-height:1.8;
color:#ddd;
}
.projects-hero{
height:70vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:
linear-gradient(
rgba(0,0,0,.75),
rgba(0,0,0,.75)
),
url("images/project-banner.jpg");

background-size:cover;
background-position:center;
}

.projects-hero h1{
font-size:80px;
color:#d4af37;
font-family:'Playfair Display',serif;
}

.projects-hero p{
max-width:700px;
font-size:20px;
color:white;
}
.status{
padding:10px 18px;
border-radius:30px;
font-weight:bold;
letter-spacing:1px;
display:inline-block;
margin-bottom:20px;
}

.ongoing{
background:#0f5132;
}

.upcoming{
background:#8a6d00;
}

.completed{
background:#003c8f;
}
.project-info .btn{
display:inline-block;
margin-top:20px;
padding:14px 35px;
background:#d4af37;
color:black;
font-weight:bold;
border-radius:40px;
text-decoration:none;
transition:.3s;
}

.project-info .btn:hover{
transform:translateY(-3px);
box-shadow:0 0 25px rgba(212,175,55,.6);
}

