*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}

body{
background: #100c0c;
color: white;
}


.navbar{
display: flex;
justify-content: space-between;
padding: 20px;
background: black;
position: sticky;
top: 0;
}

.logo{
color: gold;
}

.nav-links{
display: flex;
list-style: none;
}

.nav-links li{
margin: 0 15px;
}

.nav-links a{
text-decoration: none;
color: white;
transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active{
color: gold;
}

.hero{
height: 90vh;
background: url('../photos/bg2.jpg') no-repeat center/cover;
display: flex;
justify-content: center;
align-items: center;
}

.hero-content{
text-align: center;
}

.hero h1{
font-size: 50px;
}

.hero p{
margin: 10px 0;
}

.btn{
display: inline-block;
padding: 10px 20px;
background: gold;
color: black;
text-decoration: none;
margin-top: 10px;
transition: 0.3s;
}

.btn:hover{
background: white;
}


.cards{
padding: 40px;
text-align: center;
display: grid;
gap: 25px;

}

.card-container{
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.card{
background: #0f0e0f;
margin: 15px;
padding-bottom: 20px;

border-radius: 15px;
transition: 0.3s;
overflow: hidden;
text-align: center;
}

.card img{
width: 100%;
border-radius: 15px  15px 0 0;
height: 220px;
object-fit: cover;
}

.card:hover{
transform: scale(1.05);
box-shadow: 0 0 15px gold;
}
.card h2{
    color: white;
    margin-top: 15px;
}
.card p{
    color:"#333";
    padding: 0 10px;
}

.card button{
margin-top: 10px;
padding: 8px 15px;
background: gold;
border: none;
cursor: pointer;
}


.table-section{
padding: 40px;
text-align: center;

}

table{
width: 80%;
margin: auto;
border-collapse: collapse;
}

th, td{
padding: 10px;
border: 1px solid white;
}

th{
background: gold;
color: black;
}


footer{
text-align: center;
padding: 20px;
background: black;
margin-top: 20px;
}
.about-section {
    
    padding: 60px 80px;
    color: white;
    background-size: cover;
    background-position: center;
    background-image: url(../photos/bg3.jpg) ;
    
    height: 88vh;
    align-items: center;
    display: flex;
}
.about-section .text{
    width: 80%;
    
    align-items: center;
    flex-wrap: wrap;
    
}
 



.section-title  {
    
    
    text-align: left;
    color: gold;
    margin-bottom: 20px;
    font-size: 45px;
}

.about-section p {
    
    font-size: 18px;
    color: #ddd;
    width: 40%;
    max-width: 500px;
    line-height: 1.8;
}
body {
    background: #111;
    font-family: Arial;
    margin: 0;
}

.heading {
    text-align: center;
    color: gold;
    margin: 30px 0;
}


.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 40px;
}


.service-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


.service-card h2 {
    color: white;
    margin-top: 15px;
}

.service-card p {
    color: #ccc;
    padding: 10px;
}


.service-card:hover {
    transform: scale(1.05);
}


.gallery-section {
    padding: 80px;
    background: #111;
    text-align: center;
}

.gallery-section .section-title {
    color: gold;
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.4s;
}


.gallery-grid img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}


.contact-section {
    height: 88vh;
    background: url(../photos/contact.avif);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-section .section-title {
    color: gold;
    font-size: 50px;
    margin-bottom: 30px;
}


.contact-form {
    background: rgba(0,0,0,0.7);
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    outline: none;
}


.contact-form button {
    background: gold;
    color: black;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.contact-form button:hover {
    background: orange;
}
