
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      scroll-behavior:smooth;
      font-family:'Poppins',sans-serif;
    }

    body{
      overflow-x:hidden;
      background:#f5f7fb;
      color:#222;
    }

    img{
      width:100%;
      display:block;
    }

    /* ================= HEADER ================= */

    /* ================= HEADER ================= */

header{
  width:100%;
  background:#8f3f3f;
  padding:14px 5%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
}

/* ================= LOGO ================= */

.logo{
  display:flex;
  align-items:center;
  gap:15px;
  text-decoration:none;
}

.logo img{
  width:75px;
  height:75px;
  object-fit:cover;
  border-radius:50%;
  background:#fff;
}

.logo-text h2{
  color:#fff;
  font-size:22px;
  font-weight:800;
  line-height:1.2;
}

.logo-text p{
  color:#ffcc00;
  font-size:14px;
  font-weight:500;
}

/* ================= RIGHT SIDE ================= */

.header-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:15px;
}

/* ================= SOCIAL ICONS ================= */

.header-social{
  display:flex;
  align-items:center;
  gap:15px;
}

.header-social a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#000;
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  font-size:16px;
  transition:.4s;
}

.header-social a:hover{
  background:#ffcc00;
  color:#000;
  transform:translateY(-5px);
}

/* ================= NAVBAR ================= */

nav ul{
  display:flex;
  gap:35px;
  list-style:none;
}

nav ul li a{
  color:#fff;
  text-decoration:none;
  font-size:17px;
  font-weight:600;
  transition:.4s;
  position:relative;
}

nav ul li a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#ffcc00;
  transition:.4s;
}

nav ul li a:hover{
  color:#ffcc00;
}

nav ul li a:hover::after{
  width:100%;
}

/* ================= MOBILE MENU ================= */

.menu-btn{
  color:#fff;
  font-size:28px;
  cursor:pointer;
  display:none;
}

/* ================= 992px ================= */

@media(max-width:992px){

  /* HIDE SOCIAL ICONS */

  .header-social{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .header-right{
    width:auto;
    align-items:flex-end;
  }

  nav{
    position:absolute;
    top:100%;
    left:-100%;
    width:100%;
    background:#7f3737;
    padding:25px 5%;
    transition:.4s;
  }

  nav.active{
    left:0;
  }

  nav ul{
    flex-direction:column;
    gap:20px;
  }

}

/* ================= 768px ================= */

@media(max-width:768px){

  header{
    padding:12px 4%;
  }

  .logo{
    gap:10px;
  }

  .logo img{
    width:60px;
    height:60px;
  }

  .logo-text h2{
    font-size:18px;
  }

  .logo-text p{
    font-size:12px;
  }

}

/* ================= 480px ================= */

@media(max-width:480px){

  .logo img{
    width:50px;
    height:50px;
  }

  .logo-text h2{
    font-size:16px;
  }

  .logo-text p{
    font-size:11px;
  }

  .menu-btn{
    font-size:24px;
  }

}

    /* ================= HERO SLIDER ================= */

    .hero{
      width:100%;
      height:100vh;
      position:relative;
      overflow:hidden;
      padding: 111px 0 0 0;
    }

    @media (max-width: 769px) {
        .hero {
            padding: 0;
        }
    }

    .slider{
      width:100%;
      height:100%;
      position:relative;
    }

    .slide{
      position:absolute;
      width:100%;
      height:100%;
      top:0;
      left:0;
      opacity:0;
      transition:1.3s ease;
      background-size:cover;
      background-position:center;
    }

    .slide.active{
      opacity:1;
      z-index:1;
    }

    .slide::before{
      content:'';
      position:absolute;
      width:100%;
      height:100%;
      background:rgba(0,0,0,0.6);
    }

    .slide-content{
      position:absolute;
      top:50%;
      left:5%;
      transform:translateY(-50%);
      max-width:750px;
      z-index:2;
      color:#fff;
      animation:fadeUp 1s ease;
    }

    .slide-content h1{
      font-size:58px;
      line-height:1.1;
      margin-bottom:25px;
      font-weight:800;
      text-transform:uppercase;
    }
    .slide-content h2{
      font-size:58px;
      line-height:1.1;
      margin-bottom:25px;
      font-weight:800;
      text-transform:uppercase;
    }

    .slide-content p{
      font-size:20px;
      line-height:1.8;
      margin-bottom:35px;
      color:#ddd;
    }

    .hero-btn{
      display:inline-block;
      padding:16px 40px;
      background:#ffcc00;
      color:#000;
      text-decoration:none;
      border-radius:50px;
      font-weight:700;
      transition:.4s;
      box-shadow:0 10px 30px rgba(255,204,0,.3);
    }

    .hero-btn:hover{
      transform:translateY(-6px);
      background:#fff;
    }

    /* SLIDER BUTTONS */

    .slider-btns{
      position:absolute;
      width:100%;
      bottom: 0;
      transform:translateY(-50%);
      display:flex;
      justify-content:space-between;
      padding:0 25px;
      z-index:10;
    }

    .slider-btns button{
      width:60px;
      height:60px;
      border:none;
      border-radius:50%;
      background:rgba(255,255,255,.15);
      backdrop-filter:blur(5px);
      color:#fff;
      font-size:22px;
      cursor:pointer;
      transition:.4s;
    }

    .slider-btns button:hover{
      background:#ffcc00;
      color:#000;
      transform:scale(1.1);
    }

    /* ================= COMMON SECTION ================= */

    section{
      padding:100px 5%;
    }

    .section-title{
      text-align:center;
      margin-bottom:70px;
    }

    .section-title h2{
      font-size:48px;
      font-weight:800;
      position:relative;
      display:inline-block;
    }

    .section-title h2::after{
      content:'';
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      bottom:-15px;
      width:70%;
      height:4px;
      background:#ffcc00;
      border-radius:50px;
    }

    /* ================= ABOUT ================= */

    .about{
      background:#fff;
      position:relative;
    }

    .about-container{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      align-items:center;
    }

    .about-left{
      position:relative;
    }

    .about-left img{
      border-radius:30px;
      height:100%;
      object-fit:cover;
      box-shadow:0 20px 60px rgba(0,0,0,.15);
    }

    .about-badge{
      position:absolute;
      bottom:-25px;
      right:-20px;
      background:#ffcc00;
      padding:30px;
      border-radius:20px;
      box-shadow:0 10px 30px rgba(0,0,0,.2);
    }

    .about-badge h3{
      font-size:35px;
      font-weight:800;
      color:#000;
    }

    .about-badge p{
      color:#000;
      font-weight:600;
    }

    .about-right h3{
      font-size:40px;
      margin-bottom:25px;
      line-height:1.3;
    }

    .about-right p{
      line-height:2;
      color:#555;
      margin-bottom:20px;
      font-size:16px;
    }

    .about-cards{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:20px;
      margin-top:35px;
    }

    .about-card{
      background:#f7f8fc;
      padding:25px;
      border-radius:20px;
      transition:.4s;
      border:1px solid transparent;
    }

    .about-card:hover{
      transform:translateY(-10px);
      border-color:#ffcc00;
      box-shadow:0 15px 40px rgba(0,0,0,.08);
    }

    .about-card i{
      font-size:35px;
      color:#ffcc00;
      margin-bottom:15px;
    }

    .about-card h4{
      margin-bottom:10px;
      font-size:22px;
    }

    .about-card p{
      margin:0;
      font-size:14px;
      line-height:1.8;
    }

    /* ================= MANIFESTO ================= */

    /* ================= MANIFESTO RESPONSIVE CSS ================= */

.manifesto{
  background:#7c1517;
  color:#fff;
  overflow:hidden;
}

.manifesto .section-title h2{
  color:#fff;
}

.manifesto-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.manifesto-card{
  width:100%;
  background:#072612;
  padding:35px;
  border-radius:25px;
  transition:.4s;
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  word-wrap:break-word;
}

.manifesto-card:hover{
  transform:translateY(-10px);
  border-color:#ffcc00;
}

.manifesto-card i{
  font-size:45px;
  color:#ffcc00;
  margin-bottom:20px;
}

.manifesto-card h3{
  margin-bottom:20px;
  font-size:25px;
  line-height:1.4;
}

.manifesto-card ul{
  padding-left:20px;
}

.manifesto-card li{
  margin-bottom:12px;
  line-height:1.8;
  color:#ddd;
  font-size:15px;
}

/* ================= 1024px ================= */

@media(max-width:1024px){

  .manifesto-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

}

/* ================= 768px ================= */

@media(max-width:768px){

  .manifesto{
    padding:80px 5%;
  }

  .manifesto-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .manifesto-card{
    padding:30px;
  }

  .manifesto-card h3{
    font-size:22px;
  }

  .manifesto-card i{
    font-size:40px;
  }

}

/* ================= 480px ================= */

@media(max-width:480px){

  .manifesto{
    padding:70px 4%;
  }

  .manifesto-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .manifesto-card{
    padding:22px;
    border-radius:18px;
  }

  .manifesto-card h3{
    font-size:20px;
    margin-bottom:15px;
  }

  .manifesto-card i{
    font-size:34px;
    margin-bottom:15px;
  }

  .manifesto-card li{
    font-size:14px;
    line-height:1.7;
  }

}

/* ================= 375px ================= */

@media(max-width:375px){

  .manifesto{
    padding:60px 3%;
  }

  .manifesto-card{
    padding:18px;
  }

  .manifesto-card h3{
    font-size:18px;
  }

  .manifesto-card li{
    font-size:13px;
  }

}

/* ================= 320px ================= */

@media(max-width:320px){

  .manifesto{
    padding:50px 2%;
  }

  .manifesto-grid{
    gap:15px;
  }

  .manifesto-card{
    padding:15px;
    border-radius:15px;
  }

  .manifesto-card h3{
    font-size:16px;
    line-height:1.5;
  }

  .manifesto-card i{
    font-size:28px;
  }

  .manifesto-card li{
    font-size:12px;
    line-height:1.6;
  }

}

    /* ================= MEMBERSHIP ================= */

   /* ================= MEMBERSHIP SECTION ================= */

/* ================= MEMBERSHIP 3 COLUMN GRID ================= */

.member-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  align-items:stretch;
}

/* ================= MEMBER BOX ================= */

.member-box{
  background:#f8f9fc;
  padding:40px 35px;
  border-radius:25px;
  transition:all .5s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  border:1px solid transparent;
  position:relative;
  overflow:hidden;
  z-index:1;
  height:100%;
  animation:fadeUp 1s ease;
}

/* HOVER BACKGROUND */

.member-box::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:#002f14;
  transition:.5s ease;
  z-index:-1;
}

.member-box:hover::before{
  left:0;
}

/* BOX HOVER */

.member-box:hover{
  transform:translateY(-12px);
  border-color:#8b0000;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* ICON */

.member-box i{
  font-size:45px;
  margin-bottom:20px;
  color:#8b0000;
  transition:.4s;
}

/* TITLE */

.member-box h3{
  font-size:28px;
  margin-bottom:20px;
  line-height:1.4;
  font-weight:700;
  color:#111;
  transition:.4s;
}

/* TEXT */

.member-box p,
.member-box li{
  line-height:1.9;
  font-size:15px;
  color:#444;
  transition:.4s;
}

.member-box ul{
  padding-left:20px;
}

/* HOVER TEXT */

.member-box:hover h3,
.member-box:hover p,
.member-box:hover li{
  color:#fff;
}

/* HOVER ICON */

.member-box:hover i{
  color:#8b0000;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(50px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* ================= RESPONSIVE ================= */

/* 1024px */

@media(max-width:1024px){

  .member-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .member-box{
    padding:35px 30px;
  }

}

/* 768px */

@media(max-width:768px){

  .member-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .member-box{
    padding:30px 25px;
    border-radius:20px;
  }

  .member-box h3{
    font-size:24px;
  }

  .member-box i{
    font-size:40px;
  }

}

/* 480px */

@media(max-width:480px){

  .member-box{
    padding:24px 20px;
    border-radius:18px;
  }

  .member-box h3{
    font-size:20px;
  }

  .member-box i{
    font-size:34px;
  }

  .member-box p,
  .member-box li{
    font-size:14px;
    line-height:1.7;
  }

}

/* 320px */

@media(max-width:320px){

  .member-box{
    padding:16px 14px;
    border-radius:15px;
  }

  .member-box h3{
    font-size:16px;
  }

  .member-box i{
    font-size:28px;
  }

  .member-box p,
  .member-box li{
    font-size:12px;
    line-height:1.6;
  }

}

    /* ================= CONTACT ================= */

    .contact{
      background:#111;
      color:#fff;
      text-align:center;
    }

    .contact p{
      margin-top:20px;
      line-height:2;
      font-size:18px;
      color:#ddd;
    }

    .contact-btn{
      display:inline-block;
      margin-top:35px;
      padding:16px 45px;
      background:#ffcc00;
      color:#000;
      text-decoration:none;
      border-radius:50px;
      font-weight:700;
      transition:.4s;
    }

    .contact-btn:hover{
      background:#fff;
      transform:scale(1.05);
    }

    /* ================= FOOTER ================= */

    footer{
      background:#000;
      padding:35px 5%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
      gap:25px;
      color:#fff;
    }

    .footer-logo{
      display:flex;
      align-items:center;
      gap:15px;
    }

    .footer-logo img{
      width:70px;
      height:70px;
      border-radius:50%;
      background:#fff;
      object-fit:contain;
    }

    .footer-logo h2{
      font-size:28px;
    }

    .footer-logo span{
      color:#ffcc00;
      font-size:14px;
    }

    .socials{
      display:flex;
      gap:15px;
    }

    .socials a{
      width:45px;
      height:45px;
      border-radius:50%;
      background:#111;
      color:#fff;
      display:flex;
      justify-content:center;
      align-items:center;
      text-decoration:none;
      transition:.4s;
    }

    .socials a:hover{
      background:#ffcc00;
      color:#000;
      transform:translateY(-5px);
    }

    /* ================= SCROLL TOP ================= */

    #scrollTop{
      position:fixed;
      right:25px;
      bottom:25px;
      width:55px;
      height:55px;
      border:none;
      border-radius:50%;
      background:#ffcc00;
      color:#000;
      font-size:22px;
      cursor:pointer;
      display:none;
      z-index:999;
      transition:.4s;
      box-shadow:0 10px 30px rgba(0,0,0,.2);
    }

    #scrollTop:hover{
      transform:translateY(-5px);
    }

    /* ================= ANIMATION ================= */

    @keyframes fadeUp{
      from{
        opacity:0;
        transform:translateY(60px);
      }
      to{
        opacity:1;
        transform:translateY(0);
      }
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:1100px){

      .slide-content h1{
        font-size:58px;
      }
      
      .slide-content h2{
        font-size:58px;
      }

      .about-container{
        grid-template-columns:1fr;
      }

    }

    @media(max-width:991px){

      .menu-btn{
        display:block;
      }

      nav{
        position:absolute;
        top:85px;
        left:-100%;
        width:100%;
        background:#000;
        transition:.4s;
      }

      nav.active{
        left:0;
      }

      nav ul{
        flex-direction:column;
        padding:30px;
      }

      .slide-content{
        max-width:90%;
      }

      .slide-content h1{
        font-size:46px;
      }
      
      .slide-content h2{
        font-size:46px;
      }

      .slide-content p{
        font-size:17px;
      }

    }

    @media(max-width:768px){

      .logo img{
        width:61px;
        height:61px;
      }

      .logo-text h2{
        font-size:22px;
      }

      .section-title h2{
        font-size:36px;
      }

      .slide-content h1{
        font-size:38px;
      }
      
      .slide-content h2{
        font-size:38px;
      }

      .slide-content{
        left:6%;
      }

      .about-right h3{
        font-size:30px;
      }

      .about-cards{
        grid-template-columns:1fr;
      }

      .slider-btns button{
        width:48px;
        height:48px;
      }

    }

    @media(max-width:500px){

      header{
        padding:12px 4%;
      }

      .logo{
        gap:8px;
      }

      .logo img{
        width:61px;
        height:61px;
      }

      .logo-text h2{
        font-size:18px;
      }

      .logo-text span{
        font-size:11px;
      }

      .slide-content h1{
        font-size:30px;
      }
       .slide-content h2{
        font-size:30px;
      }

      .slide-content p{
        font-size:15px;
      }

      .hero-btn{
        padding:14px 28px;
        font-size:14px;
      }

      .section-title h2{
        font-size:30px;
      }

      .about-badge{
        right:0;
        bottom:-15px;
        padding:20px;
      }

      .about-badge h3{
        font-size:25px;
      }

      footer{
        text-align:center;
        justify-content:center;
      }

    }
    
    
    #home, #about, #manifesto, #membership, #contact {
    scroll-margin-top: 50px;
}


/* ================= JOIN BUTTON ================= */

.join-btn{
  margin-top:25px;
  padding:15px 40px;
  border:none;
  border-radius:50px;
  background:#ffcc00;
  color:#000;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.4s;
}

.join-btn:hover{
  transform:translateY(-5px);
  background:#000;
  color:#fff;
}

/* ================= POPUP OVERLAY ================= */

.popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,.4);
  backdrop-filter:blur(8px);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:.4s;
  z-index:9999;
  padding:20px;
}

/* SHOW POPUP */

.popup-overlay.active{
  opacity:1;
  visibility:visible;
}

/* ================= POPUP BOX ================= */

.popup-box{
  width:100%;
  max-width:500px;
  background:#fff;
  border-radius:30px;
  padding:40px 35px;
  position:relative;
  animation:popupAnim .4s ease;
  box-shadow:0 20px 60px rgba(0,0,0,.2);
}

/* ANIMATION */

@keyframes popupAnim{

  from{
    transform:scale(.7);
    opacity:0;
  }

  to{
    transform:scale(1);
    opacity:1;
  }

}

/* CLOSE BUTTON */

.close-popup{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#f3f3f3;
  color:#000;
  font-size:18px;
  cursor:pointer;
  transition:.4s;
}

.close-popup:hover{
  background:#8b0000;
  color:#fff;
  transform:rotate(90deg);
}

/* HEADING */

.popup-box h2{
  font-size:36px;
  margin-bottom:10px;
  text-align:center;
  color:#111;
}

.popup-box p{
  text-align:center;
  color:#666;
  margin-bottom:30px;
  line-height:1.7;
}

/* ================= INPUT BOX ================= */

.input-box{
  position:relative;
  margin-bottom:22px;
}

.input-box input{
  width:100%;
  height:58px;
  border:none;
  outline:none;
  background:#f5f7fb;
  border-radius:15px;
  padding:0 50px 0 20px;
  font-size:15px;
  transition:.4s;
}

.input-box input:focus{
  border:2px solid #ffcc00;
  background:#fff;
}

.input-box i{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  color:#8b0000;
  font-size:18px;
}

/* ================= SUBMIT BUTTON ================= */

.submit-btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:15px;
  background:#002f14;
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.4s;
}

.submit-btn:hover{
  background:#8b0000;
  transform:translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .popup-box{
    padding:35px 25px;
    border-radius:25px;
  }

  .popup-box h2{
    font-size:30px;
  }

}

@media(max-width:480px){

  .popup-box{
    padding:30px 20px;
    border-radius:20px;
  }

  .popup-box h2{
    font-size:24px;
  }

  .popup-box p{
    font-size:14px;
  }

  .input-box input{
    height:52px;
    font-size:14px;
  }

  .submit-btn{
    height:52px;
    font-size:14px;
  }

}

@media(max-width:320px){

  .popup-box{
    padding:25px 15px;
  }

  .popup-box h2{
    font-size:20px;
  }

  .input-box input{
    height:48px;
    padding:0 45px 0 15px;
    font-size:13px;
  }

  .submit-btn{
    height:48px;
    font-size:13px;
  }

}





/* ================= HEADER TOP ================= */

.header-top{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:15px;
}

/* ================= JOIN BUTTON ================= */

.header-join-btn{
  padding:12px 28px;
  border:none;
  border-radius:50px;
  background:#ffcc00;
  color:#000;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:.4s;
  white-space:nowrap;
}

.header-join-btn:hover{
  background:#000;
  color:#fff;
  transform:translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  /* HIDE TOP SECTION */

  .header-top{
    display:none;
  }

}


@media (min-width: 992px) {
    .socials{
      display:none;
      
    }
  }
  
  
  /* ================= DESIGNED BY ================= */

.designed-by{
  display:flex;
  align-items:center;
  justify-content:center;
}

.designed-by p{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:15px;
  font-weight:500;
  margin:0;
}

.designed-by img{
  width:92px;
  object-fit:contain;
  transition:.4s;
  position: relative;
  bottom: 6px;
}

.designed-by img:hover{
  transform:scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media(max-width:480px){

  .designed-by p{
    font-size:13px;
    gap:8px;
  }

  .designed-by img{
    width:75px;
  }

}

@media(max-width:320px){

  .designed-by p{
    font-size:12px;
  }

  .designed-by img{
    width:65px;
  }

}