@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* General Overrides */
body {
    font-family: "Roboto", "Lato", "Poppins", sans-serif;
    background-color: #fff; /* Light background for entire site */
    color: #343a40; /* Default text color */
    margin: 0 auto; /* Center content with auto margin */
}

/* Custom Navbar Styles */
.navbar {
    background-color: #0062cc; /* Custom navbar background */
}
.navbar-brand {
    color: #fff; /* Custom brand text color */
}
.navbar-nav .nav-link {
    color: #fff; /* Custom link text color */
}
.navbar-nav .nav-link:hover {
    color: #ffc107; /* Hover color for links */
}

.main-body{
    margin: 0 auto;
    max-width: 1364px; /* Set max-width for the entire page */
    overflow: hidden;
}

.title {
    margin-bottom: 11px;
    margin-top: 40px;
}

.title .sub{
    font-family: sans-serif, arial;
    font-size: 1.25rem;
    font-weight: bold;
    color: #707070;
    text-transform: uppercase;
    border-bottom: 1px solid #D6D6D6;
    display: inline-block;
}

.title.dark .sub{
    color: #fff;
}

.title .sub::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 4px;
    background-color: #805CA0;
    /* border-top: 3px solid #CAD40F; */
    /* padding-left: 0; */
    /* padding-right: 0; */
    position: relative;
    margin-bottom: -12px;
    /* float: left; */
    margin-left: 10px;
    margin-right: -36px;
}

.title .main{
    font-size: 1.88rem;
    font-weight: 500;
    color: #805CA0;
}
.title.dark .main{
    color: #805CA0;
    line-height: 36px;
    margin-top: 16px;
}

.main-section p{
    font-family: sans-serif, arial;
    font-size: 1rem;
    color: #707070;
    line-height: 1.5rem;
}

.box-shadow {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16); /* Black with 16% opacity */
}

.full-height {
    height: 100vh; /* 100% of the viewport height */
}

/* Custom Button Styles */
.btn-custom {
    background-color: #28a745; /* Custom button color */
    border-color: #28a745; 
    color: #fff;
}
.btn-custom:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Custom Form Styles */
.form-control-custom {
    border-radius: 0.25rem;
    border: 2px solid #ced4da;
}
.form-control-custom:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.btn-group-link {
    border-radius: 15px;
    display: flex;
    margin-top: 20px;
    /* overflow: hidden;
    border: 1px solid #ccc; */
    width: inherit;
}

.btn-group-link a:first-child{
  border-radius: 10px 0 0 10px;
  border-right:0;
}
.btn-group-link a:last-child{
  border-radius: 0 10px 10px 0;
  border-left:0;
}

.btn-group-link a.soma_zaidi,
.btn-group-link a:hover {
  background-color: #805CA0;
  color: #fff;
}

.btn-group-link a {
  font-weight: bold;
  color: #707070;
  border: 1px solid #ccc;
  display: inline-block;
  /* line-height: 35px; */
  padding: 6px 26px;
  text-decoration: 0;
  margin: 0;
}

/* ----- ------- ----- */

#header-section .header-top{
    background-color: #89C431;
    max-height: 80px;
  }

  .header-title{
    display: flex;
    gap: 20px;
  }

  .header-title .logo{
    width: 98px;
    height: 98px;
    /* background-color: #F1F1F1; */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border-radius: 50px;
    margin-top: 15px;
    background-image: url('../images/logo.png');
  }

  .header-title .title{
    font-size: 1.3em;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    width: 300px;
    margin-top: 20px;
    line-height: 26px;
  }

  .donation{
    display: flex;
    gap: 0;
    margin-top: 30px;
    float: right;
  }

  .donation-btn, .join-us-btn {
      display: inline-block;
      /* line-height: 34px; */
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
      padding: 2px 18px;
  }
  .donation-btn{
    color: #dfaa53;
    background-color: #fff;
    padding-left: 25px;
    border-radius: 20px 0 0 20px;
  }
  .join-us-btn{
    color: #fff;
    background-color: #dfaa53;
    padding-right: 25px;
    border-radius: 0 20px 20px 0;
  }

  .menu{
    /* display: flex; */
    gap: 46px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    /* max-width: 850px; */
  }

  .menu li {
    display: inline-block;
    font-size: 1.13em;
    font-weight: bold;
    margin-left: 20px;
    margin-right: 20px;
  }

  .menu li:last-child {
    margin-left: 0;
    margin-right: 0;
    float: right;
  }

  .menu li a {
    text-decoration: none;
    color: #42670B;
    line-height: 43px;
  }

  #banner-section{
    height: 570px;
    background-color: #ccc;
    box-shadow: 0px 3px 6px 0 rgba(0,0,0,0.16);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .intro{
    margin-top: 50px;
    margin-bottom: 50px;
  }

  #training, #testimonial, #donation, #faq{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  #stat-counter{
    background-color: #89C431;
    min-height: 137px;
  }

  #testimonial{
    background-color: #000;
    max-height: 760px;
  }

  #testimonial .title-section{
    color: #fff;
  }

  #donation{
    background-color: #F1F1F1;
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .donation_form{
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.16);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.16);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.16);
    border-radius: 10px;
    padding: 30px 60px;
    min-height: 430px;
    margin: 8px 0;
  }

  .faq_carousel{
    background-color: #ccc;
    border-radius: 10px;
    min-height: 420px;
    margin: 8px 0;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  .scheduled_carousel{
    background-color: #ccc;
    border-radius: 10px;
    min-height: 420px;
    margin: 8px 0;
    margin-right: 35px;
  }

  .scheduled_item{
    margin-left: 5px;
  }
  .scheduled_item .schedule_title{
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 15px;
  }
  .scheduled_item p{
    font-size: 20px;
  }
  .scheduled_item strong{
    font-size: 20px;
  }

  .title-section span {
      display: block;
      color: #dfaa53;
      font-size: 18px;
      text-transform:uppercase;
      font-weight: 500;
      letter-spacing: 0.5px;
  }

  .title-section, .sub-title-section{
      font-size: 29px;
      font-weight: bold;
      margin-bottom: 20px;
  }

  .sub-title-section{
      font-size: 1.38em;
      text-transform: uppercase;
      margin-top: 30px;
  }

  .body-section {
      font-size: 1.13em;
  }

  .panel-section.dark{
    background-color: #89C431;
  }

  .panel-section {
      background-color: #e1f0ce;
      border-radius: 10px;
      padding: 40px;
      min-height: 320px;
  }

  .panel-section .title {
      margin-top: 0;
      font-size: 28px;
      font-weight: bold;
      border-bottom: 1px solid #000;
      color: #000;
      padding-bottom: 10px;
      margin-bottom: 18px;
  }

  .panel-section .description {
      font-size: 20px;
      min-height: 120px;
  }

  .panel-section .description img {
      float: right;
  }

  .panel-section .bottom a.read_more {
      text-decoration: none;
      border-radius: 20px;
      background-color: #fff;
      padding: 4px 25px;
      font-size: 1.05em;
      font-weight: bold;
      color: #000;
      box-shadow: 0px 3px 6px 0 rgba(0,0,0,0.16);
      margin-top: 20px;
  }

  .panel-section .bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
  }

  .stats-list {
      display: flex;
      justify-content: space-around;
      padding: 25px 0;
  }

  .stats-list .stat-panel {
      display: flex;
      gap: 20px;
  }

  .stats-list .stat-panel .count .plus-stat {
      display: flex;
  }

  .stats-list .stat-panel .count .plus-stat .counter-number {
      font-size: 35px;
      font-weight: bold;
      color: #fff;
  }

  .stats-list .stat-panel .count .stat-title {
      font-size: 19px;
      font-weight: bold;
  }

  .stats-list .stat-panel .count .plus-stat span {
      color: #fff;
      font-size: 23px;
  }


  #footer-section .footer-top{
    background: rgb(137,196,49);
    background: linear-gradient(90deg, rgba(137,196,49,1) 0%, rgba(137,196,49,1) 45%, rgba(213,157,68,1) 100%);
    min-height: 160px;
  }

  #footer-section .footer-title{
    display: flex;
    gap: 25px;
  }

  #footer-section .footer-title .logo{
    border-radius: 150px;
    width: 155px;
    height: 155px;
    background-image: url('../images/logo.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  #footer-section .footer-title .title{
    font-size: 23px;
    color: #fff;
    font-weight: bold;
    width: 50px;
    margin-top: 63px;
  }

  #footer-section .ftitle {
      font-size: 1.1em;
      font-weight: bold;
      margin-top: 68px;
      margin-bottom: 10px;
  }

  #footer-section ul.social-links, ul.social-links {
      padding-left: 0;
      display: flex;
      gap: 13px;
  }

  #footer-section ul.social-links li, ul.social-links li {
      display: inline-block;
      margin-left: 0;
  }

  #footer-section ul.useful_links, ul.useful_links{
      margin-block-start: 0;
      padding-left: 0;
      font-size: 1.06em;
  }

  #footer-section ul.useful_links li, ul.useful_links li {
      list-style: none;
      margin-left: 0;
  }

  #footer-section ul.useful_links li a, ul.useful_links li a{
      color: #333;
      text-decoration: none;
  }

  #footer-section .footer-bottom{
    min-height: 46px;
    font-size: 17px;
  }

  #footer-section .footer-bottom .left{
    text-align: left;
  }

  #footer-section .footer-bottom .right{
    text-align: right;
  }

  #footer-section .footer-bottom .left,
  #footer-section .footer-bottom .right{
    padding-top: 15px;
  }

  #footer-section .footer-bottom .right span {
      margin-left: 10px;
      margin-right: 10px;
      display: inline-block;
  }

  #footer-section .footer-bottom .right a{
    text-decoration: none;
    color: #333;
  }

  .footer_top_bg{
    background-image: url('../images/footer_top_bg.png');
    background-repeat: repeat-x;
    background-size: 100% 40px;
  }

  #faq-accordion {
      border-top: 1px solid #cccccc54;
      max-width: 620px;
  }

  #faq-accordion .accordion-button {
      font-size: 19px;
      background-color: #fff;
      border: 0;
  }

  #faq-accordion .accordion-button:not(.collapsed) {
      background-color: #fff;
  }

  #faq-accordion .accordion-flush>.accordion-item{
      border: 0;
  }

  #faq-accordion .accordion-body {
      color: #7E7777;
      font-size: 19px;
      margin-left: 20px;
      /* padding-top: 0; */
  }

  .btn-donation {
      background-color: #89C431;
      padding: 5px 45px;
      font-size: 17px;
      text-transform: uppercase;
      font-weight: bold;
      border-radius: 30px;
  }

  .btn-learn-more {
      background-color:#fff;
      color: #000;
      border: 2px solid #707070;
      padding: 5px 35px;
      font-size: 17px;
      text-transform: uppercase;
      font-weight: bold;
      border-radius: 30px;
      margin-left: 20px;
  }

  #form-donation-enquiry{
    max-width: 600px;
  }

  .hd-title {
      font-size: 27px;
      font-weight: bold;
      border-bottom: 1px solid #f1f1f1;
      padding-bottom: 14px;
      margin-bottom: 18px;
  }

  .m-body {
      font-size: 19px;
  }

  .btn-donation-option {
      background-color: #fff;
      color: #707070;
      font-size: 19px;
      margin-right: 16px;
      padding-left: 20px;
      padding-right: 20px;
      border-radius: 30px;
      border: 2px solid #707070;
      height: 43px;
  }

  .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active,
  .btn-donation-option:hover {
      color: #000;
      background-color: #D59D44!important;
      border-color: #707070;
  }

  .testimonial-list {
    margin-top: 22px;
    margin-bottom: 30px;
  }

  .testimonial-list .testimonial-item:first-child{
    margin-right: 10px;
  }

  .testimonial-list .testimonial-item:last-child{
    margin-left: 10px;
  }

  .testimonial-list .testimonial-item{
    height: 504px;
    background-color: #ccc;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    padding-top: 374px;
    overflow: hidden;
  }

  .testimonial-list .info{
    padding: 50px 40px 20px 40px;
    min-height: 130px;
    background-image: url('../images/testimonial-bg.svg');
  }
  .testimonial-list .info .location{
    font-size: 1.5em;
  }
  .testimonial-list .info .description{
    font-size: 1.05em;
  }

  .main-body.intro .row .col-xl-4:first-child .panel-section {
      margin-right: 10px;
  }
  
  .main-body.intro .row .col-xl-4:nth-child(2) .panel-section {
      margin-left: 5px;
      margin-right: 5px;
  }

  .main-body.intro .row .col-xl-4:last-child .panel-section {
      margin-left: 10px;
  }

  /* 
  .side-main-menu {
    float: right;
    color: #000;
    width: 29px;
    margin-top: 5px;
  } 
  */

  .side-main-menu {
    float: right;
    color: #000;
    margin-top: 5px;
    height: 32px;
    width: 30px;
    background-image: url(assets/images/9057036_menu_right_alt_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

/* ----- New Flag ----- */

/* Blink for Webkit and others
(Chrome, Safari, Firefox, IE, ...)
*/

/*@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}
.blink{
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}*/

.blinking {
	animation: blinkingText 0.8s infinite;
	background-color: red;
	border-radius: 10px;
	padding-left: 8px;
	padding-right: 8px;
	font-size: 12px;
	margin-left: 8px;
    float: right;
    padding: 4px 10px;
}

.new-flag {
    display: inline-block;
    background-color: rgb(243, 10, 11);
    font-size: 0.73em;
    color: #fff;
    position: absolute;
    /* width: 50px; */
    height: 22px;
    padding: 3px 13px;
    border-radius: 17px;
    margin-top: 21px;
    margin-left: 26px; 
}



/* ----------- Page Social Share Links ------------ */

/* Page Social Links Styles */

.section-header-social-page{
  position: relative;
  line-height: 30px;
  z-index: 1;
  width: 317px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 10px;
  margin-bottom: 20px;
}

.section-header-social-page .btn {
  width: 50px;
}

.section-header-social-page .icon {
  display: block;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  /* box-shadow: 0px 3px 10px #00000026; */
  border-radius: 5px;
  padding: 6px;
  opacity: 1;
  transition: transform 0.3s ease;
  width: 45px !important;
  height: 45px !important;
  font-size: 22px;
  border: 1px solid #7070705c;
}

@keyframes blinkingText {
	0% {
		color: #fff;
	}

	29% {
		color: #e6bc0a;
	}

	50% {
		color: #07ef10;
	}

	69% {
		color: transparent;
	}

	80% {
		color: #000;
	}

    99% {
		color: #e6bc0a;
	}

	100% {
		color: #3107ef;
	}
}

.icon_googleplay {
  background-image: url('../images/icon_googleplay.svg');
}

.icon_appstore {
  background-image: url('../images/icon_appstore.svg');
}


/*  ----------- Custom Breakpoints and Media Queries -----------  */

/* Extra Small (Mobile Portrait) - Max width 576px */
@media (max-width: 576px) {
    .navbar {
        background-color: #004085; /* Change navbar color for extra small screens */
    }
    .btn-custom {
        width: 100%; /* Full width button for mobile */
    }
    .custom-text-large {
        font-size: 1.25rem; /* Smaller font size for small screens */
    }

    .testimonial-list .info {
      padding: 20px 25px 20px 25px;
    }

    #faq-accordion {
      max-width: 100%;
    }

    #form-donation-enquiry {
      max-width: 100%;
      margin-bottom: 35px;
    }

    .header-title .logo {
      width: 80px;
      height: 80px;
      margin-top: 5px;
    }
}

/* Small Devices (Mobile Landscape) - Max width 768px */
@media (max-width: 768px) {
    .navbar {
        background-color: #0056b3; /* Change navbar color for small screens */
    }
    .btn-custom {
        width: 100%; /* Full width button for smaller devices */
    }
    .custom-bg-light {
        background-color: #d6e0f5; /* Custom light background */
    }

    .testimonial-list .info {
      padding: 20px 25px 20px 25px;
    }

    #faq-accordion {
      max-width: 100%;
    }

    #form-donation-enquiry {
      max-width: 100%;
      margin-bottom: 35px;
    }

    .header-title .logo {
      width: 80px;
      height: 80px;
      margin-top: 5px;
    }
}

/* Medium Devices (Tablets) - Max width 992px */
@media (max-width: 992px) {
    .navbar {
        background-color: #007bff; /* Adjust navbar color for tablets */
    }
    .custom-text-large {
        font-size: 1.35rem; /* Adjust text size for medium screens */
    }
}

/* Large Devices (Desktops) - Max width 1200px */
@media (max-width: 1200px) {
    .navbar {
        background-color: #0069d9; /* Custom color for large devices */
    }
    .btn-custom {
        font-size: 1.1rem; /* Adjust button font size */
    }
    .donation_join_us{
      height: 76px;
    }
}

/* Extra Large Devices (Larger Desktops) - Max width 1364px */
@media (max-width: 1364px) {
    .navbar {
        background-color: #005cbf; /* Change navbar color for extra-large screens */
    }
    .custom-text-large {
        font-size: 1.5rem; /* Adjust text size */
    }
    .donation_join_us{
      height: 76px;
    }
}

/* ----------- Custom Utility Classes ----------- */
.d-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/*  ----------- Animations -----------  */
.fade-in {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
