*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
}

/* MAIN STRUCTURE */

#main{
    display:flex;
    flex-direction:column;
}

/* NAVBAR */

#nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:60px;
    background:rgba(20, 20, 20, 0.95);
    z-index:1000;
    border-bottom:2px solid #d4a373;
}

#nav ul{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    height:100%;
    font-weight:bold;
}

#nav a{
    color:white;
    text-decoration:none;
    font-size:14px;
    letter-spacing:1px;
    transition:0.3s ease;
}

.navuli:hover a{
    color:#d4a373;
}

.navuli:hover{
    border-bottom:3px solid #d4a373;
    padding-bottom:18px;
}

/* HERO */

#main1{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:60px;
}

#main1text{
    position:absolute;
    text-align:center;
    z-index:10;
}

#main1text h1{
    color:white;
    font-size:80px;
    letter-spacing:30px;
    font-weight:bold;
    text-shadow:3px 3px 8px rgba(0,0,0,0.7);
    animation:fadeInScale 1s ease-out;
}

@keyframes fadeInScale{
    from{
        opacity:0;
        transform:scale(0.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* BACKGROUND VIDEO */

#mainbgvid{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-1;
}

/* SERVICES */

#main2{
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color:white;
    padding:120px 10%;
}

#main2textdiv{
    text-align:center;
    margin-bottom:80px;
}

#main2textdiv h2{
    font-size:48px;
    font-weight:bold;
    margin-bottom:15px;
    letter-spacing:2px;
}

.services-subtitle{
    font-size:18px;
    color:#d4a373;
    font-weight:500;
}

#allicondiv{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:50px;
}

.service-card{
    background:rgba(255, 255, 255, 0.05);
    border:2px solid #d4a373;
    border-radius:15px;
    padding:40px 30px;
    width:280px;
    text-align:center;
    transition:0.4s ease;
    backdrop-filter:blur(10px);
}

.service-card:hover{
    background:rgba(255, 255, 255, 0.1);
    transform:translateY(-10px);
    box-shadow:0 10px 30px rgba(212, 163, 115, 0.3);
    border-color:#f0d592;
}

.icon-container{
    margin-bottom:25px;
    display:flex;
    justify-content:center;
}

.service-icon{
    width:100px;
    height:100px;
    background:#d4a373;
    border-radius:50%;
    padding:15px;
    object-fit:contain;
    transition:0.4s ease;
}

.service-card:hover .service-icon{
    background:#f0d592;
    transform:scale(1.1) rotate(5deg);
}

.service-title{
    font-size:24px;
    font-weight:bold;
    margin-bottom:15px;
    color:white;
    letter-spacing:1px;
}

.service-description{
    font-size:15px;
    line-height:24px;
    color:#ddd;
}

/* GALLERY */

#main3{
    background:white;
    padding:120px 10%;
}

#main3textdiv{
    text-align:center;
    margin-bottom:80px;
}

#main3textdiv p{
    font-size:48px;
    font-weight:bold;
    letter-spacing:2px;
    color:#1a1a1a;
}

#main3textdiv::after{
    content:'';
    display:block;
    width:80px;
    height:4px;
    background:#d4a373;
    margin:20px auto 0;
}

#gridinm3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.grid-box{
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.grid-box img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.4s ease;
}

.carimage:hover{
    transform:scale(1.08);
    box-shadow:0 15px 40px rgba(0,0,0,0.3);
}

/* ABOUT */

#main4{
    background:linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding:120px 10%;
}

#main4textbox{
    background:white;
    padding:60px 50px;
    border-radius:15px;
    max-width:900px;
    margin:0 auto;
    box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

#aboutustitle{
    text-align:center;
    margin-bottom:40px;
}

#aboutustitle p{
    font-size:48px;
    font-weight:bold;
    color:#1a1a1a;
    letter-spacing:2px;
    margin-bottom:15px;
}

#aboutustitle p::after{
    content:'';
    display:block;
    width:80px;
    height:4px;
    background:#d4a373;
    margin:20px auto 0;
}

#main4text p{
    text-align:center;
    font-size:17px;
    line-height:32px;
    color:#333;
    letter-spacing:0.5px;
}

/* CONTACT */

#main5{
    background:antiquewhite;
    padding:120px 10%;
}

#condetaildiv{
    max-width:600px;
    margin:auto;
    background:white;
    border-radius:20px;
    padding:40px;
}

#condettext{
    text-align:center;
    margin-bottom:30px;
}

#condetform form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.inpfield{
    padding:12px;
    border-radius:8px;
    border:1px solid #999;
}

.inpfield:hover{
    border:2px solid black;
}

#formbut{
    padding:12px;
    border:none;
    border-radius:8px;
    background:black;
    color:white;
    cursor:pointer;
}

#formbut:hover{
    box-shadow:4px 4px 10px black;
}

/* FOOTER */

#foot{
    background:linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align:center;
    padding:40px;
    border-top:3px solid #d4a373;
}

#foottext p{
    color:white;
    font-size:16px;
    letter-spacing:1px;
}

/* RESPONSIVE */

@media (max-width:1000px){

#gridinm3{
grid-template-columns:repeat(2,1fr);
}

.service-card{
width:calc(50% - 25px);
}

}

@media (max-width:700px){

#nav ul{
flex-direction:column;
gap:15px;
height:auto;
padding:10px;
}

#gridinm3{
grid-template-columns:1fr;
}

#allicondiv{
flex-direction:column;
align-items:center;
gap:30px;
}

.service-card{
width:100%;
max-width:400px;
}

#main1text h1{
font-size:50px;
letter-spacing:15px;
}

#main2textdiv h2{
font-size:36px;
}

#main2{
padding:80px 5%;
}

#main3{
padding:80px 5%;
}

#main4{
padding:80px 5%;
}

#main4textbox{
padding:40px 25px;
}

#aboutustitle p{
font-size:36px;
}

#main4text p{
font-size:15px;
line-height:26px;
}

}