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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url("../images/service-bg.jpg") no-repeat center center fixed;
  background-size: cover;
    color: #333;
}

header {
    background: #00bfff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    flex-wrap: wrap;
}

.logo {
    height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

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

nav a:hover {
    color: #ff00ff;
}

.hero {
  background: url("../images/header-bg.png") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
  border-radius: 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.hero-text {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin: 50px auto 20px auto;
  width: fit-content;
}

.hero-text h1, .hero-text p {
  color: white;
  margin: 0;
}


body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

main {
  flex: 1;
}

footer {
  background: #222;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  margin-top: auto;
}

footer .socials a {
  color: #00e1ff;
  margin: 0 10px;
  text-decoration: none;
}


/* WhatsApp Floating Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 12px 16px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Dropdown Navigation */
nav ul li {
    position: relative;
}

nav ul li ul.dropdown-menu {
    display: none;
  position: absolute;
  background-color: #00cfff;
  min-width: 200px;
  max-height: 400px; /* Set height limit */
  overflow-y: auto;   /* Add scroll if needed */
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.navbar .dropdown-content a {
  color: white;
  padding: 10px;
  text-decoration: none;
  display: block;
}
nav ul li:hover > ul.dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 5px 0;
    color: white;
}

.dropdown-menu li strong {
    color: #FFFF00;
}

.dropdown-menu li ul {
    padding-left: 15px;
}

.service-page {
    padding: 30px;
}

.service-page h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00bfff;
}

.service-page section {
    text-align: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.4); /* Slightly transparent background behind sections */
  margin: 20px auto;
  width: 80%;
  border-radius: 12px;
}

.service-page ul {
    list-style: none;
  padding: 0;
}
.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  text-align: center;
}

.gallery img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.service-detail {
  text-align: center;
}
.service-detail p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}
body.service-page {
  background: url("../images/service-bg.jpg") no-repeat center center fixed;
  background-size: cover;
}
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.service-links a {
  background-color: #00c4cc;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.service-links a:hover {
  background-color: #009aa3;
}
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 20px 0 40px;
  padding: 0 20px;
}

.service-links a {
  flex: 0 1 180px;
  text-align: center;
  background-color: #00c4cc;
  color: white;
  padding: 12px 15px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.service-links a:hover {
  background-color: #009aa3;
}

}