*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#0c0c0c;
  color:#fff;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  background:white;
  backdrop-filter:blur(10px);
  padding:5px 0;
}
.navbar-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  line-height:0.9;
}

.nav-logo{
  width:65px;
  height:55px;
  object-fit:contain;
  /* animation:floatLogo 3s ease-in-out infinite; */
  /* margin-bottom:5px; */
}


.brand-text{
  text-align:center;
}

.brand-title{
  font-size:10px;
  font-weight:700;
  color:#ffb300;
}

.nav-link{
  color:black !important;
  margin-left:40px;
  transition:.4s;
  font-weight: 600;
}

.nav-link:hover{
  color:#ffb300 !important;
}

/* HERO */

.hero{
  min-height:100vh;

  background:
  linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
  url('/image/img1.jpeg');

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  position:relative;
}

.hero::before{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  background:
  radial-gradient(circle at center,
  rgba(255,153,0,.15),
  transparent 70%);
}

/* HERO CONTENT */

.hero-content{
  position:relative;
  z-index:2;
  margin-top: 4rem !important;
}

.logo-box{
  margin-bottom:30px;
  animation:floatLogo 4s ease-in-out infinite;
}

.logo-box img{
  width:170px;
  filter:drop-shadow(0 0 20px rgba(255,153,0,.6));
}

/* TEXT */

.hero-content h1{
  font-size:80px;
  font-weight:800;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-content h1 span{

  background:linear-gradient(
  90deg,
  #ffb300,
  #ff5722,
  #ffcc00,
  #ff5722,
  #ffb300);

  background-size:300%;

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  animation:gradientMove 4s linear infinite;
}

.hero-content h3{
  color:#ffb300;
  margin-bottom:25px;
  font-weight:500;
  letter-spacing:3px;
}

.hero-content p{
  color:#ddd;
  line-height:1.9;
  max-width:700px;
  margin-bottom:35px;
  font-size:17px;
}

/* BUTTON */

.hero-btn{

  display:inline-block;
  padding:15px 40px;

  background:linear-gradient(90deg,#ff9800,#ff5722);

  color:#fff;
  text-decoration:none;

  border-radius:50px;
  font-weight:600;

  transition:.4s;
}

.hero-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(255,140,0,.4);
}

/* FEATURES */

.features{
  padding:10px 0;
  background:#121212;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:50px;
  font-weight:700;
  color:#ffb300;
}

.section-title p{
  color:#bbb;
  max-width:700px;
  margin:auto;
  margin-top:15px;
}

/* CARDS */

.feature-card{

  background:#1b1b1b;

  padding:40px 30px;

  border-radius:20px;

  text-align:center;

  transition:.4s;

  height:100%;

  border:1px solid rgba(255,255,255,.05);
}

.feature-card:hover{
  transform:translateY(-12px);
  border-color:#ff9800;
  box-shadow:0 10px 30px rgba(255,140,0,.15);
}

.feature-icon{
  width:90px;
  height:90px;

  background:linear-gradient(90deg,#ff9800,#ff5722);

  display:flex;
  align-items:center;
  justify-content:center;

  margin:auto;
  margin-bottom:25px;

  border-radius:50%;

  font-size:35px;
}

.feature-card h4{
  margin-bottom:15px;
  color:#ffb300;
}

.feature-card p{
  color:#bbb;
  line-height:1.8;
}

/* ABOUT */

.about{
  padding:60px 0;
  background:#0c0c0c;
}

.about-img img{
  width:100%;
  border-radius:20px;
}

.about-content h2{
  font-size:50px;
  color:#ffb300;
  margin-bottom:20px;
}

.about-content p{
  color:#ccc;
  line-height:1.9;
  margin-bottom:20px;
}

/* FOOTER */


/* ================= FOOTER ================= */

.main-footer{
  background:#0d0d0d;
  padding:60px 0 30px;
  border-top:1px solid rgba(255,255,255,.05);
}

.footer-about h2{
  color:#ffb300;
  font-size:34px;
  margin-bottom:20px;
  font-weight:700;
}

.footer-about p{
  color:#bbb;
  line-height:2;
  margin-bottom:30px;
}

/* SOCIAL */

.footer-social{
  display:flex;
  gap:15px;
}

.footer-social a{
  width:45px;
  height:45px;

  background:#1a1a1a;
  color:#ffb300;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  text-decoration:none;

  transition:.4s;
}

.footer-social a:hover{
  background:#ff9800;
  color:#fff;
  transform:translateY(-5px);
}

/* LINKS */

.footer-links h4,
.footer-contact h4{
  color:#fff;
  margin-bottom:25px;
  font-size:22px;
}

.footer-links ul{
  padding:0;
  margin:0;
  list-style:none;
}

.footer-links ul li{
  margin-bottom:14px;
}

.footer-links ul li a{
  color:#bbb;
  text-decoration:none;
  transition:.4s;
}

.footer-links ul li a:hover{
  color:#ff9800;
  padding-left:8px;
}

/* CONTACT */

.footer-contact p{
  color:#bbb;
  margin-bottom:18px;
  line-height:1.8;
}

.footer-contact i{
  color:#ff9800;
  margin-right:10px;
}

/* BOTTOM */

.footer-bottom{
  margin-top:60px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.footer-bottom p{
  color:#777;
  margin:0;
}

/* RESPONSIVE */

@media(max-width:768px){

  .main-footer{
    text-align:center;
  }

  .footer-social{
    justify-content:center;
  }

}


/* ANIMATION */

@keyframes floatLogo{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-12px);
  }

  100%{
    transform:translateY(0px);
  }

}

@keyframes gradientMove{

  0%{
    background-position:0%;
  }

  100%{
    background-position:300%;
  }

}

/* RESPONSIVE */

@media(max-width:992px){

  .hero-content{
    text-align:center;
  }

  .hero-content h1{
    font-size:55px;
  }

}

@media(max-width:768px){

  .hero-content h1{
    font-size:42px;
  }

  .hero-content h3{
    font-size:20px;
  }

  .section-title h2,
  .about-content h2{
    font-size:35px;
  }

}
/* ================= ACTIVITIES ================= */

.activities-section{
  background:#0f0f0f;
}

/* ================= COUNTER ================= */

.counter-section{
  background:#111;
}

.counter-box h2{
  font-size:55px;
  color:#ffb300;
  font-weight:700;
}

/* ================= GALLERY ================= */

.gallery-img{
  height:300px;
  width:100%;
  object-fit:cover;
  border-radius:20px;
  transition:.4s;
}

.gallery-img:hover{
  transform:scale(1.04);
}

/* ================= JOIN ================= */

.join-section{
  background:#0a0a0a;
}

.join-title{
  font-size:60px;
  font-weight:800;
  margin-bottom:25px;
  color:#ffb300;
}

.join-text{
  color:#ccc;
  font-size:18px;
  line-height:2;
  margin-bottom:40px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .join-title{
    font-size:38px;
  }

  .join-text{
    font-size:16px;
  }

  .counter-box h2{
    font-size:40px;
  }

}

/* ================= NEWS SECTION ================= */

.news-section{
  padding:60px 0;
  background:#101010;
}

.news-card{
  background:#1b1b1b;
  border-radius:20px;
  overflow:hidden;
  transition:.4s;
  height:100%;
}

.news-card:hover{
  transform:translateY(-10px);
  box-shadow:0 10px 30px rgba(255,140,0,.15);
}

.news-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.news-content{
  padding:25px;
}

.news-content small{
  color:#ffb300;
  letter-spacing:1px;
}

.news-content h4{
  margin:15px 0;
  color:#fff;
}

.news-content p{
  color:#bbb;
  line-height:1.8;
}

.news-content a{
  color:#ff9800;
  text-decoration:none;
  font-weight:600;
}

/* ================= QUOTE SECTION ================= */

.quote-section{
  padding:120px 0;
  background:
  linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.8)),
  url('https://images.unsplash.com/photo-1509099836639-18ba1795216d');

  background-size:cover;
  background-position:center;
  text-align:center;
}

.quote-box h2{
  font-size:55px;
  color:#ffb300;
  font-weight:800;
  margin-bottom:25px;
}

.quote-box p{
  max-width:800px;
  margin:auto;
  color:#ddd;
  line-height:2;
  font-size:18px;
  margin-bottom:40px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .quote-box h2{
    font-size:35px;
  }

  .quote-box p{
    font-size:16px;
  }

}
