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

body{
    background:#111;
    color:#fff;
    line-height:1.7;
}

header{
    background:linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px;
}

header img {
  display: block;
  margin: 0 auto;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
}

.hero h1{
    font-size:3.5rem;
    color:#e7e0a3;
    margin-bottom:20px;
}

.hero p{
    max-width:800px;
    margin:auto;
    font-size:1.2rem;
}

nav{
    position:sticky;
    top:0;
    background:#000;
    padding:15px 30px;
    z-index:1000;
    border-bottom:1px solid #333;
}

nav ul{
    display:flex;
    gap:25px;
    justify-content:center;
    list-style:none;
    flex-wrap:wrap;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#e7e0a3;
}

section{
    max-width:1100px;
    margin:auto;
    padding:70px 20px;
    background: #0f0f0f;
}

.section-title{
    background:#1b1b1b;
    color:#e7e0a3;
    padding:18px 25px;
    border-radius:20px;
    display:inline-block;
    margin-bottom:30px;
    font-size:2rem;
    font-weight:bold;
}

.content-box{
    background:#181818;
    padding:35px;
    border-radius:18px;
    margin-bottom:30px;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);
}

/* Services with icons */
#services {
  text-align: center;
  padding: 50px 20px;
  background: #0f0f0f;
  color: #fff;
}

#services h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  background: #000; /* ensure full black */
}

.service {
  width: 180px;
  padding: 15px;
  border-radius: 10px;
  background: #1a1a1a; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  color: #fff;
}

.service:hover {
  transform: translateY(-8px);
}

.service img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
}

.service h3 {
  font-size: 18px;
  color: #fff; 
}

.modal{
    display:none;
    position:fixed;
    z-index:1000;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
}

.modal-content{
    background:#1a1a1a;
    margin:10% auto;
    padding:30px;
    width:90%;
    max-width:600px;
    border-radius:10px;
    text-align:center;
    color:#fff;
}

.close{
    float:right;
    font-size:25px;
    cursor:pointer;
}

.why-section{
  padding:80px 10%;
  background:#0a0a0a;
  color:#fff;
}

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

.why-box{
  background:#111;
  border:1px solid #222;
  border-radius:18px;
  padding:30px;
  transition:0.3s ease;
}

.why-box:hover{
  transform:translateY(-8px);
  border-color:#c89b3c;
  box-shadow:0 12px 30px rgba(200,155,60,0.15);
}

.why-box h3{
  color:#c89b3c;
  font-size:22px;
  margin-bottom:15px;
}

.why-box p{
  color:#d5d5d5;
  line-height:1.8;
}

.card{
    background:#1a1a1a;
    border:1px solid #333;
    padding:25px;
    border-radius:15px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    border-color:#e7e0a3;
}

.card h3{
    color:#e7e0a3;
    margin-bottom:10px;
}

.values{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:15px;
    text-align:center;
    margin-top:20px;
}

.value{
    background:#d9d9d9;
    color:#111;
    padding:15px;
    font-weight:bold;
    border-radius:8px;
    font-style:italic;
}

footer{
    background:#000;
    text-align:center;
    padding:30px;
    margin-top:50px;
    border-top:1px solid #333;
}

.btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 28px;
    background:#e7e0a3;
    color:#111;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#fff7c7;
    transform:translateY(-2px);
}

.whatsapp-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:15px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    z-index:9999;
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
    background:#1ebe5d;
}

ul{
    padding-left:20px;
}

li{
    margin-bottom:12px;
}

@media(max-width:768px){
    .hero h1{
        font-size:2.4rem;
    }

    .hero p{
        font-size:1rem;
    }

    nav ul{
        gap:15px;
    }

    .section-title{
        font-size:1.5rem;
    }

    .content-box{
        padding:25px;
    }

    .whatsapp-btn{
        bottom:15px;
        right:15px;
        padding:12px 16px;
        font-size:14px;
    }
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    margin-bottom:8px;
    font-weight:bold;
    color:#e7e0a3;
}

.form-group input,
.form-group select,
.form-group textarea{
    padding:14px;
    border:1px solid #333;
    border-radius:10px;
    background:#111;
    color:#fff;
    font-size:16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#e7e0a3;
    box-shadow:0 0 8px rgba(231,224,163,0.4);
}

section,
#services,
.services-container {
    background: #0f0f0f !important;
}