
 a{
    display: inline-block;
    text-decoration: none !important;
  }
  :root{
    --bgcolor:#F8F9FA;
    --linecolr: #03008d;
    --yellcolor:#f77f0f;   
    --ash:#353535;
  }
  /*---------top----------------*/
  .top{
    background: var(--bgcolor);   
  }
  .top-items{
    display: flex;
  }
  .top-items a, .user a {
    font-family:"Fira Sans", sans-serif;
    color:var(--ash);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 0;
    margin-right: 20px;
  }
  .top-items a i, .user a i{
    color: var(--yellcolor);
    margin-right: 8px;
  } 
  .user{
    float:right;
  }
  .blinking-button{
    width: 100%;
    padding: 8px 40px;
    border-radius: 48px 0px; 
    border: 0px solid #6C8003;
    color: white !important;
    background: var(--linecolr);
    animation: blink 1s linear infinite;
  }
  @keyframes blink {
    0%, 100% {background-color:black;}
    50% {background-color: red;}
  }
 
  /*---------mid----------------*/
  .clicks{
    float: right;
  }
  .clicks a{
     transform: translateY(50%);
  }
  .custom-tooltip {
    --bs-tooltip-bg: var(--bd-violet-bg);
    --bs-tooltip-color: var(--bs-white);
  }
 /*----------nav--------------*/
 .navbar {
    background: /*282828*/ var(--linecolr);
 }
 .my-nav li a{
   text-transform:uppercase;
   font-family: "Fira Sans", sans-serif;
   font-size: 16px;
   font-weight: 600;  
   margin: 0 10px;
   color: #fff;   
   border-right: 1px solid #fff;
 }
 .my-nav li a:hover{
   color: var(--yellcolor) !important;
 }
 .active{
   color: var(--yellcolor) !important;
 }
.navbar-brand img{
  width:490px;
}
.dropdown-item{
  margin: 0 !important;
  color: var(--ash) !important ;
}
/*---------------left-section-----------------------*/
.left-section{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 30px;
  border-radius: 50px;
}
.rt-section{ 
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 30px;
  border-radius: 50px;
  min-height: 100vh;
}
.rt-btn a{
  text-transform:uppercase;
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  width:100%;  
  margin: 0 10px;
  padding: 15px 0;
  color: var(--linecolr) ; 
  border-bottom: 1px solid #ccc;  
}
/*--------------about---------------------*/
.prof{
 /* background: #282828;*/
  padding: 50px 0;
}
.about{
  background: var(--linecolr);
}
.buttons a{
  display: block;
  margin: 30px;
}
.big-hd{
  font-family: "Fira Sans", sans-serif;
  color: var(--yellcolor);
}
.white-para{
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  text-align: justify;
}
.para{
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  color: var(--ash);
  text-align: justify;
}
.small-hd{
  font-family: "Fira Sans", sans-serif;  
}
.abt {
  text-align: center; 
}
/*-----------objectives----------------*/
.objectives{
  /*background: url(../images/about/texture.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;*/
  padding: 50px 0;
}
.dont{
  border: 1px solid #ccc;
  padding: 30px;
}
.objt{
  list-style: none;
  padding: 0; 
}
.objt li{
  font-family: "Fira Sans", sans-serif;
  font-size: 14px;
  color: var(--ash);
  margin: 10px 0;
  display: flex;
}
.objt li i{
  font-size: 18px;
  color: var(--yellcolor);
  margin-right: 8px;
}
/*-----------image-scroll-----------------------*/
/* Image Scroll Marquee */
.marquee-container {
  width: 100%;               /* Full width of the container */
  overflow: hidden;          /* Hide any overflow */
  position: relative;        /* Position relative for absolute children */
  background: #f0f0f0;       /* Background color for contrast */
  height: 200px;             /* Set the height as needed */
}

.marquee {
  display: flex;             /* Flex to handle multiple images */
  width: 600%;               /* Extend width to cover full range of duplicated content */
  position: absolute;        /* Position absolute for animation */
  animation: marquee 35s linear infinite; /* Animation properties */
}

.marquee img {
  height: 200px;             /* Set the height of the images */
  margin-right: 20px;        /* Spacing between images */
}

/* Define the marquee animation */
@keyframes marquee {
  0% {
    transform: translateX(0);           /* Start at the default position */
  }
  100% {
    transform: translateX(-50%);        /* Move left by half the width of the marquee */
  }
}

/* Pause the animation on hover */
.marquee-container:hover .marquee {
  animation-play-state: paused;         /* Stops the animation on hover */
}

/*-------------footer--------------------*/
.footer{
  background: #282828;
  padding: 50px 0;
}
.foot-items a{
  color: #fff;
  margin: 12px 0;
  display: flex;
}
.foot-items a i{
  color: var(--yellcolor);
  margin-right: 15px;
  margin-top: 6px; 
}
.rights{
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
.last{
  font-size: 12px;
  color:var(--bgcolor);  
}
.visitor{
    text-align: center;
    background: white;
    padding: 20px;
    width:100px;
    height:100px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    float: right;
}
/*////////////notice/////////////////////////*/
.notice{
  border: 1px solid #ccc;
  margin-bottom: 30px;
}
.notice img{
  width: 100%;
}
.form-group{
  padding: 20px 0;
}
.map{
  padding: 30px;
}
/*///////////Membership-form////////////////////*/
#form2{
   background: var(--linecolr);
   padding: 30px;
}
.qrcode{
  float: right;
  text-align: center;
}
.qrcode img{
  width: 100%;
}

.line1{
  text-align: center;
  font-size: 12px;
  color: var(--linecolr);
}
/*////////////////donation-form//////////////////////*/
#form3{
  background: var(--bgcolor);
  padding: 30px;
}
/*/////////////////////////////*/
#form1{
  background: var(--yellcolor);
  padding: 30px;
}
/*/////////////modal-popup////////////////////////*/
/* Style the modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.7); /* Black with opacity */
}

/* Modal Content Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  max-width: 600px; /* Max width of modal */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s; /* Fade in animation */
}

/* Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
/*/////////////////////////////*/
.prize-box{
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}
.prize-box h3{
  font-family: "Fira Sans", sans-serif;
  font-size: 24px;
  color: var(--linecolr);
  text-align: justify;
}
.prize-box h4{
  font-family: "Fira Sans", sans-serif;
  font-size: 18px;
  color: var(--yellcolor);
  text-align: justify;
}
.prize-box h5{
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  color: var(--ash);
  text-align: justify;
}