@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins: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=Sunflower:wght@300&display=swap');

:root{
  --bg-white : rgb(251, 253, 255);
  --bg-black : #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  /* color: #fff; */
}

body,
html {
  font-family: "Poppins", serif;
  height: 100%;
  width: 100%;
}

#banner-section{
  position : relative;
}
#banner-section .banner-container{
  position : absolute;
  left: 50%;
  top : 50%;
  transform: translate(-50%, 50%);
  z-index: 999;
}
.banner-closebtn{
  position : absolute;
  top : 0;
  right :0;
  padding : 10px;
  cursor: pointer;

}

.banner-closebtn i{
  color: #fff;
  font-size: 30px;

}



#hero-section {
  width: 100%;
  height: 100%;
  background-color: #000;
}

.logo-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: #fff;
}

nav {
  position : fixed;
  width: 100%;
  display: flex;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.9);
  }

.navbar{
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-text img {
  width: 40px;
  height: 40px;
}

.logo-description {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 15px;
  color: #fff;
}

.logo-description p {
  font-weight: 100;
  color: #fff;
  font-size: 12px;
}

.logo-description h3 {
  font-weight: 300;
  font-size: 16px;
}
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  position : relative;
  overflow: hidden;
}

.nav-right ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-right ul li a {
  font-size: 15px;
  font-weight: 200;
  padding: 5px 10px;
  border-radius: 10px;
  color: #fff;
  /* width: 100px; */
}

.nav-middle{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:5px;
  color : #fff;
}
.nav-middle i{
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  background-color: #05820b;
  padding :2px;
  border-radius: 50%;
}

.menu-icon {
  display: none;
  right : -50px;
  right : 0;
  position: absolute;
  color: #fff;
}
.menu-icon i{
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
}

.nav-right ul li a:hover {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  transition: 0.2s ease-in;
}

.side-nav {
  position : fixed;
  top : 0;
  right : 0;
  width: 60%;
  height: 100%;
  background-color: #000;
  z-index: 100;
  padding-left: 20px;
  display: none;
}

.side-nav .close-icon{
  position : absolute;
  right : 0;
  top : 50px;
  padding : 10px;
  z-index: 100;
}
.side-nav .close-icon i {
  color : #fff;
  font-size: 25px;
}

.side-nav .close-icon i:hover {
cursor: pointer;
}

.side-nav ul li {
  display: flex;
  flex-direction: column;
  gap : 20px;
  margin : 100px 10px;
}
.side-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 200;
}

.side-nav ul li a:hover {
  border : 1px solid rgb(255, 255, 255, 0.5);
  padding: 5px 10px;
  transition : all 0.3s ease;
  border-radius: 5px;
}

.swiper-hero {
  width: 100%;
  height: 100%;
  max-height: 95%;
}

 .swiper {
  width: 100%;
  height: 100%;
}

.swiper-hero .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.swiper-hero .swiper-slide {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  background-size: cover;
  background-position: center;
  /* transition: 4s ease-in-out; */
  position: relative;
}

.swiper-hero .swiper-content {
  position: absolute;
  width: 150%;
  top : 8%;
}

.swiper-hero .swiper-content p {
  position : absolute;
  /* left: -10px; */
  /* top: -7%; */
  width: 100%;
  z-index: 12;
  line-height: 1;
  font-size: 60px;
  font-weight: 500;
  transform: translateX(50%);
  color: #fff;
  text-align: left;
  opacity: 0;
}

/* Set a fixed height and aspect ratio for images */
.swiper-hero .swiper-slide img {
  margin-top: 14%;
  width: 40%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  filter: brightness(25%);
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 50%); */
}

.swiper-hero .swiper-slide-active p {
  opacity: 1;
  transform: translateX(-3%);
  transition: all 2s ease;
  transition-delay: 0.2s;
  font-family: "Sunflower", sans-serif;
}

/* Style for the active slide */
.swiper-hero .swiper-slide-active img {
  position : absolute;
  margin-top: 14%;
  width: 160%;
  height: 100%;
  left: auto;
  z-index: 12;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.9);
  object-fit: cover;
  background-position: center;
  background-size: cover;
  background-color: #000;
  filter: brightness(80%);
  border-radius: 10px;
}
.swiper-hero .swiper-slide-active .img-overlay {
  position: absolute;
  width: 160%;
  height: 100%;
  margin-top: 14%;
  z-index: 12;
  background: linear-gradient(165deg, rgba(0, 0, 0, 0.9) 15%, rgba(213, 210, 210, 0.1) 60%);
}
.swiper-hero .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #000;
}
.swiper-hero .swiper-pagination-bullet{
  background-color: rgb(55, 56, 57);
  opacity: 1;
}
.swiper-hero .swiper-pagination-bullet-active {
  background-color: rgb(4, 66, 133);
  width: 30px;
  height: 15px;
  border-radius: 10px;
}
.swiper-hero .progress-bar {
  position: absolute;
  bottom: 0;
  left: 12%;
  /* display: flex; */
  width: 76%;
  height: 4px;
  background: rgba(31, 33, 32, 0.2);
  overflow: hidden;
  border-radius: 20px;
  z-index: 20;
}
.swiper-hero .progress {
  height: 100%;
  width: 0%;
  background: #185697;
  transition: width 7s linear;
  overflow: hidden;
}
#section-container {
  padding : 50px 50px;
  width: 100%;
  height: 100%;
}
.section-white-underline{
  text-decoration-color: rgba(232, 229, 229, 0.5);
}
.section-black-underline{
  text-decoration-color: rgba(0, 0, 0, 0.5);
}
.section-title h4{
  font-size: 30px;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 15px;
  text-decoration-thickness: 3px;
}

#activities-section {
  width: 100%;
  height: 90%;
  background-color: #000;
}

#activities-section .section-title{
  color: #fff;
}

#about-section {
  width: 100%;
  height: 100%;
}

.card-activity {
  display: flex;
  align-items: center;
  justify-content: center;
  position : relative;
  width: 100%;
  height: 60vh;
  /* background-color: gray; */
  box-shadow: 0 0 0 rgba(0, 0, 0px, 0.3);
  border-radius: 20px;
  overflow: hidden;
}
.card-activity:hover{
  scale: 1.1;
  transition: scale 500ms ease-in-out;
}
.card-activity img{
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  width: 100%;
  height: 60vh;
  position:relative;
}

.card-activity .img-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position : absolute;
  background-color: #000;
  color: #fff;
  background : linear-gradient(180deg, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.8) 90%);
}
.card-activity .img-overlay .content{
  display: flex;
  gap: 30px;;
  justify-content: flex-start;
  flex-direction: column;
  bottom: 0;
  position: absolute;
  padding: 50px 10px;
}
.card-activity .content h3{
  font-size: 40px;
  font-weight: 400;
}
.card-activity .content h4{
  font-size: 18px;
  font-weight: 200;
}

.swiper-activity {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-activity .swiper-slide{
  width: 100%;
  height: 100%;
  display:flex;
  justify-content: center;
  align-items: center;
}
.swiper-activity-navigation{
  display: flex;
  justify-content: right;
  gap : 20px;
}
.swiper-activity-nav-prevEl i{
  color: rgba(255, 255, 255, 0.8);
  font-size: 30px;
}

.swiper-activity-nav-nextEl i{
  color: rgba(255, 255, 255, 0.8);
  font-size: 30px;
}
#whoweare-section{
  width: 100%;
  height: auto;
  background-color: var(--bg-white);
}
.whoweare-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding-top: 20px;
}

.whoweare-container img{
  width: 50%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
}

.whoweare-container p{
  line-height: 1.6;
  text-align: justify;
  padding: 5px 0;
}
.whoweare-container .bullet-text{
  display: flex;
  gap:5px;
  align-items: baseline;
}

#footer-section{
  background-color: #141313;
  color: #fff;
  width: 100%;
  height: 30%;
}
.newsletter{
  display: flex;
  justify-content: center;
  gap: 10px;
  padding : 20px 0;
  align-items: center;
}
.input-text{
  width: 250px;
  height: 40px;
  padding: 5px 20px;
  border-radius: 10px;
}
.btn-subscribe {
  padding : 10px 10px;
  background-color: #ed8d05;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 200;
}
.btn-subscribe:hover{
  background-color: rgb(19, 1, 1);
  transition: all 0.5s ease;
}
.footer-logoaddress{
  display: flex;
  flex-direction: column;
  gap:20px;
}
.footer-address{
  color: rgba(255, 255, 255, 0.8);
}
.footer-container {
  padding : 30px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.footer-contact {
  color: rgba(255, 255, 255, 0.8);
}
.footer-contact span {
  color: #fff;
  font-size: 20px;
}
.column-container{
  padding: 5px 0;
}
.column-container a{
  color: #fff;
}

.column-container p{
  color: rgba(232, 229, 229, 0.8);
  font-weight: 200;
}
.column-links a {
  color:rgba(232, 229, 229, 0.8);
  text-decoration: underline;
  font-weight: 200;
}
.column-links p {
  color:rgba(232, 229, 229, 0.5);
}

#footer-section .line{
  color: rgba(255, 255, 255, 0.9);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}
.footer-copyright{
  padding: 20px;
}
.footer-copyright p{
  font-size: 12px;
  font-weight: 200;
}
.footer-copyright-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding : 20px;
}
.footer-copyright-container p{
  font-size: 12px;
  font-weight: 100;
}
.footer-copyright-container a{
  font-size: 15px;
  font-weight: 100;
  color: rgba(232, 229, 229, 0.8);
  text-decoration: underline;
}


@media screen and (max-width : 768px) {

  .nav-right, .nav-middle {
    display: none;
  }
  .menu-icon {
    display: block;
    right: 20px;
  }
  #hero-section {
    height: 60%;
  }
  .swiper-hero .swiper-slide{
    margin-top: 10%;
  }
  .swiper-hero .swiper-content p {
    font-size: 30px;
    line-height: 1.3;
  }
  .whoweare-container {
    display: flex;
    flex-direction: column;
    align-items: normal;
  }
  .whoweare-container img{
    width: 100%;
  }
.footer-container{
  display: flex;
  flex-direction: column;
  gap:30px;
}
.footer-copyright-container{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
  #banner-section {
    position : absolute;
    left: 50%;
    top : 10%;
    z-index : 999;
    scale: 0.5;
  }
  
}