@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');
   :root {
            --primary-color: #2062AD;
            --primary-hover-color: #184a81;
            --text-dark: #333;
            --text-light: #fff;
            --body-bg: #fff;
            --container-bg: #f7f8fa;
            --border-color: #e0e0e0;
        }
 *{
    text-decoration: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  font-family: "Poppins", sans-serif;
  outline: none;
 }
 body::-webkit-scrollbar {
width: 5px;
display: none;
}
/* scrollbar itself */
body::-webkit-scrollbar-thumb {
background-color: #2062AD;
border-radius: 30px;
border: 0px solid #fff;
}
/* changes the color of the scrollbar on hover */
body::-webkit-scrollbar-thumb:hover {
background-color: #2062AD;
}

 .seone{
    top: 0;
    margin: 0;
 }

 .topone{
    height: 59px;
    display: flex;
    align-items: center;
   justify-content: center;
    background:#2062AD;
    position: absolute;
    gap: 45%;
    top: 0;
    width: 100%;
 }

 .toptwo{
   height: 60px;
   width: 100%;
   background: #fff;
   display: flex;
   align-items: center;
   gap: 14%;
   justify-content: center;
   position: relative;
   top: 60px;
   z-index:1000;
 }

 .donate{
   height: 30px;
   width: 90px;
   background-color: #fff;
   color: #2062AD;
   border: none;
   border-radius: 20px;
   cursor: pointer;
   transition: background-color 0.3s ease;
 }

 .donate:hover{
   background-color: #888787;
   color: #fff;
 }



 .rifhtnav{
   display: flex;
   gap: 15px;
   padding: 8px;
 }

 .leftnav{
   display: flex;
   gap: 15px;
   padding: 8px;
   color: #fff;
 }


 .leftnav a{
      color: #fff;
      font-weight: 400;
      font-size: 14px;

 }

  .leftnav a:hover{
      color: #fff;
      text-decoration: underline;
 }


  .toptwo a{
   color: black;
   font-weight: 500;
   font-size: 14px;
   z-index: 2;
  }
.toptwo a:hover{
  color: #2062AD;
  text-decoration: underline;
}

  .rinavtw{
   display: flex;
   gap: 15px;
   padding: 8px;
  }

  .lenavtw{
   display: flex;
   gap: 15px;
   padding: 8px;
  }


  .navimg img{
   height: 142px;
   width: 313px;
   position: relative;
   z-index: 1;
   top: -16px;
  }


  /*imageslide*/


  .sectwosl{
    margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 90vh;
      position: relative;
      top: 5px;
      font-family: Arial, sans-serif;
  }

  .slider-container {
      width: 100%;
      max-width: 1349px;
      height: 500px; /* fixed like your design */
      margin: auto;
      position: relative;
      overflow: hidden;
    }

    .slides {
      display: flex;
      transition: transform 0.6s ease-in-out;
      width: 100%;
      height: 100%;
    }

    .slides img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }

    /* Navigation buttons */
    .nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      font-size: 2rem;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.3s;
      z-index: 10;
    }

    .nav:hover {
      background: rgba(0,0,0,0.8);
    }

    .prev {
      left: 15px;
    }

    .next {
      right: 15px;
    }

    /* Dots */
    .dots {
      position: absolute;
      bottom: 15px;
      width: 100%;
      text-align: center;
      z-index: 10;
    }

    .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 0 5px;
      background: rgba(255,255,255,0.6);
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s;
    }

    .dot.active {
      background: #fff;
    }

    @media (max-width: 768px) {
      .slider-container {
        height: 300px;
      }
    }

    @media (max-width: 480px) {
      .slider-container {
        height: 180px;
      }
      .nav {
        font-size: 1.5rem;
        padding: 8px 12px;
      }
    }

/*text animation*/
        /* Announcement Bar */
        .textani {
            background: var(--primary-color);
            position: relative;
            top: -50px;
            color: var(--text-light);
        }
        .text-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 1rem;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.9rem;
            font-weight: 400;
            height: 50px;
            padding: 0 2rem;
            overflow: hidden;
        }
        .static-text {
            font-weight: 600;
            white-space: nowrap;
        }
        .animated-text {
            opacity: 0;
            animation: fadeInOut 4s infinite;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        @keyframes fadeInOut {
            0% { opacity: 0; }
            15% { opacity: 1; }
            85% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* --- Main Content Layout --- */
        .page-wrapper {
            padding: 3rem 5%;
            max-width: 1280;
            margin: 0 auto;
            height: 606px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2.5rem;
            position: relative;
            top: -2px; 
        }
        .content-container {
            display: flex;
            gap: 2rem;
            align-items: center;
            justify-content: center;
        }
        .main-content {
            flex: 2; 
            background-color: #D9D9D94D;
            padding: 2.5rem;
            border-radius: 8px;
            height: 604px;
            width: 738px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: 0.6s ease;
        }

        .main-content:hover{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transform: translateY(-3px);
        }


        .text{
          width: 548px;
          height: 343px;
        }
        .main-content h1 {
            font-size: 42px;
            line-height: 50px;
            font-weight: 500;
            margin-bottom: 1.5rem;
            color: black;
        }
        .main-content p {
            font-size: 1rem;
            line-height: 1.8;
            color: black;
            margin-bottom: 2rem;
        }
        .read-more-btn {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 12px 28px;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            top: 12px;
        }
        .read-more-btn:hover {
            background-color: var(--primary-hover-color);
        }
        .divider {
            height: 4px;
            width: 50px;
            background-color: var(--primary-color);
            margin-top: 1.5rem;
            position: relative;
            top: 62px;
        }
        
        .sidebar {
            flex: 1; 
        }
        .news-widget {
            width: 100%;
        }
        .news-widget-header {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }
        .news-item {
            display: flex;
            position: relative;
            top: 1px;
            gap: 1.5rem;
            padding: 1.5rem 1rem;
            height:119px ;
            width:413px;
            border: 1px solid var(--border-color);
            background: var(--body-bg);
            transition: box-shadow 0.3s ease;
            margin-top: 15px;
            transition: 0.6s ease;
        }
        .news-item:last-child {
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }
        .news-item:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.322);
            transform: translateY(-5px);
        }
        .news-date {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: 700;
            height: 76px;
            width: 76px;
            border-radius: 10px;
            background: #2062AD1A;
            flex-shrink: 0;
        }
        .news-date span:first-child {
            font-size: 2rem;
            line-height: 1;
        }
        .news-date span:last-child {
            font-size: 1rem;
            font-weight: 500;
            color: black;
        }
        .news-content p {
            font-size: 16px;
            font-weight: 400;
            line-height: 20px;
            color: #000000;
            margin: 0;
        }


        /*slide*/
        .slico {
          position: relative;
          top: 40px;
      margin: 0;
      font-family: Arial, sans-serif;
      overflow-x: hidden;
      background: #fff;
    }

    .notify {
      margin: 30px 0 10px;
      color: #363636;
      font-size: 56px;
      font-weight: 500;
      text-align: center;
      line-height: 50px;
      position: relative;
      margin-bottom: 30px;
    }

    .carousel-container {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .carousel {
      display: flex;
      overflow-x: hidden;
      scroll-behavior: smooth;
      gap: 40px;
      padding: 60px 0 140px;
      scroll-snap-type: x mandatory;
      justify-content: flex-start;
      align-items: flex-start;
    }

    .carousel::-webkit-scrollbar {
      display: none;
    }

    .frame-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.5s ease;
    }

    .frame {
      width: 389px;
      height: 250px;
      margin-top: 40px;
      background-color: #d3d3d3;
      border-radius: 12px;
      transition: transform 0.5s ease, z-index 0.5s ease;
      flex-shrink: 0;
      scroll-snap-align: center;
      z-index: 1;
    }

    .frame-content {
        position: relative;
        top: 40px;
      text-align: center;
      margin-top: 16px;
      opacity: 1;
      width: 300px;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .frame-content p {
      font-size: 18px;
      font-weight: 400;
      margin: 8px 0;
      line-height: 1.4;
    }

    .frame-content button {
      padding: 10px 24px;
      font-size: 14px;
      background-color: #1a4e9b;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 10px;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .frame-content button:hover {
      background-color: #163f7f;
      transform: scale(1.05);
    }




    /*vc*/

    .vc{
      width: 100%;
      height: 500px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .vcco{
      background: #2062AD;
      height: 500px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
    }

    .vcleft{
      width: 249px;
      height: 310px;
      color: #fff;

    }

    .vcleft img{
      width: 249.8px;
      height: 250px;
      border: 5px solid #fff;
      border-radius: 15px;
      
    }

    .vcright{
      height: 363px;
      width: 800px;
      color: #fff;
      position: relative;
      top: 20px;
    }

    .vcbtn{
      width: 150px;
      height: 48px;
      border-radius: 15px;
      background: #fff;
      border: none;
      font-size: 16px;
      font-weight: 500;
      color: #2062AD;
      transition:  0.6s ease;
      position: relative;
      top: 20px;
    }

    .vcbtn:hover{
      background: #163f7f;
      color: #fff;
    }


    .oujourney{
      width: 100%;
      height: 481px;
      background: #D9D9D926;
      display: flex;
      justify-content: center;
      align-items: center;

    }

    .innjoleft{
      width: 796px;
      height: 358px;
      position: relative;
      left: 80px;
      border-radius: 10px;

    }

    .innjoright img{
      width: 408px;
      height: 536px;
      left: 78px;
      float: right;
      position: relative;
      top: -30px;
    }

    .innjodown p{
      position: relative;
      top: 30px;
      width: 796px;
      height: 146px;

    }
    
    .jobtn{
      width: 150px;
      height: 48px;
      background: #2062AD;
      color: #fff;
      border: none;
      border-radius: 10px;
      position: relative;
      top: 60px;
      font-size: 16px;
      font-weight: 500;
      transition: 0.6s ease;

    }
    button:hover{
      cursor: pointer;
    }

        .jobtn:hover{
      background: #163f7f;
      color: #fff;
    }



            .stdact {
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 2rem;
    }

    .main-container {
      text-align: center;
      max-width: 900px;
      display: block;
      margin: 0 auto;
      width: 100%;

    }

    .carimce {
      position: relative;
      width: 100%;
      max-width: 1064px;
      height: 585px;
      margin: 0 auto 2rem;
      overflow: hidden;
      border-radius: 20px;
      height: auto;

    }

    .activity-card {
      display: flex;
      width: 400%;
      height: 100%;
      transition: transform 1s ease;

    }

    .activity-slide {
      width: 100%;
      position: relative;
      flex-shrink: 0;
      height: 470px;
    }

    .activity-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    }

    .read-more-button {
      position: absolute;
      top: 90%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 240px;
      height: 75px;
      padding: 12px 40px;
      border-radius: 15px;
      border: none;
      background-color: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(8px);
      color: #2062AD;
      font-size: 28px;
      z-index: 1;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2), 0 2px 4px -1px rgba(0,0,0,0.1);
    }

    .read-more-button:hover {
      transform: translate(-50%, -50%) scale(1.05);
      background-color: rgba(255, 255, 255, 0.95);
    }

    .card-description {
      line-height: 1;
    }

    .card-description h1 {
      color: #2062AD;
      font-size: 48px;
      font-weight: 500;
    }

    .card-description p {
      color: black;
      font-size: 20px;
      font-weight: 400;
    }

        .card-description {
            margin-top: 2rem;
        }

        .card-description h1 {
            font-size: 2.25rem;
            color: var(--dark-blue);
            margin: 0;
            font-weight: 700;
        }

        .card-description p {
            font-size: 1.125rem;
            color: var(--text-gray);
            margin-top: 0.5rem;
        }

        @media (max-width: 768px) {
            body {
                padding: 1rem;
            }

            .card-description h1 {
                font-size: 1.75rem;
            }

            .card-description p {
                font-size: 1rem;
            }
        }


        .carimce{
          width: 100%;
          display: block;
          justify-content: center;
        }



        /*msvs*/
        .msnvs h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    width: 100%;
}


.msnvs h1 span {
    color: #2062AD;
}

marquee {
    top: 40px;
    position: relative;
}

.ms-txt p {
    font-family: "Brush Script MT", cursive;
    font-size: 25px;
    width: 100%;
    color: black;
    margin: 0;
    text-align: center;
}

.ms-txt p span {
    color: #2062AD;
}

.blink {
    animation: blinker 1.5s linear infinite;
    color: #2062AD;
    font-family: sans-serif;
}

@keyframes blinker {
    50% { opacity: .5; }
}

.mv-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

.mission,
.vision {
    width: 100%;
    max-width: 500px;
    min-width: 260px;
    height: 300px;
    border-radius: 25px;
    background: #D9D9D940;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.6s ease;
    margin: 10px auto;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.vision {
    background: #2062AD26;
}

.vision:hover,
.mission:hover {
    box-shadow: 0 4px 15px rgba(32, 98, 173, 0.15);
    transform: translateY(-3px);
}

.textmisvisco h2{
  font-size: 48px; font-weight: 400;
}

.textmisvisco p{
  font-size: 16px; font-weight: 400;
}

.vchead h3{
  font-size: 32px; font-weight: 500;
}

.vchead h4{
  font-size: 15px ; font-weight: 500;
}

.vcright p{
  font-size: 20px; font-weight: 400; line-height: 1.5; position: relative; top: 5px;
}

.innjodown p{
  font-size: 20px; font-weight: 400;
}

@media (max-width: 1100px) {
  .page-wrapper {
    flex-direction: column;
    height: auto;
    gap: 1.5rem;
    padding: 2rem 2vw;
  }
  .main-content {
    width: 100%;
    min-width: 0;
    height: auto;
    padding: 1.5rem;
  }
  .sidebar {
    width: 100%;
    margin-top: 1.5rem;
  }
  .news-item {
    width: 100%;
    min-width: 0;
    height: auto;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .sectwosl {
    height: auto;
    min-height: 300px;
    flex-direction: column;
    padding: 0 0 2rem 0;
  }
  .slider-container {
    height: 320px;
  }
  .slide {
    min-width: 100vw;
    height: 320px;
  }
  .slide img {
    height: 320px;
  }
  .slico {
    top: 10px;
    padding: 0 0 2rem 0;
  }
  .carousel {
    gap: 16px;
    padding: 30px 0 60px;
  }
  .frame {
    width: 90vw;
    height: 180px;
  }
  .frame-content {
    width: 90vw;
    top: 10px;
  }
  .msvsmainco {
    width: 100vw;
    padding: 0 2vw;
  }
  .vc, .vcco {
    flex-direction: column;
    height: auto;
    min-height: 300px;
    gap: 20px;
    padding: 1rem 0;
  }
  .vcleft, .vcright {
    width: 100%;
    max-width: 98vw;
    text-align: center;
  }
  .vcleft img {
    width: 80vw;
    height: auto;
    max-width: 300px;
  }
  .vcright {
    width: 100%;
    max-width: 98vw;
    padding: 0 1vw;
  }
  .oujourney {
    flex-direction: column;
    height: auto;
    padding: 1rem 0;
  }
  .innjoleft, .innjoright {
    width: 100%;
    max-width: 98vw;
    left: 0;
    padding: 0 1vw;
  }
  .innjoright img {
    width: 90vw;
    height: auto;
    max-width: 350px;
    top: 0;
    left: 0;
    float: none;
    display: block;
    margin: 0 auto;
  }
  .innjodown p {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 700px) {
  .page-wrapper {
    padding: 1rem 0.5rem;
    gap: 1rem;
    position: relative;
    top: -30px;
    width: 95%;
    margin: auto;
  }
  .main-content {
    padding: 1rem;
    width: 100%;
    min-width: 0;
    height: auto;
  }
  .text {
    width: 100%;
    height: auto;
    padding: 13px;
  }
  .sidebar {
    width: 100%;
    margin-top: 1rem;
  }
  .news-item {
    width: 100%;
    min-width: 0;
    height: auto;
    gap: 0.5rem;
    padding: 0.75rem 0.25rem;
    padding: 14px;
  }
  .notify{
    font-size: 34px;
  }
  .news-content p{
    font-size: 13px;
  }
  .news-date {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
  .main-content h1 {
    font-size: 22px;
    line-height: 1.2;
  }
  .main-content p {
    font-size: 13px;
    position: relative;
    top: -15px;
  }
  .read-more-btn {
    font-size: 1rem;
    padding: 10px 18px;
    top: -30px;
    left: -3px;

  }
  .divider {
    width: 40px;
    top: -20px;
    height: 3px;
  }
  .sectwosl {
    height: auto;
    min-height: 180px;
    padding: 0 0 1rem 0;
  }
  .slider-container {
    height: 160px;
  }
  .slide {
    min-width: 100vw;
    height: 160px;
  }
  .slide img {
    height: 160px;
  }
  .slico {
    padding: 0 0 1rem 0;
    top: -44px;
    z-index: 1;
  }
  .carousel {
    gap: 8px;
    padding: 10px 0 30px;
  }
  .frame {
      width: 65%;
      height: 160px;
      position: relative;
      top: -10px;
  }
  .textmisvisco h2{
    font-size: 35px;

  }

  .mission,.vision{
    height: 350px;
    position: relative;
    top: -90px;
    width: 95%;
  }

  marquee{
    top: -50px;
  }

  .mv-container{
    gap: 20px
  }
   .logo{
    height: 120px;
    position: relative;
    top: -20px;
  }

  .ms-txt{
    margin-top: -280px;
    z-index: 10;
  }

  .vcco{
    border-radius: 10px 10px 10px 10px ;
        position: relative;
        top: -80px; 
      }

    .vcleft{
      position: relative;
      top: 50px;
    }

    .vcright p{
      font-size: 15px;
    }

    .vcright
    {
      position: relative;
      top: -50px;
    }

 .innjodown p{
  font-size: 16px;
  position: relative;
  top: 70px;
 }
 .innjoup{
position: relative;
top: 50px;
 }

 .oujourney{
  position: relative;
  top: -50px;
 }


 .jobtn{
  position: relative;
  top: 90px;
 }

  .textmisvisco p{
    font-size: 13px;
  }
  .frame-content {
    width: 95vw;
    top: 5px;
  }
  .frame-content p{
    position: relative;
    top: 11px;
  }
  .msnvs h1{
    font-size: 50px;
    top: -80px;
    z-index: 1;
  }
  .msvsmainco {
    padding: 0 1vw;
  }
  .vc {
    gap: 10px;
    padding: 0.5rem 0;
  }
  .vcleft img {
    width: 90vw;
    max-width: 220px;
  }

  .read-more-button {
   width: 300px;
   height: 100px;
   font-size: 15px;
  }
  .site-footer{
    position: relative;
    top: -200px;
    
  }

  .secslidedown{
            position: relative;
        top: -200px;
  }
  .activity-slide{
    height: 200px;
  }
  .oujourney {
    padding: 0.5rem 0;
  }
  .innjoright img {
            width: 95vw;
        max-width: 220px;
        float: right;
        z-index: -1;
        position: relative;
        top: -150px;
        height: 100%;
  }
}

@media (max-width: 500px) {
  .sectwosl, .slico, .msvsmainco, .vc, .vcco, .oujourney {
    padding: 0 0.5vw;
  }
  .slider-container {
    height: 100px;
    position: relative;
    top: -45px;
  }
  .text-container{
    position: relative;
    overflow: hidden;
    margin-top: -30px;
    height: 30px;
  }
  .static-text{
    font-size: 12px;
  }

  .animated-text{
    font-size: 10px;
  }
  .content-container{
    display: block;
  }

  .btn{
    font-size: 15px;
    padding: 2px 8px;
  }
  .slide {
    min-width: 100vw;
    height: 100px;
  }
  .slide img {
    height: 100px;
  }

  .frame-content {
    width: 98vw;
    top: 2px;
  }
  .vcleft img{
    width: 98vw;
    max-width: 120px;
  }
}

/* ...existing code... */

 #scrollTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      height: 40px;
      width: 40px;
      z-index: 1000;
      background: #0056b3;
      color: white;
      border: none;
      outline: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 20px;
      display: none;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      transition: all 0.6s ease;
    }

    #scrollTopBtn:hover {
      background: linear-gradient(135deg, #0056b3, #009ec3);
    }





.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 50px 0 0;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #2062AD;
  border-radius: 2px;
}

.footer-section.about p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  color: #ffffff;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  background-color: #2062AD;
  transform: translateY(-3px);
}

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

.quick-links ul li {
  margin-bottom: 10px;
}

.quick-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.quick-links ul li a:hover {
  color: #2062AD;
  transform: translateX(5px);
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info p i {
  margin-right: 10px;
  color: #2062AD;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.newsletter p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  display: flex;
  gap: 5px;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 10px 15px;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  border-color: #2062AD;
}

.newsletter-form button {
  padding: 10px 20px;
  background-color: #2062AD;
  color: #000000;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #2062AD;
  transform: translateY(-2px);
}



.footer-legal-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #2062AD;
}

    .help-button {
      position: fixed;
      left: 20px;
      bottom: 20px;
      background-color: #000000;
      color: white;
      padding: 12px 24px;
      border-radius: 25px;
      font-size: 14px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .scroll-up {
      position: fixed;
      right: 20px;
      bottom: 20px;
      background-color: #3b82f6;
      color: white;
      padding: 12px;
      border-radius: 50%;
      font-size: 18px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .secslidedown {
  width: 100%;
  background: #f8f9fa;
  padding: 60px 0 40px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 700px;
  box-sizing: border-box;
}

.carimce {
  width: 100%;
  max-width: 1064px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(32,98,173,0.07);
  padding: 0;
}

.activity-card {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
}

.activity-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.activity-slide img {
  width: 100%;
  max-width: 1064px;
  height: auto;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.read-more-button {
  margin-top: 1px;
  position: absolute;
  width: auto;
  z-index: 1000;
  height: auto;
  padding: 12px 40px;
  border-radius: 15px;
  border: none;
  background-color: #fff;
  color: #0056b3;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.20);
}

.read-more-button:hover {
  background-color: #0056b3;
  color: #fff;
}

.card-description {
  text-align: center;
  margin: 32px auto 0 auto;
  max-width: 700px;
}

.card-description h1 {
  color: #2062AD;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-description p {
  color: #222;
  font-size: 1.25rem;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .carimce {
    max-width: 98vw;
  }
  .activity-slide img {
    max-width: 98vw;
  }
}

@media (max-width: 700px) {
  .secslidedown {
    padding: 30px 0 20px 0;
    min-height: 400px;
  }
  .carimce {
    border-radius: 10px;
    box-shadow: none;
  }
  .card-description h1 {
    font-size: 1.5rem;
  }
  .card-description p {
    font-size: 1rem;
  }
}

/* Responsive Navigation */
.mobile-nav {
  display: none;
}
.desktop-nav {
  display: flex;
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-nav {
    display: block;
    width: 100%;
    background: #0056b3;
    position: relative;
    z-index: 2000;
  }
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
  }
  .mobile-logo {
    height: 50px;
    width: auto;
  }
  #mobile-nav-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
  }
  .mobile-nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    position: absolute;
    left: 0;
    top: 60px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 2001;
    padding: 0 0 16px 0;
  }
  .mobile-nav-menu.open {
    display: flex;
  }
  .mobile-nav-menu a, .mobile-nav-menu button.donate {
    color: #2062AD;
    padding: 16px;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    background: none;
    text-align: left;
    width: 100%;
    display: block;
    font-weight: 500;
  }
  .mobile-nav-menu a:last-child {
    border-bottom: none;
  }
  .mobile-nav-menu a i {
    margin-right: 8px;
  }
  .mobile-nav-menu button.donate {
    background: #2062AD;
    color: #fff;
    border-radius: 20px;
    margin: 8px 0;
    width: 90%;
    margin-left: 5%;
  }
}

.mobnav {
      background: #fff;
      box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
      height: 80px;
      width: 100%;
      position: relative;
      z-index: 100;
      display: none;
    }

    label.logo {
      color: white;
      font-size: 25px;
      line-height: 80px;
      padding: 0 100px;
      font-weight: bold;
      float: left;
    }
    .mobnav ul {
      float: right;
      margin-right: 20px;
    }
    .mobnav ul li {
      display: inline-block;
      line-height: 80px;
      margin: 0 5px;
    }
    .mobnav ul li a {
        color: black;
      font-size: 17px;
      padding: 7px 13px;
      border-radius: 3px;
      text-transform: uppercase;
      transition: 0.3s;
    }


  

    .checkbtn {
      font-size: 22px;
      color: white;
      float: right;
      line-height: 80px;
      margin-right: 30px;
      cursor: pointer;
      display: none;
    }
    #check {
      display: none;
    }
    @media (max-width: 1050px) {

   
      label.logo {
        padding-left: 30px;
      }
      .mobnav ul li a {
        font-size: 16px;
      }
    }
    @media (max-width: 890px) {
   
      .checkbtn {
        display: block;
      }
      label.logo {
        font-size: 22px;
        padding: 0 30px;
      }
      .mobnav ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #2062AD26;
        backdrop-filter: blur(50px);
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
        display: block;
        margin: 0;
        z-index: 99;
        overflow-y: auto;
      }
      .mobnav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
      }
      .mobnav ul li a {
        font-size: 20px;
        background: none;
      }
      .mobnav ul li a.active,
      .mobnav ul li a:hover {
        background: none;
      }
      #check:checked ~ ul {
        left: 0;
      }
    }
    @media (max-width: 480px) {

      body {
        padding: 0;
        margin: 0;
      }
      .mobnav {
        display: block;
        position: sticky;
        top: 0;
       box-shadow: 0 2px 2px -2px rgba(0,0,0,.2);

      }
      .mobnav ul li a {
        font-size: 15px;
      }
      label.logo {
        font-size: 20px;
      }

      .topone,.toptwo{
        display: none;
      }
    }