/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styling */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 14px;
}

/* Main Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.logo {
  max-height: 70px;
  width: auto;
}

.header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.quote-btn {
  background-color: #03c4ff;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background-color: #0299cc;
  transform: scale(1.05);
}

.contact-info {
  color: #444;
  font-size: 14px;
  font-weight: 500;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* Navigation */
nav {
  background-color: #000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 8px 0;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav ul li a:hover {
  color: #03c4ff;
  border-bottom: 2px solid #03c4ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-info {
    display: none; /* hide contact & button on small screens */
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }
}















/* Banner Sections */
.banner-section {
  padding: 0;
  margin: 0;
}

.banner-content {
  max-width: 100%;
  margin: 0;
  padding: 10px 0px;
}

.banner-content img {
  width: 100vw;
  max-width: 100%;
  object-fit: cover;
  display: block;
}















/* Gallery Section */
/* Slideshow container */
.slideshow-container {
  width: 80%;
  max-width: 800px;
  margin: 40px auto;
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Active slide */
.mySlides.active {
  display: block;
  opacity: 1;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}












/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
}
