*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    line-height:1.6;
    color:#f8f3f3;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    position:sticky;
    top:0;
}

.logo{
    color:#c79b3b;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:20px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:bold;
}

.hero{
    height:90vh;
    background:url('images/WhatsApp Image 2026-06-03 at 20.43.47.jpeg') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero-content{
    background:rgba(0,0,0,0.5);
    padding:40px;
    border-radius:10px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    margin-top:20px;
    background:#c79b3b;
    color:white;
    padding:12px 24px;
    text-decoration:none;
    border-radius:5px;
}



.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.card{
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);

    color: white;

    padding: 30px;
    border-radius: 20px;

    box-shadow: 0  8px 32px rgba(0,0,0,0.3);

    transition: 0.3s ease;
}

.card h3 {
color: #c79b3b;
margin-bottom: 15px;
}

.card p {
    color: white;
    line-height: 1.6;
}

.card:hover {
    transform: translateY(-8px);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
    margin-top:30px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
}

.contact{
    background:#f8f8f8;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2rem;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;

    background-image: url('images/image1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}



.hero-content {
    animation: fadeIn 2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.about {
    

    color: white;
    width: 80%;
    margin: 80px auto;
    padding: 40px;

    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.about-hero {
    height: 70vh;
    background: url('images/about-bg.jpg') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    text-align: center;
    border-radius: 15px;
}

.about-overlay h1 {
    color: rgb(131, 116, 32);
    font-size: 3rem;
}

.about-overlay p {
    color: white;
}

.card {
    background: rgba(0,0,0,0.7);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.btn {
    background: gold;
    color: black;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.section-title {
    color: #c79b3b;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}


#about p,
.why-us p,
.cta p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-title {
    color: #c79b3b;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Contact Section */
#contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: rgba(0, 0, 0, 0.85);
    padding: 80px 20px;
}

/* Heading */
#contact h2 {
    color: #FFD700;
    font-size: 3rem;
    font-weight: 900;
    border-bottom: 5px solid #FFD700;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* Text */
#contact p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 10px 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 25px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
}