* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html{
    scroll-padding-top: 80px;
}
body {
  overflow-x: hidden;
}

.navbar {
  padding: 10px 0;
  background: rgb(3, 73, 3);
  backdrop-filter: blur(15px);
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-link {
  color: #fff !important;
  margin: 0 12px;
  font-weight: 500;
}

.donate-btn {
  background-color: white;
  border: none;
  color: black;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 5px;
}

.donate-btn:hover{
  background-color: #04AA6D;
  color: white;
}
.hero {
  height: 100vh;
  background: url(./img/image.png) center center/cover;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h5 {
  color: #ff6b00;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.8;
  max-width: 550px;
}

.hero-btn {
 background-color: rgb(46, 190, 3);
  border: none;
  color: rgb(244, 245, 243);
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
}

.hero-btn:hover{
  background: white;
  color: black;
}

.play-btn {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0307dd;
  margin-left: 20px;
  text-decoration: none;
  color: #ffff;
  font-size: 20px;
}

/*=========================
    ABOUT SECTION
=========================*/

#about {
  
  scroll-margin-top: 80px;
}

.about-images {
  position: relative;
  width: 100%;
  min-height: 700px;
}

.about-images img {
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}

.about-images img:hover {
  transform: translateY(-8px);
}

.img-main {
  width: 360px;
  height: 520px;
  position: absolute;
  left: 80px;
  top: 70px;
}

.img-top {
  width: 210px;
  height: 230px;
  position: absolute;
  right: 10px;
  top: 0;
  border: 8px solid #fff;
}

.img-bottom {
  width: 240px;
  height: 250px;
  position: absolute;
  left: 0;
  bottom: 0;
  border: 8px solid #fff;
}

/*=========================
     RIGHT CONTENT
=========================*/

.section-tag {
    color: #e74c3c;
    border-radius: 50px;
  font-weight: 600;
  margin: 50px 50px;
  font-size: 30px;
  text-align: center;}

.about-section h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 25px;
}

.about-section p {
  color: #6b7280;
  font-size: 17px;
  line-height: 32px;
}

/*=========================
        INFO CARD
=========================*/

.info-box {
  background: #fff;
  margin-top: 35px;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.info-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.info-item + .info-item {
  margin-top: 35px;
}

.info-item .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #e74c3c;
  color: #fff;

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

  font-size: 24px;
}

.info-item h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}

.info-item p {
  margin: 0;
  line-height: 30px;
}

.info-box hr {
  margin: 35px 0;
  opacity: 0.15;
}

/*=========================
     BUTTON
=========================*/

.btn-danger {
  background: #e74c3c;
  border: none;
  border-radius: 10px;
  padding: 16px 35px;
  font-weight: 600;
  transition: 0.4s;
}

.btn-danger:hover {
  background: #d53d2c;
  transform: translateY(-3px);
}

/*=========================
      FOUNDER
=========================*/

.about-footer {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 40px;
}

.founder {
  display: flex;
  align-items: center;
  gap: 15px;
}

.founder img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.founder h6 {
  font-size: 22px;
  margin: 0;
  color: #1e293b;
}

.founder span {
  color: #6b7280;
}

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

@media (max-width: 991px) {
  .about-images {
    min-height: 550px;
    margin-bottom: 80px;
  }

  .img-main {
    width: 300px;
    height: 430px;
    left: 50%;
    transform: translateX(-50%);
  }

  .img-top {
    width: 180px;
    height: 180px;
    right: 30px;
  }

  .img-bottom {
    width: 180px;
    height: 180px;
    left: 30px;
  }

  .about-section h2 {
    font-size: 40px;
  }

  .about-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .about-images {
    min-height: 480px;
  }

  .img-main {
    width: 260px;
    height: 350px;
  }

  .img-top {
    width: 150px;
    height: 150px;
  }

  .img-bottom {
    width: 150px;
    height: 150px;
  }

  .about-section h2 {
    font-size: 34px;
  }

  .info-box {
    padding: 25px;
  }

  .info-item {
    flex-direction: column;
  }

  .info-item .icon {
    margin-bottom: 10px;
  }
}

#activities{
    background:#f8fafc;
    padding-top: 50px;
}
.karjokom{
  font-size: 30px;
  padding-bottom: 20px;
  padding-top: 60px;
}
.section-title h6{
    color:#198754;
    letter-spacing:1px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    margin:15px 0;
}

.section-title p{
    max-width:650px;
    margin:auto;
}

.activity-card{

    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
    border:1px solid #eee;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.activity-card:hover{

    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.activity-card .icon{

    width:85px;
    height:85px;
    background:#198754;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:40px;
    margin-bottom:25px;
    transition:.4s;

}

.activity-card:hover .icon{

    background:#ffc107;
    transform:rotate(360deg);

}

.activity-card h4{

    font-size:24px;
    font-weight:700;
    margin-bottom:15px;

}

.activity-card p{

    color:#666;
    line-height:1.8;

}

@media(max-width:768px){

.section-title h2{

font-size:30px;

}

.activity-card{

padding:30px 20px;

}

}

/*Gallery Section Start*/
#gallery{
    background:#f8fafc;
    padding-top: 60px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

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

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top,
    rgba(25,135,84,.95),
    rgba(25,135,84,.25));
    display:flex;
    justify-content:center;
    align-items:flex-end;
    padding-bottom:30px;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover .overlay{
    opacity:1;
}

.overlay h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.contact-section{
    background:#f8fafc;
}

.section-subtitle{
    color:#198754;
    font-weight:600;
    letter-spacing:1px;
}

.section-title{
    font-size:40px;
    font-weight:700;
    margin:15px 0;
}

.section-description{
    max-width:650px;
    margin:auto;
    color:#666;
}

.contact-card{

    background:#198754;
    padding:40px;
    border-radius:20px;
    color:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.contact-item{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-item > div{
    flex: 1;
    min-width: 0;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item i{

    width:60px;
    height:60px;
    background:#fff;
    color:#198754;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:24px;

}

.contact-item h5{

    font-weight:700;
    margin-bottom:5px;

}

.contact-item p{

    margin: 0;
    opacity: .9;
    overflow-wrap: break-word;
    word-break: break-word;

}
#contact{padding-top: 80px 0;
}

@media(max-width:991px){

.contact-card{

margin-bottom:20px;

}

.section-title{

font-size:32px;

}

}

.map-area iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.footer{

background:#0B3D2E;

padding:80px 0 20px;

color:#fff;

}

.footer-logo{

width:80px;

margin-bottom:20px;

}

.footer h3{

font-weight:700;

margin-bottom:20px;

}

.footer h4{

margin-bottom:25px;

font-weight:700;

position:relative;

}

.footer h4::after{

content:"";

position:absolute;

left:0;

bottom:-10px;

width:50px;

height:3px;

background:#FFC107;

}

.footer p{

color:#d8d8d8;

line-height:28px;

}

.footer ul{

padding:0;

list-style:none;

}

.footer ul li{

margin-bottom:15px;

}

.footer ul li a{

text-decoration:none;

color:#ddd;

transition:.4s;

}

.footer ul li a:hover{

padding-left:8px;

color:#FFC107;

}

.footer-social{

display:flex;

gap:15px;

margin-top:25px;

}

.footer-social a{

width:45px;

height:45px;

background:#198754;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

color:#fff;

font-size:20px;

transition:.4s;

text-decoration:none;

}

.footer-social a:hover{

background:#FFC107;

color:#000;

transform:translateY(-8px);

}

.footer hr{

margin:50px 0 20px;

border-color:rgba(255,255,255,.15);

}

.copyright{

display:flex;

justify-content:space-between;

flex-wrap:wrap;

color:#ddd;

}

.scroll-top{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

background:#198754;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

color:#fff;

font-size:28px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.3);

transition:.4s;

z-index:999;

}

.scroll-top:hover{

background:#FFC107;

color:#000;

transform:translateY(-8px);

}

@media(max-width:768px){

.copyright{

text-align:center;

justify-content:center;

gap:10px;

}

}
/*Custom CSS*/
.unnoyon{
  font-size: 16px;
}
/* Sohel Parvez*/
.sohel{
  text-decoration: none;
  color: white;
}