/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 20px 0;
  position: relative;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  margin-right: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s;
}

nav a:hover {
  color: #ffc107;
}

.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: url('images/wlogo.png') no-repeat center center/cover;
  height: 400px;
  position: relative;
  color: white;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.cta-button {
  background: #ffc107;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Sections */
.section {
  padding: 60px 20px;
}

/* About Section */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-content img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.services-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.services-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
}

.services-scroll::-webkit-scrollbar {
  display: none; /* Hide scrollbar */
}

.service-card {
  flex: 0 0 300px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.nav-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 20px;
}

.nav-btn:hover {
  background-color: #555;
}


/* Scrollable Gallery Carousel */
.gallery-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.gallery-scroll img {
  flex: 0 0 calc(33.33% - 10px); /* Show 3 at a time */
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-scroll img:hover {
  transform: scale(1.05);
}

/* Gallery Navigation Buttons */
.nav-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 20px;
}

.nav-btn:hover {
  background-color: #555;
}
.contact-section {
  background: #f4f4f4;
  padding: 60px 20px;
  color: #333;
}

.contact-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #111;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-item h4 {
  color: #ffc107;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-item p {
  font-size: 1rem;
  color: #444;
  word-break: break-word;
}

.contact-item a {
  text-decoration: none;
  color: #007bff;
}

.contact-item a:hover {
  text-decoration: underline;
}



/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #111;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 10px 0;
  }

  .about-content {
    flex-direction: column;
  }

  .gallery-scroll img {
    flex: 0 0 calc(50% - 10px); /* Show 2 at a time on small screens */
  }

  .nav-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}
