/* ===== 1. GENERAL STYLES ===== */
body {
  background-image: url('./images/background00.jpg');
  background-size: cover;       
  background-repeat: no-repeat;
  background-position: center;   
  height: 100vh;                 
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;           
}
a { text-decoration: none; }

/* ===== 2. HEADER / NAVBAR ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(34,34,34,0.9); /* Slightly transparent so bg shows */
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 150%;
  font-weight: bold;
  color: #ffb107;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  color: #fff;
  transition: color 0.3s;
}
.nav-links li a:hover { color: #f3ca12; }

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #ffbc2c;
}

/* ===== 3. HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: transparent; 
  color: #f4f4f5;
}
.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}
.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.hero-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s;
}
.btn { background: #09033f; color: #fff; }
.btn:hover { background: #060d68; transform: scale(1.05); }
.btn-alt { background: #070850; color: #fff; }
.btn-alt:hover { background: #0a0f5f; transform: scale(1.05); }
.btn-call { background: #070863; color: #fff; }
.btn-call:hover { background: #03024d; transform: scale(1.05); }

/* ===== 4. SERVICES SECTION ===== */
#services {
  background: url('images/background2.jpg') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 50px 15px;
  text-align: center;
}
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.service {
  width: 300px;
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
}

/* ===== 5. PROJECTS SECTION ===== */
#projects {
  background: url('images/background2.jpg') no-repeat center center;
  background-size: cover;
  color: #000000;
  padding: 30px 50px;
  text-align: center;
}
.projects-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.projects-gallery img {
  width: 200px;       
  height: 300px;
  border-radius: 15px;
  object-fit: cover;  
  transition: transform 0.4s ease;
  margin-top: 15px;
}
.projects-gallery img:hover {
  transform: scale(1.05);
}

/* ===== 6. HAPPY CLIENTS SECTION ===== */
#clients {
  background: url('images/background0.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 60px 20px;
  text-align: center;

}
.clients-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.client {
  width: 250px;
  text-align: center;
}
.client img {
  width: 100%;
  border-radius: 50%;
}

/* ===== 7. BOOKING SECTION ===== */
#booking {
  background: url('images/presentation-theme-dark-blue-color_555908-207.avif') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
#booking h2 { margin-bottom: 40px; }
#booking form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input, textarea, button {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  transition: all 0.3s;
}
input:focus, textarea:focus {
  outline: 2px solid #ffb107;
  border-color: #ffb107;
}
button {
  background: #222;
  color: #fff;
  cursor: pointer;
}
button:hover { background: #444; }

/* ===== 8. ABOUT SECTION ===== */
#about {
  background: url('images/presentation-theme-dark-blue-color_555908-207.avif') no-repeat center center;
  background-size: cover;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
#about p { max-width: 700px; margin: 0 auto; }

/* ===== 9. CONTACT SECTION ===== */
#contact {
  background: url('images/presentation-theme-dark-blue-color_555908-207.avif') no-repeat center center;
  background-size: cover;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
/* ===== CONTACT / SOCIAL ICONS ===== */
.socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}
.socials a {
  width: 45px;
  height: 45px;
  background: rgb(40, 17, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ebebf3;
  font-size: 20px;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: #ffbc05;
  color: #000000;
  transform: scale(1.1);
  box-shadow: 0 0 10px #ff9c08;
}


/* ===== 10. FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #fff;
}

/* ===== 11. RESPONSIVE / MEDIA QUERIES ===== */
@media(max-width:768px){
  .nav-links {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    text-align: center;
  }
  .nav-links.show { display: flex; }
  .hamburger { display: block; }

  .services-container, .projects-gallery, .clients-container {
    flex-direction: column;
    align-items: center;
  }
  .projects-gallery img, .service, .client { width: 80%; }
  #booking form { width: 90%; }
}





































