/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: 'Roboto', sans-serif;
  background: #f6f6f6;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}


/* Navbar */
nav {
  background: #222;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* Logo */
.logo {
  color: #00aaff;
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(0,170,255,0.7);
}

/* When mobile menu is open, hide the logo and hamburger */
.nav-container.menu-open .logo,
.nav-container.menu-open .hamburger {
  display: none;
}

/* Nav Menu Container */
.nav-menu-container {
  position: relative;
}

/* Cancel Button (for mobile) */
.cancel-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.8rem;
  color: #00aaff;
  cursor: pointer;
}

/* Nav Menu */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #00aaff;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-menu a:hover {
  color: #005f7f;
  text-shadow: 0 0 10px rgba(0,170,255,0.8);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 28px;
  background: #00aaff;
  margin: 4px 0;
  border-radius: 2px;
}

/* Sections */
.section {
  background: #fff;
  margin: 30px 0;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,170,255,0.2);
  text-align: center;
}

h1, h2 {
  color: #00aaff;
  margin-bottom: 20px;
  text-shadow: 0 0 5px rgba(0,170,255,0.6);
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

h1 {
  animation: blink 2s infinite;
}

p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Home Section Icons */
.icons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.icons a {
  color: #00aaff;
  margin: 0 15px;
  font-size: 2rem;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.icons a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(0,170,255,0.8);
}




/* Button Group */
.btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 700;
  color: #00aaff;
  background: transparent;
  border: 2px solid #00aaff;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: #00aaff;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,170,255,0.8);
}



/* About Section Image */
.about-img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,170,255,0.4);
}

/* Feature Box Styling for Experience and Guarantee */
.feature-box {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0,170,255,0.1), rgba(0,95,127,0.1));
  border-left: 5px solid #00aaff;
  padding: 15px 20px;
  margin: 20px auto;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  max-width: 800px;
}

.feature-box i {
  font-size: 1.8rem;
  color: #00aaff;
  margin-right: 15px;
}

.feature-text {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Services List & Service Images */
.services-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0;
}

.services-list li {
  flex: 1 1 45%;
  background: #fafafa;
  margin: 10px;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,170,255,0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.services-list li:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,170,255,0.4);
}

.services-list h3 {
  color: #005f7f;
  margin-bottom: 10px;
}

/* Reviews Section */
#reviews .review {
  background: #eef;
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,170,255,0.2);
  text-align: left;
}

#reviews .review p {
  font-style: italic;
  margin-bottom: 10px;
}

#reviews .review .rating {
  color: #FFD700; /* Gold for stars */
  margin-bottom: 10px;
  font-size: 1.2rem;
}

#reviews .review h4 {
  margin-top: 10px;
  text-align: right;
  color: #005f7f;
}

/* Contact Section */
.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 2px solid #00aaff;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,170,255,0.5);
}

/* Footer */
footer {
  background: #222;
  padding: 20px;
  text-align: center;
  color: #fff;
}

footer a {
  color: #00aaff;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width:768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #222;
    padding-top: 40px;
  }
  .nav-menu-container.active .nav-menu {
    display: flex;
  }
  .nav-menu li {
    text-align: center;
    margin: 10px 0;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu-container.active .cancel-btn {
    display: block;
  }
  .services-list li {
    flex: 1 1 100%;
  }
  .icons a {
    font-size: 1.8rem;
    margin: 0 10px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}

/* Home Section Background Image */
.home-section {
  background: url('asd.png') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}
.home-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Optional overlay for text readability */
  z-index: 1;
}

.home-section .container {
  position: relative;
  z-index: 2;
}