@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Pathway+Extreme:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Barlow Condensed", sans-serif;
}
.main-width {
  max-width: 1440px;
  width: 90%;
  margin: auto;
}
.banner-hexa {
  /* clip-path: polygon(100% 0, 100% 65%, 73% 100%, 7% 100%, 67% 0, 100% 0); */
  clip-path: polygon(100% 0, 100% 61%, 77% 100%, 7% 100%, 72% 0);
}
.banner-hexa2 {
clip-path: polygon(70% 0, 100% 61%, 100% 110%, 0% 0%);
}
.banner {
  background: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/image-red-hat.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 2.5s ease-out forwards;
  z-index: -4;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-hexa {
  background-image: url("../images/banner-hexa.png");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}
.banner-hexa2 {
  background-image: url("../images/banner-hexa2.png");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}
.about-banner {
  background-image: url("../images/about-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.service-banner {
  background-image: url("../images/ourServices.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.hamburger,
.close-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 37px;
  height: 22px;
  cursor: pointer;
  z-index: 20;
}

.hamburger .line,
.close-hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.hamburger.active .line:nth-child(1),
.close-hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2),
.close-hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3),
.close-hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation styling */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #d81f26;
  color: white;
  transition: left 0.3s ease;
  z-index: 15;
  padding-top: 20px;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav ul li {
  padding: 15px 0;
}

.mobile-nav ul li a {
  /*color: #fff;*/
  text-decoration: none;
}

/* Style for the close hamburger as a cross (X) */
.close-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30px;

  border-radius: 50%;
  background-color: #fff;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 60px;
  right: 20px;
  z-index: 20;
}

.close-hamburger .line {
  position: absolute;
  width: 50%;
  left: 25%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease;
}

/* Transform lines into an X */
.close-hamburger .line:nth-child(1) {
  transform: rotate(45deg);
}

.close-hamburger .line:nth-child(2) {
  transform: rotate(-45deg);
}

/* Prevent page scroll when nav is open */
/* Ensure the mobile navigation is scrollable */
.mobile-nav {
  overflow-y: auto;
}

/* Prevent the body from scrolling when nav is open */
body.nav-open {
  overflow: hidden;
}

.aboutus-banner{
    background-image: url("../images/aboutbanner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.event-banner{
    background-image: url("../images/eventbanner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.contact{
    background-image: url("../images/contact.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.faces{
    background-image: url("../images/faces.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.team{
    background-image: url("../images/team.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.service{
    background-image: url("../images/service.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-grideant{
   background: linear-gradient(90deg, rgba(0, 0, 0, 0.81) 0.01%, rgba(29, 29, 29, 0.76) 51.5%, rgba(3, 3, 3, 0.81) 99.99%);
}

@keyframes toggleAnimation {
    0% {
        transform: translateY(0); 
        opacity: 1;
    }
    25% {
        transform: translateY(-50px); 
        opacity: 0.7;
    }
    50% {
        transform: translateY(25px);
        opacity: 1;
    }
    75% {
        transform: translateY(-5px); 
        opacity: 0.7; 
    }
    100% {
        transform: translateY(0); 
        opacity: 1; 
    }
}

.animate-banner img {
    animation: toggleAnimation 6s infinite ease-in-out;
    transition: transform 4s ease-in-out, opacity 4s ease-in-out;
}

             swiper-container {
      width: 100%;
      height: 100%;
    }

    swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      
    }
    .swiper-pagination-bullet-active{
            opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: red !important;

    }
    

    
.hidden-header {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Show the header when scrolled */
.visible-header {
    opacity: 1;
    z-index: 9999;
    transform: translateY(0);
}



.thumbnail {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

.thumbnail:hover {
  transform: scale(1.05);
}


#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#lightbox.show {
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.8s ease forwards;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

#lightbox-image {
  max-width: 100%;
  max-height: 50%;
  z-index: 1001;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  animation: zoomIn 0.6s ease-in forwards;
}
.scrollbar-hidden::-webkit-scrollbar {
    display: none; /* For Chrome */
  }
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
}

#prev {
  left: 10px;
}

#next {
  right: 10px;
}

.close-btn {
  position: absolute;
  top: 2px;
  right: 160px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width:1030px){
    .close-btn {
  position: absolute;
  top: 130px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
}

}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#lightbox.show {
  opacity: 1;
  visibility: visible;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.thumbnail-lightbox {
  transition: transform 0.3s;
}

.thumbnail-lightbox:hover {
  transform: scale(1.1);
}

.close-btn {
  z-index: 1002;
  cursor: pointer;
}
.thumbnail {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

.thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail-lightbox {
  transition: transform 0.3s;
}

.thumbnail-lightbox:hover {
  transform: scale(1.1);
}



.thumbnail {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

.thumbnail:hover {
  transform: scale(1.05);
}


#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#lightbox.show {
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.5s ease forwards;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}


.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
}

#prev {
  left: 10px;
}

#next {
  right: 10px;
}




@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


  
