* {
  margin: 0px;
  padding: 0px;
}

.main {
  width: 100%;
}


ul li {
  list-style: none;
}

.second-header ul li:hover {
  background-color: #cc6119;
  color: white;
  transition: all;
  transition-duration: 0.5s;
}

.second-header ul li:hover a {
  color: white;
  transition: all;
  transition-duration: 0.5s;
}

.second-header {
  background-color: #eef0f3;
}

.second-header ul li {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.second-header ul {
  margin-left: 100px;
}

.second-header ul a {
  text-decoration: none;
  color: black;
}

.long {
  background-color: #cc6119;
  width: 50px;
  height: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.short {
  background-color: #cc6119;
  width: 30px;
  height: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-left: 3px;
}
.hr {
  margin: auto;
  width: 10%;
}

.about-text span {
  color: red;
}
.about-section {
  width: 80%;
  margin: auto;
  padding: 50px 0px 50px 0px;
}

.about-text {
  width: 50%;
  padding: 50px 0px 0px 20px;
}

.about-pic {
  width: 50%;
}

.gallery {
  color: white;
  background-color: #232628;
  padding-top: 50px;
  padding-bottom: 50px;
}

.gallery h1 {
  font-size: 50px;
  font-weight: 600;
  padding-bottom: 20px;
}

.slider-container {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  display: flex;
  transition: all 0.3s ease-in-out;
}

.slide {
  flex: 0 0 50%; /* Display two images at once */
  min-width: 50%;
}

.slide img {
  width: 100%;
  height: auto;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  cursor: pointer;
  z-index: 1;
}

.prev-arrow {
  left: 10px;
}

.next-arrow {
  right: 10px;
}

.blank{
        width: 100%;
        height: 130px;
}

.team h1 {
        font-size: 50px;
        font-weight: 600;
        padding-bottom: 20px;
        text-align: center;
        padding-top: 50px;
      }

.team{
        background-color:beige;
        padding-bottom: 100px;
}

.team-section {
  background-image: url(img/background.PNG);
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
}

.team-member {
  width: 80%;
  margin-left: 10%;
  padding-top: 50px;
  padding-bottom: 50px;
  position: absolute;
}

.team-member span {
  color: red;
}

/* Ensure card-img-container is positioned relative to use absolute positioning for overlay */
.card-img-container {
  position: relative;
  width: 100%; /* Ensure it fills the width of the card */
}

/* Basic styling for the image, with transition for smooth hover effect */
.card-img-top {
  width: 100%; /* Make sure image takes full width */
  display: block; /* Ensure no gaps below image */
  transition: filter 0.3s ease; /* Smooth transition for blur effect */
}

/* Overlay that will show on hover */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Dark semi-transparent background */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0; /* Start hidden */
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
  pointer-events: none; /* Prevents overlay from blocking hover */
}

/* On hover, blur the image */
.card-img-container:hover .card-img-top {
  filter: blur(4px);
}

/* On hover, show the overlay */
.card-img-container:hover .card-overlay {
  opacity: 1;
}

/* footer */
.footer {
  background-color: #232628;
  color: white;
  padding-top: 30px;
}

.footer-top {
  width: 80%;
  margin: auto;
}

.footer-text {
  width: 40%;
}

.footer-links {
  width: 30%;
}

.footer-contact {
  width: 30%;
}

.footer-end {
  width: 80%;
  margin: auto;
}

.copyright,
.footer-links {
  width: 50%;
}

.f-links {
  margin-left: 60%;
}
