@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');
/* CSS Document */

/* Dashboard Layout Styles */
.sidebar {
    min-height: 100vh;
    background: linear-gradient(135deg, #001F68 0%, #003399 100%);
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.sidebar .nav-link {
    color: #fff !important;
    padding: 12px 20px;
    margin: 2px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.sidebar .nav-link.active {
    background-color: #007bff !important;
    box-shadow: 0 2px 10px rgba(0,123,255,0.3);
}

/* Button Consistency */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
}

.btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

/* Custom File Input */
.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    opacity: 0;
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    cursor: pointer;
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(2.25rem - 1px * 2);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 0.25rem 0.25rem 0;
}

/* Card Improvements */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    border-radius: 12px 12px 0 0 !important;
}

/* Form Improvements */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Statistics Cards */
.bg-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
}

.bg-info {
    background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%) !important;
}

/* Progress Bar */
.progress {
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    border-radius: 10px;
}

/* Badge Improvements */
.badge {
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Table Improvements */
.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background-color: #f8f9fa;
    border: none;
    font-weight: 600;
    color: #495057;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
    transform: scale(1.01);
}

/* Alert Improvements */
.alert {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
    }
    
    .sidebar.show {
        left: 0;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}
body, html{
	height: 100%;
}
body{
	background: #fff;
    font-family: "Poppins", sans-serif !important;
}

h1, h2, h3 {
	font-family: "Poppins", sans-serif;
    font-weight: 700 !important;
}
p{
	font-family: "Poppins", sans-serif;
}
h1, h2, h3, h4, h5, h6, p, a, ul, li{
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a {
	text-decoration: none !important;
	transition: all 0.5s;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
div#navbarCollapse {
    flex-direction: row-reverse;
}


/*Header Css Start*/
header {
    background-color: #001F68;
    padding: 10px 0;
}
.navbar {
    padding: 0 !important;
}
.navbar-nav {
    margin: 0 auto;
}
.navbar-nav a {
    color: #fff !important;
    padding: 0 12px !important;
}
#navbarSupportedContent li a:hover {
    color: #e0b95d !important;
}
.hdr-btn a {
    background-color: #E0B95D;
    color: #000;
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    border: 2px solid #E0B95D;
}
.hdr-btn a:hover {
    background-color: transparent;
    color: #E0B95D;
    border: 2px solid #E0B95D;
}

/*Banner Css Start*/
.banner {
    background-image: url(../images/banner.png);
    height: 800px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.banner .container {
    height: 100%;
    display: flex;
}
.row-middle {
    align-items: center;
}
.banner h1 {
    color: #fff;
    font-size: 52px;
    margin: 0;
}
.banner img {
    width: 100%;
    transform: scale(1.5);
}
.banner p {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 42px;
}

/*Service Sec Css Start*/
.service-sec {
    position: relative;
    top: -100px;
}
.serv-blk {
    background-color: #0C2C6D;
    border-radius: 20px;
    border: 1px solid #7E80EA99;
    padding: 20px 30px;
    height: 350px;
}
.serv-blk span {
    background-color: #fff;
    height: 70px;
    width: 70px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.serv-blk h5 {
    color: #fff;
    line-height: 24px;
    margin: 18px 0 0;
    font-size: 18px;
}

/*Feature Campagin Sec Css Start*/
.ftur-camp {
    padding: 0 0 60px;
}
.ftur-blk {
    position: relative;
    transition: all 0.5s;
    margin: 15px 0;
}
.ftur-blk img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.ftur-blk-inn {
    position: absolute;
    bottom: 20px;
    background-color: #fff;
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 20px;
    padding: 10px;
    transition: all 0.5s;
    overflow: hidden;
    height: 90px;
}
.ftur-blk:hover .ftur-blk-inn {
    height: auto;
}
.ftr-inn-flx {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.ftr-inn-flx span {
    background-color: #0C2C6D;
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.ftr-inn-flx span img {
    width: 33px;
    height: auto;
}
.ftur-blk:hover .ftr-inn-flx span {
    background-color: #E0B95D;
}
.ftur-blk:hover .ftr-inn-flx span img {
    filter: invert(1);
}
.ftr-inn-blk h5 {
    margin: 0 0 2px;
    color: #000;
    font-weight: 600;
}
.ftr-inn-blk ul {
    margin: 5px 0 0;
    display: flex;
    gap: 8px;
    font-size: 13px;
}
.ftr-inn-blk p {
    margin: 0;
}
.ftr-inn-blk ul li i {
    margin-right: 5px;
}
.ftur-camp-title {
    text-align: center;
    margin: 0 0 20px;
}
.ftur-camp-title h3 {
    font-size: 44px;
    color: #000;
}
.hide-box progress {
    width: 100%;
}
progress {
    -webkit-appearance: none;
    appearance: none;
  }

  /* WebKit (Chrome, Edge, Safari) */
  progress::-webkit-progress-bar {
    background-color: #8C8ADC66;
    border-radius: 10px;
  }
  progress::-webkit-progress-value {
    background-color: #E0B95D;
    border-radius: 10px;
  }

  /* Firefox */
  progress::-moz-progress-bar {
    background-color: #E0B95D;
    border-radius: 10px;
  }
#progress-bar {
    height: 8px;
    border-radius: 10px;
}
.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #000;
}
.hide-box a {
    background-color: #0c2c6d;
    color: #fff;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 30px;
    margin-top: 0;
}
.hide-box a:hover {
    background-color: #e0b95d;
    color: #000;
}
.hide-box {
    margin-bottom: -110px;
    transition: all 0.5s;
}
.ftur-blk:hover .hide-box {
    margin-bottom: 0;
}

/*Testimonials Sec Css Start*/
.tmls-blk {
    background-color: #0C2C6D;
    position: relative;
    height: 280px;
    overflow: hidden;
}
.tmls-blk img {
    max-height: 280px;
    transition: all 0.5s;
    object-fit: cover;
}
.tmls-blk:hover img {
    right: -10px;
    opacity: 0.5;
}
.tmls-con-blk {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 18px;
    color: #fff;
}
.tmls-con-blk blockquote {
    margin: 0;
    backdrop-filter: blur(12px);
    background-color: #ffffff54;
    padding: 10px;
    font-size: 12px;
    border-radius: 10px;
}
.play {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.play a {
    background-color: #FFFFFF;
    color: #0c2c6d;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}
.play a:hover {
    transform: scale(1.2);
}
.tmls-sec {
    padding: 0 0 70px;
}
/*About Sec Css Start*/
.about-sec {
    background-color: #0C2C6D;
    padding: 70px 0;
}
.about-sec img {
    width: 100%;
    border-radius: 20px;
}
.about-sec .row {
    background-color: #09255e;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #7e80ea75;
    align-items: center;
}
.about-sec .col-md-6 {
    padding: 0;
}
.about-blk {
    color: #fff;
    padding: 0 40px;
}
.about-blk h6 {
    color: #E0B95D;
    font-size: 20px;
}
.about-blk h3 {
    font-size: 40px;
    margin: 0 0 18px;
}
.about-blk a {
    display: inline-block;
    background-color: #E0B95D;
    color: #000;
    border: 2px solid #E0B95D;
    padding: 12px 30px;
    border-radius: 30px;
    margin-top: 8px;
}
.about-blk a:hover {
    background-color: #000;
    color: #fff;
}

/*Sucess Story Sec Css Start*/
.sucess-story {
    padding: 60px 0;
}
.suces-blk {
    position: relative;
    margin: 15px 0;
}
.suces-blk img {
    width: 100%;
    border-radius: 20px;
    height: 230px;
    object-fit: cover;
}
.suces-blk-video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.suces-blk-video a {
    background-color: #E0B95D;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}
/*Get in Touch Sec Css Start*/
.get-in-touch {
    background-color: #0C2C6D;
    padding: 70px 0;
}
.get-form {
    background-color: #09255e;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #7e80ea75;
    text-align: center;
}
.get-form input, .get-form textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #ffffff;
    height: 50px;
    border-radius: 8px;
    padding: 10px 20px;
    resize: none;
    margin: 0 0 20px;
    color: #fff;
}
.get-form textarea {
    height: 150px;
}
.get-form h3 {
    font-size: 44px;
    color: #fff;
    margin: 0 0 20px;
}
.form-btn input {
    width: auto;
    background-color: #E0B95D;
    color: #000;
    border: 2px solid #E0B95D;
    border-radius: 30px;
    margin: 0;
}
.form-btn {
    text-align: right;
}

/*Faq Sec Css Start*/
.faq-sec {
    padding: 60px 0;
    position: relative;
}
.faq-sec .ftur-camp-title {
    margin: 0 0 40px;
}
.faq-sec button {
    color: #050506;
    font-weight: 600;
    text-decoration: none !important;
    font-size: 18px;
}
button i {
    background-color: #022067;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
}
.faq-sec:before {
    content: '';
    background-color: #0c2c6d;
    width: 1px;
    height: 1px;
    position: absolute;
    left: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 220px 130px #022067;
    border: 0px solid #0c2c6d;
    top: 60%;
}
.faq-sec:after {
    content: '';
    background-color: #0c2c6d;
    width: 1px;
    height: 1px;
    position: absolute;
    right: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 320px 170px #022067;
    border: 0px solid #0c2c6d;
    top: 40%;
}
.faq-sec .card {
    margin: 15px 0;
    position: relative;
    z-index: 9;
}

/*Footer Css Start*/
footer {
    background-color: #0C2C6D;
    padding: 60px 0;
    color: #fff;
}
.flx-col {
    display: flex;
    justify-content: space-between;
}
.ftr-logo img {
    width: 120px;
}
footer h5 {
    margin: 0 0 16px;
    font-size: 24px;
}
.ftr-links li {
    margin: 0 0 8px;
}
.ftr-links li a {
    color: #fff;
}
.ftr-soc ul {
    display: flex;
    gap: 10px;
}
.ftr-soc ul a {
    color: #fff;
}
footer h1 {
    font-size: 94px;
    text-align: center;
    margin: 20px 0 0;
    font-weight: 900 !important;
    color: #E0B95D4D;
}
.copyrit {
    background-color: #0C2C6D;
    border-top: 1px solid #fff;
    padding: 15px 0;
    color: #fff;
}
.copyblk {
    display: flex;
    justify-content: space-between;
}
.copyblk p {
    margin: 0;
}
.copyblk ul {
    display: flex;
    gap: 14px;
    margin: 0;
}
.copyblk ul li a {
    color: #fff;
}

/*Inn Pages Css Start*/
.inn-slide {
    height: 400px;
    background-position: top;
}
.inn-slide-cap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
}
.inn-slide-cap h2 {
    font-size: 58px;
}
.how-works-serv {
    top: 0;
    padding-top: 70px;
}
.ftur-camp-pg {
    padding: 60px 0;
}
.cntc-pg {
    background-color: #fff;
}

/*Donate Page Css Start*/
.Donate-sec {
    padding: 60px 0;
}
.donate-title {
    text-align: center;
    margin: 0 0 50px;
}
.donate-title h3 {
    font-size: 44px;
    color: #000;
}
.donate-thumb {
    position: relative;
}
.donate-thumb img {
    width: 100%;
}
.donate-thumb span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.donate-thumb span a {
    background-color: #0c2c6d;
    color: #fff;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.donate-box {
    border-top: 7px solid #0c2c6d;
}
.donate-sep h4 {
    color: #000;
    font-weight: 700;
    margin: 0;
}
.donate-sep p {
    margin: 0;
}
.donate-sep {
    margin: 17px 0;
}
.donate-box a {
    display: inline-block;
    width: 100%;
    background-color: #0C2C6D;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    margin: 0 0 12px;
    border: 2px solid #0C2C6D;
}
.remind-btn {
    background-color: transparent !important;
    color: #000 !important;
    width: auto !important;
    padding: 10px 30px !important;
}
.remind-btn i {
    margin-right: 8px;
}
.donate-box small {
    display: inline-block;
}
.donate-thumb img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.custom-navbar {
      background-color: #0b2c68;
      padding: 10px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-links a {
      color: #fff;
      margin: 0 15px;
      font-weight: 500;
      text-decoration: none;
    }
    .nav-links a:hover {
      color: #E0B95D;
    }
    .nav-links a:first-child {
      font-weight: 700;
    }
    .nav-links a:hover {
      text-decoration: underline;
    }
    .right-buttons .btn {
      font-weight: 600;
      border-radius: 0;
      margin-left: 10px;
    }
    .btn-back {
      background-color: #fff;
      color: #0b2c68;
      border: none;
    }
    .btn-remind {
      background: transparent;
      color: #fff;
      border: 1px solid #fff;
    }
    .btn-remind i {
      margin-right: 6px;
    }
.category-area img {
    width: 100%;
    margin: 20px 0;
    height: 350px;
    object-fit: cover;
}
.tabbtn button {
    width: 100%;
    border: none;
    text-align: left;
    padding: 10px 12px;
    position: relative;
}
.tabbtn button::before {
    content: '';
    height: 100%;
    width: 3px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
}
.tabbtn button.active::before {
    background-color: #0b2c68;
}
.tabbtn button:hover::before {
    width: 6px;
}
.tabbtn button.active {
    font-weight: 600;
    color: #000;
}
.category-area {
    padding: 60px 0;
}
.category-area h3 {
    font-size: 34px;
    color: #000;
}
.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
.right-buttons button {
    background-color: #FFFFFF;
    padding: 0px 18px;
    height: 55px;
    border: 2px solid #fff;
}
.btn-remind {
    background-color: transparent !important;
    color: #fff !important;
}


/* Modal Customization */
     .modal-content {
      border-radius: 15px;
      border: none;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
      padding: 25px;
    }
.step-header {
    text-align: center;
    margin-bottom: 40px;
}
.step select {
    background-color: #001f6845;
    height: 60px;
    color: #000;
}
.btn-next {
    background-color: #E0B95D;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    border: none !important;
}
.btn-back {
    background-color: #000 !important;
    color: #E0B95D !important;
    padding: 12px 30px !important;
    border-radius: 30px !important;
    border: none !important;
}
    .step-header h4 {
      font-weight: 600;
      margin-bottom: 5px;
    }
    .step-header p {
      color: #666;
      font-size: 15px;
    }
    .form-select, select {
      border-radius: 8px;
      padding: 10px;
      width: 100%;
    }
    .step-footer {
      text-align: right;
      margin-top: 20px;
    }
    .progress-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
    }
    .progress-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #ccc;
    }
    .progress-dots span.active {
      background-color: #333;
    }
.modal-open .modal {
    background-color: #ffffffdb !important;
}
.step-header h4 {
    color: #001F68;
    font-size: 30px;
    margin: 0 0 12px;
}


/* Breadcrumb Styles */
.breadcrumb {
    background-color: transparent;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: " �\;
 color: #6c757d;
 font-size: 1.2rem;
 padding: 0 0.5rem;
}

.breadcrumb-item a {
 color: #007bff;
 text-decoration: none;
 transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
 color: #0056b3;
 text-decoration: underline;
}

.breadcrumb-item.active {
 color: #6c757d;
 font-weight: 500;
}

/* Professional Dropdown Menu Styles */
.dropdown-menu {
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    border-radius: 12px !important;
    padding: 8px 0 !important;
    margin-top: 8px !important;
}

.dropdown-item {
    padding: 12px 20px !important;
    color: #495057 !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    background: transparent !important;
}

.dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: #007bff !important;
    transform: translateX(5px) !important;
}

.dropdown-item:focus {
    background-color: #f8f9fa !important;
    color: #007bff !important;
    outline: none !important;
}

.dropdown-item:active {
    background-color: #e9ecef !important;
    color: #495057 !important;
}

.dropdown-divider {
    margin: 8px 0 !important;
    border-color: #e9ecef !important;
}

/* Remove any yellow/warning backgrounds */
.dropdown-item.text-warning,
.dropdown-item.bg-warning,
.dropdown-item[style*="yellow"],
.dropdown-item[style*="#ffc107"] {
    background-color: transparent !important;
    color: #495057 !important;
}

.dropdown-item.text-warning:hover,
.dropdown-item.bg-warning:hover {
    background-color: #f8f9fa !important;
    color: #007bff !important;
}

/* Success Stories Dynamic Styling */
.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    text-align: center;
}

.story-overlay h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.suces-blk {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.suces-blk:hover .story-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.suces-blk:hover .story-overlay h6 {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/*Donate page css Start*/
.pgs-title {
    text-align: center;
    margin: 0 0 50px;
}
.pgs-title h3 {
    font-size: 44px;
    color: #001F68;
}
.donate-seps {
    background-color: #D9D9D9;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    justify-content: center;
    height: 130px;
}
.donate-seps p {
    margin: 0;
}
.donate-seps .animated-counter {
    color: #001e67;
    font-weight: 800;
    font-size: 58px;
    margin: 0;
}
.progress-text, .countdown-display {
    font-size: 26px;
    color: #001e67 !important;
    font-weight: 800;
}
.donate-pg-box .donate-btn {
    background-color: #E0B95D;
    color: #000;
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
}
.donate-pg-box .remind-btn{
    font-weight: 600;
}
.social-share-section {
    text-align: left;
    margin-top: 30px;
}
.social-share-section h6 {
    color: #001F68;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px;
}
.social-share-section .social-share-buttons {
    align-items: center;
}
.social-share-buttons a i {
    height: 45px;
    width: 45px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 7px;
    color: #fff;
}
.social-share-buttons i.fab.fa-facebook-f {
    background: linear-gradient(90deg, #1877F2 0%, #3b5998 100%);
}
.social-share-buttons i.fab.fa-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.social-share-buttons i.fab.fa-whatsapp {
    background: linear-gradient(90deg, #25D366 0%, #075E54 100%);
}
.social-share-buttons i.fab.fa-x-twitter {
    background: #000;
}
.copy-btn {
    border: 2px solid #918888;
    color: #000;
    height: 45px;
    padding: 0 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-left: 18px;
}
.category-strip {
    background-color: #0b2c68;
}
.tab-blk h3 {
    color: #001F68;
    font-size: 38px;
}
.tab-blk .story-content br {
    display: none;
}
.tab-blk img {
    height: 600px;
    object-fit: cover;
}
.video-container video {
    width: 100%;
    height: 500px;
}
.video-section h4 {
    color: #001F68;
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 20px;
}
.video-section {
    margin-top: 30px;
}
.about-blkr {
    background-color: #0C2C6D;
    color: #fff;
    padding: 40px;
    margin-top: 30px;
    border-radius: 20px;
}
.list-line li {
    list-style-type: disc;
}
ul.list-line {
    margin: 0 0 20px;
    padding-left: 30px;
}
.list-line-inn {
    padding-left: 25px;
    margin: 20px 0;
}
.list-line-num li {
    list-style-type: auto;
}
.list-line-num {
    margin: 0 0 20px;
}
.about-blkr-inn ul li {
    list-style-type: decimal;
    margin-left: 20px;
    margin-top: 30px;
}
.about-blkr-inn ul ol li {
    list-style-type: disc;
    margin-top: 0;
    line-height: 32px;
}
.about-blkr-inn ul ol {
    padding: 0 20px 20px;
}
.cmpo-blk {
    padding: 50px 0 10px;
}
.campo-title {
    width: 60%;
    margin: 0 auto;
}
.campo-title h3 {
    font-size: 40px;
    text-align: center;
    color: #000;
}
.about-blkr a {
    font-weight: 600;
    color: #fff;
    text-decoration: underline !important;
    animation: twoColorBlink 1s linear infinite;
}
@keyframes twoColorBlink {
  0%, 100% { color: #E0B95D; }  
  50% { color: #ffffff; }     
}
.list-line li, .list-line-inn li, .list-line-num li {
    line-height: 29px;
}
.service-sec-home .serv-blk {
    height: auto;
}
@media only screen and (min-device-width:520px) and (max-device-width:767px) and (orientation:portrait) {}
@media only screen and (min-device-width:120px) and (max-device-width:750px) and (orientation:landscape) {}
@media only screen and (min-device-width:751px) and (max-device-width:999px) and (orientation:portrait) {}
@media only screen and (min-device-width:751px) and (max-device-width:999px) and (orientation:landscape) {}
@media only screen and (min-device-width:1000px) and (max-device-width:1030px) and (orientation:portrait) {}
@media only screen and (min-device-width:1000px) and (max-device-width:1030px) and (orientation:landscape) {}

@media only screen and (min-width: 1366px) and (max-width: 1920px){}
@media only screen and (min-width: 1200px) and (max-width: 1365px){}
@media only screen and (min-width: 992px) and (max-width: 1199px){}
@media only screen and (min-width: 768px) and (max-width: 991px){}
@media only screen and (min-width: 520px) and (max-width: 767px){
a.navbar-brand img {
    min-height: 90px;
}
.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}
.banner img {
    width: 65%;
    transform: none;
    margin: 0 0 20px;
}
.navbar-nav li {
    line-height: 40px;
}
.navbar-nav {
    text-align: center;
}
.hdr-btn {
    justify-content: center;
    margin-top: 20px !important;
}
.banner {
    height: auto;
    text-align: center;
    padding: 40px 0;
}
.service-sec {
    top: 0;
    padding: 50px 0;
}
.serv-blk {
    padding: 30px 30px;
    margin: 10px 0;
    text-align: center;
    height: auto;
}
.banner p {
    font-size: 20px;
    line-height: 38px;
}
.banner .container {
    height: auto;
}
footer h1 {
    font-size: 24px;
}
.flx-col {
    flex-direction: column;
    gap: 20px 0;
}
.copyblk {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px 0;
}
.copyblk ul {
    display: block;
    margin: 10px 0;
}
.copyblk ul li:nth-child(2), .copyblk ul li:nth-child(4) {
    display: none;
}
.copyblk ul li {
    margin: 6px 0;
}
.ftur-camp-title h3 {
    font-size: 34px;
}
.tmls-blk {
    margin: 15px 0;
}
.about-blk {
    padding: 0;
    margin-top: 20px;
    text-align: center;
}
.about-sec .row {
    background-color: transparent;
    padding: 16px;
    border: none;
}
.about-blk h3 {
    font-size: 32px;
}
.get-form {
    padding: 30px 20px;
}
.get-form h3 {
    font-size: 34px;
}
.inn-slide-cap h2 {
    font-size: 30px;
}
.serv-blk div {
    display: block !important;
}
.serv-blk span {
    margin: 0 0 20px;
}
.campo-title {
    width: 100%;
}
.pgs-title h3 {
    font-size: 28px;
}
.donate-thumb img {
    height: 300px;
}
.donate-pg-box {
    margin-top: 30px;
}
.donate-pg-box .donate-btn {
    padding: 16px 30px;
}
.donate-pg-box .remind-btn {
    padding: 0 !important;
    margin-left: 10px;
}
.social-share-section {
    text-align: center;
}
.social-share-section .social-share-buttons {
    justify-content: center;
}
.copy-btn {
    padding: 0 18px;
    margin-left: 0;
}
.custom-navbar {
    padding: 20px 0;
    display: block;
}
.category-area {
    text-align: center;
}
.tab-blk h3 {
    font-size: 30px;
}
.tab-blk img {
    height: 350px;
}
.video-section h4 {
    font-size: 30px;
}
.video-container video {
    height: 220px;
}
.nav-links {
    justify-content: center;
}
.nav-links a {
    margin: 0 8px;
    padding: 0;
    font-size: 14px;
}
.custom-navbar .right-buttons {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.btn-remind i {
    display: none;
}
.custom-navbar .right-buttons button {
    padding: 0 10px !important;
    font-size: 13px;
    height: 40px !important;
    border-radius: 0 !important;
}
}
@media only screen and (min-width: 300px) and (max-width: 519px){
a.navbar-brand img {
    min-height: 90px;
}
.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}
.banner img {
    width: 65%;
    transform: none;
    margin: 0 0 20px;
}
.navbar-nav li {
    line-height: 40px;
}
.navbar-nav {
    text-align: center;
}
.hdr-btn {
    justify-content: center;
    margin-top: 20px !important;
}
.banner {
    height: auto;
    text-align: center;
    padding: 40px 0;
}
.service-sec {
    top: 0;
    padding: 50px 0;
}
.serv-blk {
    padding: 30px 30px;
    margin: 10px 0;
    text-align: center;
    height: auto;
}
.banner p {
    font-size: 20px;
    line-height: 38px;
}
.banner .container {
    height: auto;
}
footer h1 {
    font-size: 24px;
}
.flx-col {
    flex-direction: column;
    gap: 20px 0;
}
.copyblk {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px 0;
}
.copyblk ul {
    display: block;
    margin: 10px 0;
}
.copyblk ul li:nth-child(2), .copyblk ul li:nth-child(4) {
    display: none;
}
.copyblk ul li {
    margin: 6px 0;
}
.ftur-camp-title h3 {
    font-size: 34px;
}
.tmls-blk {
    margin: 15px 0;
}
.about-blk {
    padding: 0;
    margin-top: 20px;
    text-align: center;
}
.about-sec .row {
    background-color: transparent;
    padding: 16px;
    border: none;
}
.about-blk h3 {
    font-size: 32px;
}
.get-form {
    padding: 30px 20px;
}
.get-form h3 {
    font-size: 34px;
}
.inn-slide-cap h2 {
    font-size: 30px;
}
.serv-blk div {
    display: block !important;
}
.serv-blk span {
    margin: 0 0 20px;
}
.campo-title {
    width: 100%;
}
.pgs-title h3 {
    font-size: 28px;
}
.donate-thumb img {
    height: 300px;
}
.donate-pg-box {
    margin-top: 30px;
}
.donate-pg-box .donate-btn {
    padding: 16px 30px;
}
.donate-pg-box .remind-btn {
    padding: 0 !important;
    margin-left: 10px;
}
.social-share-section {
    text-align: center;
}
.social-share-section .social-share-buttons {
    justify-content: center;
}
.copy-btn {
    padding: 0 18px;
    margin-left: 0;
}
.custom-navbar {
    padding: 20px 0;
    display: block;
}
.category-area {
    text-align: center;
}
.tab-blk h3 {
    font-size: 30px;
}
.tab-blk img {
    height: 350px;
}
.video-section h4 {
    font-size: 30px;
}
.video-container video {
    height: 220px;
}
.nav-links {
    justify-content: center;
}
.nav-links a {
    margin: 0 8px;
    padding: 0;
    font-size: 14px;
}
.custom-navbar .right-buttons {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.btn-remind i {
    display: none;
}
.custom-navbar .right-buttons button {
    padding: 0 10px !important;
    font-size: 13px;
    height: 40px !important;
    border-radius: 0 !important;
}

}
