/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5; /* Soft light gray */
  color: #333;
  line-height: 1.6;
}
 html {
   scrool-behavior: smooth;
 }
/* Header */
header {
  background: linear-gradient(45deg, #2C3E50, #34495E); /* Deep blue-gray gradient */
  color: white;
  padding: 1rem;
  text-align: center;
  position: relative;
}

.catalogue-logo-container {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.catalogue-logo {
  width: 60px;
  height: auto;
  margin-bottom: 5px;
}

.catalogue-tagline {
  font-size: 0.9rem;
  color: white;
  font-weight: bold;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: bold;
  letter-spacing: 2px;
}

nav {
  margin-top: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #F4D03F;
}

.logo-container {
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
}

.logo {
  width: 60px;
  height: auto;
}

.tagline {
  font-size: 0.9rem;
  color: white;
  font-weight: bold;
  margin-top: 0.5rem;
}

/* Hero Section */
.hero-banner {
  width: 60%;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Quote Section */
#quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: #2C3E50;
  text-align: center;
  margin: 2rem auto;
  max-width: 800px;
}

#quote span {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: #34495E;
}

/* Section Styles */
section {
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
  background: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Team Section */
#team {
  text-align: center;
}

.team-member {
  margin: 2rem auto;
  max-width: 800px;
  padding: 1.5rem;
  background: #ECF0F1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.team-member h3 {
  font-size: 1.5rem;
  color: #2980B9;
}

.member-gallery {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.team-member p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-top: 1rem;
}

/* Modern Slideshow Styles */
.slideshow-container {
  position: relative;
  width: 300px; /* Matches the size of team images */
  height: 300px; /* Matches the size of team images */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slideshow-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.slideshow-image.active {
  opacity: 1;
}

/* Navigation Buttons */
.slideshow-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slideshow-button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 50%;
}

.slideshow-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Our Work Section */
#work .gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

#work .gallery a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

#work .gallery img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, filter 0.3s ease;
}

#work .gallery img:hover {
  transform: scale(1.05);
  filter: brightness(0.8);
}

#work .gallery a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#work .gallery a:hover span {
  opacity: 1;
}

/* Contact Section */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  width: 24px;
  height: 24px;
}

/* Catalogue */
#catalogue .gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

#catalogue .gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

#catalogue .gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #34495E;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  #work .gallery img,
  .member-gallery img {
    width: 100%;
    height: auto;
  }

  .logo {
    width: 50px;
  }

  #work .gallery a span {
    font-size: 0.8rem;
  }


}




















