@import "https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&amp;display=swap";
@import "https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&amp;display=swap";

body {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    background-color: #fff;
    color: #757575
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #000080;
    font-family: "Poppins", sans-serif;
}

p {
    line-height: 1.7
}

a {
    transition: .5s all ease;
    text-decoration: none
}

img {
    max-width: 100%
}

.d-table {
    width: 100%;
    height: 100%
}

.d-table-cell {
    vertical-align: middle
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px
}

.pt-100 {
    padding-top: 100px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-100 {
    padding-bottom: 100px
}

button:focus {
    outline: 0
}

.btn.focus,
.btn:focus {
    box-shadow: none
}

ul {
    margin: 0;
    padding: 0
}

.container {
    max-width: 1170px
}

.common-btn {
    color: #fff;
    background-color: #FF9933;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600
}

.common-btn:hover {
    color: #fff;
    background-color: #000080;
    transform: translate(0, -5px)
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: -5px;
    position: relative;
    z-index: 1
}

.section-title .sub-title {
    display: inline-block;
    color: #FF9933;
    margin-bottom: 10px
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 10px
}

.section-title p {
    margin-bottom: 0;
    max-width: 595px;
    margin-left: auto;
    margin-right: auto
}

.section-title h2 .curve {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    color: #FF9933;
}

.section-title h2 .curve::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background-color: #FF9933;
    background: linear-gradient(90deg, #FF9933, #ffffff, #FF9933);
    background-size: 200% 100%;
    animation: waveEffect 3s ease-in-out infinite;
}

@keyframes waveEffect {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.header-area {
    background-color: #000080;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    z-index: 99999
}

.header-area .left ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 15px
}

.header-area .left ul li:last-child {
    margin-right: 0
}

.header-area .left ul li i {
    display: inline-block;
    color: #fff;
    font-size: 15px
}

.header-area .left ul li a {
    display: inline-block;
    color: #fff;
    font-size: 14px
}

.header-area .left ul li a:hover {
    color: #FF9933
}

.header-area .right {
    text-align: right;
    vertical-align: middle
}

.header-area .right ul {
    display: inline-block;
    margin-right: 20px
}

.header-area .right ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 5px
}

.header-area .right ul li:last-child {
    margin-right: 0
}

.header-area .right ul li span {
    display: inline-block;
    color: #fff;
    margin-right: 5px;
    font-size: 14px
}

.header-area .right ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 13px
}

.header-area .right ul li a i {
    line-height: 30px
}

.header-area .right ul li a:hover {
    color: #fff;
    background-color: #FF9933;
    border: 1px solid #FF9933
}

.header-area .right .language {
    vertical-align: middle;
    display: inline-block
}

.header-area .right .language .nice-select {
    height: 30px;
    line-height: 30px;
    border: 0;
    background: 0 0;
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
    color: #fff
}

.header-area .right .language .nice-select:after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff
}

.header-area .right .language .nice-select ul {
    border-radius: 0;
    box-shadow: 0 0 20px 0 #f1f1f1
}

.header-area .right .language .nice-select ul li {
    font-size: 15px;
    display: block;
    color: #000080;
    margin-right: 0
}

.header-area .right .header-search {
    display: inline-block
}

.header-area .right .header-search #search-btn {
    padding: 0;
    border-radius: 50%;
    color: #fff;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    text-align: center;
    font-size: 13px;
    display: inline-block;
    line-height: 30px;
    cursor: pointer;
    transition: .5s all ease
}

.header-area .right .header-search #search-btn:hover {
    color: #fff;
    border: 1px solid #FF9933;
    background-color: #FF9933
}

.header-area .right .header-search #close-btn {
    padding: 0;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1;
    color: #fff;
    transition: .5s all ease;
    font-size: 25px;
    cursor: pointer
}

.header-area .right .header-search #close-btn:hover {
    color: #FF9933;
    transform: rotate(360deg)
}

.header-area .right .header-search #search-overlay {
    display: none;
    z-index: 999999
}

.header-area .right .header-search .block {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, .9215686275)
}

.header-area .right .header-search .block:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.header-area .right .header-search .centered {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    padding: 10px 15px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px
}

.header-area .right .header-search .centered #search-box {
    position: relative
}

.header-area .right .header-search .centered #search-box form .form-control {
    height: 50px;
    border: 0;
    border-radius: 5px;
    padding-left: 20px
}

.header-area .right .header-search .centered #search-box form .form-control:focus {
    border: 0;
    box-shadow: none
}

.header-area .right .header-search .centered #search-box form .btn {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    background-color: #FF9933;
    transition: .5s all ease;
    height: 100%;
    padding: 0;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 18px;
    border-radius: 0 5px 5px 0
}

.header-area .right .header-search .centered #search-box form .btn:hover {
    color: #fff;
    background-color: #000080
}

.navbar-light .navbar-brand .logo-two {
    display: none
}

.main-nav {
    background: #fff;
    box-shadow: 0 10px 20px 0 rgba(221, 221, 221, .2);
    transition: .5s all ease;
    padding-top: 12px;
    padding-bottom: 12px
}

.main-nav.menu-shrink {
    padding-top: 10px;
    padding-bottom: 10px
}

.main-nav nav {
    padding: 0
}

.main-nav nav .navbar-nav {
    margin-left: auto;
    margin-right: auto
}

.main-nav nav .navbar-nav .nav-item:hover a {
    color: #FF9933
}

.main-nav nav .navbar-nav .nav-item a {
    text-transform: capitalize;
    color: #000080;
    font-weight: 600;
    margin-left: 12px;
    margin-right: 12px;
    transition: .5s all ease
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active {
    color: #FF9933
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
    padding: 0;
    background: #000080;
    transition: .3s;
    border-radius: 0
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: 1px solid rgba(221, 221, 221, .2)
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child {
    border: 0
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    top: 0 !important
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
    color: #fff
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    position: relative;
    font-weight: 600
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 18px;
    left: 17px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .5s all ease;
    animation: rotate360 1s infinite linear;
    border: 2px solid #FF9933
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
    padding-left: 30px;
    color: #fff
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover:before,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus:before,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active:before {
    opacity: 1;
    visibility: visible
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    left: unset;
    right: -100%
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: #fff
}

.main-nav .dropdown-toggle::after {
    display: none
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.side-nav a {
    display: inline-block;
    color: #fff;
    background-color: #FF9933;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600
}

.side-nav a i {
    display: inline-block;
    margin-left: 3px;
    font-size: 14px;
    animation: heart-beat 2s infinite linear
}

.side-nav a:hover {
    background-color: #000080
}

@keyframes heart-beat {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

.banner-area {
    height: 800px;
    background-image: url(../img/banner/banner.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed
}

.banner-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000080;
    opacity: .6;
    z-index: 1;

}

.notice-section {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
}

.notice-content {
    color: #fff;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    height: 400px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
}

.notice-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: scroll-up 12s linear infinite;
}

@keyframes scroll-up {
    0% {
        transform: translateY(100%);

    }

    100% {
        transform: translateY(0);
    }
}

.notice-item {
    height: 100px;
    /* Ensure each notice has a consistent height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center content within each notice */
    padding: 10px;
    /* Add padding inside each notice item */
}

.banner-area .banner-img {
    position: relative;
    text-align: center
}

.banner-area .banner-img img:nth-child(1) {
    animation: border-transform-default 10s linear infinite alternate forwards;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto
}

.banner-area .banner-img img:nth-child(2) {
    position: absolute;
    bottom: -145px;
    right: 30px;
    max-width: 200px
}

@keyframes border-transform-default {

    0%,
    to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%
    }

    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%
    }

    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%
    }

    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%
    }

    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%
    }

    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%
    }

    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%
    }
}

.banner-content {
    margin-top: 80px;
    max-width: 630px;
    margin-left: auto;
    position: relative;
    z-index: 1
}

.banner-content span {
    display: inline-block;
    font-weight: 600;
    color: #000080;
    background-color: #fff;
    border-radius: 15px;
    padding: 5px 15px;
    margin-bottom: 25px
}

.banner-content h1 {
    color: #fff;
    font-size: 55px;
    margin-bottom: 20px
}

.banner-content p {
    margin-bottom: 35px;
    color: #fff;
    font-size: 18px
}

.banner-content .banner-btn-area .banner-btn {
    margin-right: 15px;
    color: #000080;
    background-color: #fff
}

.banner-content .banner-btn-area .banner-btn:hover {
    color: #fff;
    background-color: #000080
}


.video-banner-area {
    position: relative;
    overflow: hidden;
    height: 100vh
}

.video-banner-area .background-video {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    overflow: hidden
}

.video-banner-content {
    position: relative;
    z-index: 1;
    max-width: 650px
}

.video-banner-content h1 {
    color: #fff;
    font-size: 55px;
    margin-bottom: 20px
}

.video-banner-content p {
    margin-bottom: 35px;
    color: #fff;
    font-size: 18px
}

.video-banner-content .banner-btn-area .banner-btn {
    margin-right: 15px;
    color: #000080;
    background-color: #fff
}

.video-banner-content .banner-btn-area .banner-btn:hover {
    color: #fff;
    background-color: #000080;
}

.dream-area {
    background-color: #eef5f9;
    /* Softer background color */
}

.dream-item {
    margin-bottom: 30px;
    box-shadow: 0 0 20px 0 rgba(0, 123, 255, 0.1);
    border-radius: 15px;
    padding: 20px 20px 30px;
    position: relative;
    transition: 0.5s all ease;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.dream-item:hover {
    transform: translate(0, -10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.dream-item .icon {
    font-size: 40px;
    color: #FF9933;
    margin-bottom: 15px;
    text-align: center;
}

.dream-item h3 {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.4;
    color: #000080;
    text-align: center;
}

.dream-item h3 a {
    color: #000080;
    text-decoration: none;
}

.dream-item h3 a:hover {
    color: #0056b3;

}

.dream-item p {
    margin-bottom: 20px;
    color: #666666;
    text-align: center;
}

.dream-item h4 {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    color: #006699;
    text-align: center;
}

.dream-item h4 span {
    color: #ff8800;
    margin-right: 3px;
}

.dream-item .sub-span {
    display: inline-block;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: #ffffff;
    background-color: #000080;
    border-radius: 50%;
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-weight: 600;
}

.about-area .about-img {
    margin-bottom: 30px;
    position: relative
}

.about-area .about-img img {
    width: 100%;
}

.about-area .about-content {
    margin-bottom: 30px
}

.about-area .about-content .section-title {
    text-align: left;
    margin-bottom: 16px
}

.about-area .about-content .section-title h2 {
    margin-bottom: 0
}

.about-area .about-content .about-span {
    display: block;
    color: #000080;
    margin-bottom: 10px;
    font-weight: 600
}

.about-area .about-content p {
    margin-bottom: 10px
}

.about-area .about-content .about-btn-area {
    margin-top: 30px
}

.about-area .about-content .about-btn-area .about-btn {
    background-color: #000080;
    margin-right: 15px
}

.about-area .about-content .about-btn-area .about-btn:hover {
    background-color: #FF9933
}


.feature-area .section-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.container {
    position: relative;
    z-index: 2;
}

.feature-item {
    margin-bottom: 30px;
    background-color: #23b187;
    border-radius: 30px 30px 0 30px;
    padding: 30px;
    transition: .5s all ease;
    position: relative;
    z-index: 2;
}

.feature-item.two {
    background-color: #FF9933;
}

.feature-item.three {
    background-color: #000080;
}

.feature-item:hover {
    border-radius: 0;
    transform: translate(0, -10px);
}

.feature-item i {
    display: inline-block;
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 14px;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.feature-item h3 a {
    color: #fff;
}

.feature-item h3 a:hover {
    letter-spacing: 1px;
}

.feature-item p {
    margin-bottom: 18px;
    color: #fff;
}

.feature-item .feature-btn {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    border: 1px solid #fff;
    padding: 8px 25px;
    border-radius: 30px;
}

.feature-item .feature-btn:hover {
    color: #000080;
    background-color: #fff;
}

.donations-area {
    background-color: #f9f9f9;
    padding-top: 100px;
    padding-bottom: 70px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .sub-title {
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.donation-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    padding: 20px;
}

.donation-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.donation-item .img-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.donation-item .img-wrapper img {
    width: 100%;
    height: 250px;
    display: block;
    transition: transform 0.3s ease;
}

.donation-item:hover .img-wrapper img {
    transform: scale(1.05);
}

.donation-item .content {
    text-align: left;
}

.donation-item .content .tags {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.donation-item .content h3 {
    font-size: 22px;
    margin-bottom: 10px;

}

.donation-item .content h3 a {
    color: #000080;
}

.donation-item .content p {
    font-size: 16px;
    margin-bottom: 15px;
}


@media (max-width: 991px) {
    .donation-item {
        flex-direction: column;
    }

    .donation-item .img-wrapper {
        margin-bottom: 20px;
    }

    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .donations-area {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .donation-item .content h3 {
        font-size: 18px;
    }

    .donation-item .content p {
        font-size: 14px;
    }
}

.fonder-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.fonder-image {
    padding: 15px;
}

.fonder-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fonder-text {
    padding: 15px;
}

.fonder-content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fonder-header {
    margin-bottom: 20px;
}

.fonder-subtitle {
    display: block;
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 10px;
}

h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.fonder-mission {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.fonder-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.donation-item .inner {
    padding: 20px;
    text-align: center;
}

.donation-item .inner .top .tags {
    display: inline-block;
    font-size: 14px;
    color: #ff6f61;
    margin-bottom: 10px;
}

.donation-item .inner h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.donation-item .inner h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.donation-item .inner h3 a:hover {
    color: #ff6f61;
}

.donation-item .inner p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.account h5 {
    font-weight: bold;
    color: #444;
}

.account h4 {
    font-weight: bold;
    color: #000080;
}

.table {
    margin-top: 15px;
}

.table th {
    width: 40%;
    color: #555;
}

.table td {
    width: 60%;
    color: #000;
}

hr {
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.work-area {
    background-color: #f9f9f9
}

.work-area .work-content {
    margin-bottom: 30px
}

.work-area .work-content .section-title {
    text-align: left
}

.work-area .work-content ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 30px
}

.work-area .work-content ul li:last-child {
    margin-bottom: 0
}

.work-area .work-content ul li h3 {
    font-size: 22px;
    margin-bottom: 10px
}

.work-area .work-content ul li h3 span {
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: #000080;
    background-color: #e5e6ff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 16px;
    margin-right: 10px
}

.work-area .work-content ul li p {
    margin-bottom: 0
}

.work-area .work-img {
    text-align: right;
    margin-bottom: 30px
}

.work-area .work-img img {
    border-radius: 5px
}

.work-area .work-img img:nth-child(1) {
    max-width: 405px
}

.work-area .work-img img:nth-child(2) {
    max-width: 410px;
    margin-top: -150px;
    margin-right: 225px
}

.benefit-item {
    margin-bottom: 30px;
    text-align: center;
    border-radius: 30px;
    padding: 30px 15px;
    border: 1px dashed #82ca9c;
    transition: .5s all ease;
    background-color: #fff
}

.benefit-item.two {
    border: 1px dashed #f49ac1
}

.benefit-item.three {
    border: 1px dashed #8781bd
}

.benefit-item.four {
    border: 1px dashed #f9ad81
}

.benefit-item:hover {
    transform: translate(0, -10px)
}

.benefit-item:hover i {
    color: #fff;
    background-color: #000080
}

.benefit-item i {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    color: #000080;
    background-color: #e5e6ff;
    font-size: 35px;
    margin-bottom: 18px;
    transition: .5s all ease
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #FF9933
}

.benefit-item p {
    margin-bottom: 0
}

.event-area {
    background-image: url(../img/banner/banner\ \(1\).webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed
}

.event-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #068761;
    opacity: .9
}

.event-area .section-title .sub-title {
    color: #fff
}

.event-area .section-title h2 {
    color: #fff;
    margin-bottom: 0
}

.event-item {
    margin-bottom: 30px;
    position: relative;
    transition: 0.3s ease-in-out;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.event-item img {
    width: 100%;
    border-bottom: 4px solid #FF9933;
    transition: transform 0.3s ease;
}

.event-item:hover img {
    transform: scale(1.05);
}

.event-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.3s ease;
}

.event-item:hover:before {
    opacity: 0.8;
}

.event-item .inner {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.event-item .inner h4 {
    background-color: #FF9933;
    padding: 10px 15px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-align: center;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-item .inner h4 span {
    display: block;
    font-size: 12px;
}

.event-item .inner h3 {
    font-size: 20px;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.event-item .inner h3 a {
    color: #FF9933;
    text-decoration: none;
}

.event-item .inner h3 a:hover {
    color: #fff;
}

.event-item .inner ul {
    margin-top: 10px;
    padding: 0;
}

.event-item .inner ul li {
    list-style: none;
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    font-size: 14px;
}

.event-item .inner ul li i {
    margin-right: 5px;
    color: #FF9933;
}

.event-item-right {
    padding: 20px;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.event-item-right h4 {
    color: #FF9933;
    font-size: 20px;
}

.event-item-right h4 span {
    font-size: 16px;
}

.event-item-right h3 {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.event-item-right h3 a {
    color: #333;
    text-decoration: none;
}

.event-item-right h3 a:hover {
    color: #FF9933;
}

.event-item-right ul li {
    font-size: 14px;
    color: #666;
}

.event-item-right ul li i {
    color: #FF9933;
}

.gallery-item {
    margin-bottom: 30px;
    position: relative;
    transition: 0.5s all ease;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item:hover img {
    border-radius: 0;
}

.gallery-item:hover:before {
    transform: scale(1);
    opacity: 0.8;
    visibility: visible;
    border-radius: 0;
}

.gallery-item:hover i {
    opacity: 1;
    visibility: visible;
}

.gallery-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000080;
    opacity: 0;
    transition: 0.5s all ease;
    transform: scale(0.8);
    visibility: hidden;
    border-radius: 30px 30px 0 30px;
}

.gallery-item img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 30px 30px 0 30px;
    transition: 0.5s all ease;
    display: block;
    margin: 0 auto;
}

.gallery-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    color: #fff;
    font-size: 40px;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all ease;
}

.footer-area {
    background-color: #000080
}

.footer-area .copyright-area {
    margin-top: 70px;
    text-align: center;
    border-top: 1px solid #4f4b6b;
    padding-top: 25px;
    padding-bottom: 25px
}

.footer-area .copyright-area p {
    margin-bottom: 0;
    color: #fff
}

.footer-area .copyright-area p a {
    display: inline-block;
    color: #FF9933;
    font-weight: 600
}

.footer-area .copyright-area p a:hover {
    color: #fff
}

.footer-item {
    margin-bottom: 30px
}

.footer-item h3 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 22px
}

.footer-item .footer-logo .logo {
    display: block;
    margin-bottom: 20px
}

.footer-item .footer-logo p {
    margin-bottom: 22px;
    color: #fff
}

.footer-item .footer-logo ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px
}

.footer-item .footer-logo ul li:last-child {
    margin-right: 0
}

.footer-item .footer-logo ul li a {
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 14px;
    display: inline-block
}

.footer-item .footer-logo ul li a i {
    line-height: 30px
}

.footer-item .footer-logo ul li a:hover {
    color: #FF9933;
    background-color: #fff
}

.footer-item .footer-causes .cause-inner {
    border-bottom: 1px solid #4f4b6b;
    margin-bottom: 20px;
    padding-bottom: 20px
}

.footer-item .footer-causes .cause-inner:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.footer-item .footer-causes .cause-inner ul {
    display: flex;
    flex-wrap: wrap
}

.footer-item .footer-causes .cause-inner ul li {
    list-style-type: none;
    display: inline-block
}

.footer-item .footer-causes .cause-inner ul li:nth-child(1) {
    flex: 0 0 25%;
    max-width: 25%
}

.footer-item .footer-causes .cause-inner ul li:nth-child(2) {
    flex: 0 0 65%;
    max-width: 65%;
    margin-left: 15px
}

.footer-item .footer-causes .cause-inner ul li img {
    border-radius: 5px
}

.footer-item .footer-causes .cause-inner ul li h3 {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.4
}

.footer-item .footer-causes .cause-inner ul li h3 a {
    color: #fff
}

.footer-item .footer-causes .cause-inner ul li h3 a:hover {
    color: #FF9933
}

.footer-item .footer-links ul li {
    list-style-type: none;
    display: block;
    border-bottom: 1px solid #4f4b6b;
    margin-bottom: 10px;
    padding-bottom: 10px
}

.footer-item .footer-links ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.footer-item .footer-links ul li a {
    display: block;
    color: #fff
}

.footer-item .footer-links ul li a:hover {
    color: #FF9933
}

.footer-item .footer-links ul li a i {
    display: inline-block;
    font-size: 17px
}

.footer-item .footer-contact .contact-inner {
    border-bottom: 1px solid #4f4b6b;
    padding-bottom: 20px;
    margin-bottom: 20px
}

.footer-item .footer-contact .contact-inner:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0
}

.footer-item .footer-contact .contact-inner ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px
}

.footer-item .footer-contact .contact-inner ul li:last-child {
    margin-bottom: 0
}

.footer-item .footer-contact .contact-inner ul li i {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 3px;
    left: 0
}

.footer-item .footer-contact .contact-inner ul li a {
    display: inline-block;
    color: #fff
}

.footer-item .footer-contact .contact-inner ul li a:hover {
    color: #FF9933
}

.banner-area-two:hover .owl-prev,
.banner-area-two:hover .owl-next {
    opacity: 1
}

.banner-area-two .banner-img-one {
    background-image: url(../img/banner/banner-bg2.jpg)
}

.banner-area-two .banner-img-two {
    background-image: url(../img/banner/banner-bg2.jpg)
}

.banner-area-two .banner-img-three {
    background-image: url(../img/banner/banner-bg3.jpg)
}

.banner-area-two .banner-slider-item {
    height: 900px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative
}

.banner-area-two .banner-slider-item .banner-shape {
    position: absolute;
    left: -225px;
    right: 0;
    top: 170px;
    max-width: 530px;
    margin-left: auto;
    margin-right: auto
}

.banner-area-two .banner-content {
    background-image: url(../img/banner/banner-main1.jpg);
    animation: border-transform-default 10s linear infinite alternate forwards;
    margin-top: 50px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 100px 80px;
    position: relative;
    z-index: 1
}

.banner-area-two .banner-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #FF9933;
    opacity: .8;
    animation: border-transform-default 10s linear infinite alternate forwards;
    z-index: -1
}

.banner-area-two .banner-content .banner-btn-area .banner-btn {
    color: #fff;
    background-color: #000080
}

.banner-area-two .banner-content .banner-btn-area .banner-btn:hover {
    color: #000080;
    background-color: #fff
}

.banner-area-two .owl-theme .owl-nav {
    margin-top: 0
}

.banner-area-two .owl-prev {
    position: absolute;
    top: 48%;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 5px !important;
    color: #fff !important;
    background-color: #FF9933 !important;
    font-size: 30px !important;
    transition: .5s all ease;
    opacity: 0
}

.banner-area-two .owl-prev i {
    line-height: 50px
}

.banner-area-two .owl-prev:hover {
    color: #fff !important;
    background-color: #000080 !important
}

.banner-area-two .owl-next {
    position: absolute;
    top: 48%;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 5px !important;
    color: #fff !important;
    background-color: #FF9933 !important;
    font-size: 30px !important;
    transition: .5s all ease;
    opacity: 0
}

.banner-area-two .owl-next i {
    line-height: 50px
}

.banner-area-two .owl-next:hover {
    color: #fff !important;
    background-color: #000080 !important
}

.feature-area.two {
    background-image: unset;
    position: relative;
    margin-top: -50px;
    z-index: 1
}

.about-area.two .about-content p {
    margin-bottom: 20px
}

.about-area.two .about-content ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 12px
}

.about-area.two .about-content ul li:hover span {
    color: #fff;
    background-color: #000080
}

.about-area.two .about-content ul li:last-child {
    margin-bottom: 0
}

.about-area.two .about-content ul li span {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #000080;
    font-weight: 600;
    background-color: #e5e6ff;
    border-radius: 50%;
    text-align: center;
    font-size: 15px;
    margin-right: 5px;
    transition: .5s all ease
}

.about-area.two .about-content .about-btn-area {
    margin-top: 35px
}

.about-area.two .about-img .video-wrap .js-modal-btn {
    color: #fff
}

.about-area.two .about-img .video-wrap .js-modal-btn:before {
    background-color: #FF9933
}

.about-area.two .about-img .video-wrap .js-modal-btn:after {
    background-color: #FF9933
}

.about-area.two .about-img .video-wrap .js-modal-btn:hover {
    color: #FF9933
}

.about-area.two .about-img .video-wrap .js-modal-btn:hover:before {
    background-color: #fff
}

.about-area.two .about-img .video-wrap .js-modal-btn:hover:after {
    background-color: #fff
}

.donations-area {
    background-color: #f8f9fa;
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
}

.section-title p {
    font-size: 18px;
    color: #6c757d;
}

.form-group label {
    font-weight: bold;
    color: #343a40;
}

.form-group input {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 16px;
}



.donations-area.two {
    background-color: #f4f8f7
}

.donations-area.two .donation-item {
    background-color: #fff
}

.donations-area.two .donation-item:hover {
    background-color: #000080
}

.benefit-area.two .section-title {
    text-align: left
}

.benefit-area.two .benefit-img {
    margin-bottom: 30px;
    position: relative
}

.benefit-area.two .benefit-img img:nth-child(1) {
    width: 100%;
    animation: border-transform-default 10s linear infinite alternate forwards;
    z-index: 1;
    position: relative
}

.benefit-area.two .benefit-img img:nth-child(2) {
    position: absolute;
    left: 0;
    bottom: 0
}

.benefit-area.two .benefit-item {
    border: 0;
    padding: 0;
    text-align: left
}

.team-item {
    text-align: center;
    margin-bottom: 30px;
    border-radius: 30px 30px 0 30px;
    box-shadow: 0 0 20px 0 rgba(221, 221, 221, .5490196078);
    transition: .5s all ease
}

.team-item:hover {
    transform: translate(0, -10px);
    border: 0
}

.team-item:hover .top img {
    border-radius: 0
}

.team-item:hover .top ul {
    opacity: 1;
    visibility: visible;
    bottom: 15px
}

.team-item .top {
    position: relative
}

.team-item .top img {
    width: 100%;
    border-radius: 30px 30px 0 30px;
    transition: .5s all ease
}

.team-item .top ul {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s all ease
}

.team-item .top ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 3px;
    margin-right: 3px
}

.team-item .top ul li a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    background-color: #000080;
    font-size: 14px;
    border-radius: 50%
}

.team-item .top ul li a i {
    line-height: 30px
}

.team-item .top ul li a:hover {
    transform: translate(0, -5px)
}

.team-item .bottom {
    padding: 28px 25px 30px
}

.team-item .bottom h3 {
    font-size: 22px;
    margin-bottom: 5px
}

.team-item .bottom span {
    display: block;
    color: #FF9933
}

.banner-area-two.three .banner-img-four {
    background-image: url(../img/banner/banner-bg5.jpg)
}

.banner-area-two.three .banner-img-five {
    background-image: url(../img/banner/banner-bg1.jpg)
}

.banner-area-two.three .banner-img-six {
    background-image: url(../img/banner/banner-bg6.jpg)
}

.banner-area-two.three .banner-slider-item {
    height: 850px
}

.banner-area-two.three .banner-slider-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000080;
    opacity: .6
}

.banner-area-two.three .banner-content {
    background-image: unset;
    animation: unset;
    margin-top: 50px;
    max-width: 540px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    padding: 0
}

.banner-area-two.three .banner-content:before {
    display: none
}

.benefit-area.three {
    background-color: #f9f9f9
}


.counter-item {
    text-align: center;
    margin-bottom: 30px
}

.counter-item i {
    display: inline-block;
    color: #FF9933;
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 10px
}

.counter-item h3 {
    margin-bottom: 6px;
    font-size: 60px
}

.counter-item h3 .target {
    font-size: 35px;
    margin-left: -10px
}

.counter-item p {
    margin-bottom: 0;
    font-weight: 600
}

.testimonial-area {
    background-color: #f9f9f9;
    padding: 50px 0;
    /* Added padding to top and bottom for spacing */
}

.testimonial-area .section-title {
    text-align: center;
    /* Centering the section title */
    margin-bottom: 50px;
    /* Added margin for spacing */
}

.testimonial-area .testimonial-img {
    margin-bottom: 30px;
    text-align: center;
    /* Centering the image and text */
}

.testimonial-area .testimonial-img img {
    width: 100%;
    max-width: 400px;
    max-height: 300px;
    height: auto;
    border-radius: 30px 30px 0 30px;
    margin: 0 auto 15px;
    display: block;
}

.testimonial-area .testimonial-img h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.testimonial-area .testimonial-img span {
    display: block;
}

.testimonial-area .testimonial-content {
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 rgba(221, 221, 221, 0.55);
    background-color: #fff;
    margin: 20px auto;
    max-width: 90%;
    position: relative;
    text-align: center;
}

.testimonial-area .testimonial-content p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
    /* Reduced font size for a balanced look */
}

.testimonial-area .testimonial-content .quote {
    display: inline-block;
    color: #eeeefa;
    font-size: 55px;
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.testimonial-area .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
}

.testimonial-area .owl-theme .owl-dots .owl-dot span {
    width: 35px;
    height: 8px;
    background: #bab9c4;
}

.testimonial-area .owl-theme .owl-dots .owl-dot.active span {
    background: #FF9933;
}

.blog-area.three {
    background-color: #fff
}

.blog-area.three .blog-item {
    box-shadow: 0 0 20px 0 rgba(221, 221, 221, .5490196078)
}

.title-bg-one {
    background-image: url(../img/banner/title-bg1.jpg)
}

.title-bg-two {
    background-image: url(../img/banner/title-bg2.jpg)
}

.title-bg-three {
    background-image: url(../img/banner/title-bg3.jpg)
}

.title-bg-four {
    background-image: url(../img/banner/title-bg4.jpg)
}

.title-bg-five {
    background-image: url(../img/banner/title-bg5.jpg)
}

.title-bg-six {
    background-image: url(../img/banner/title-bg6.jpg)
}

.title-bg-seven {
    background-image: url(../img/banner/title-bg7.jpg)
}

.title-bg-eight {
    background-image: url(../img/banner/title-bg8.jpg)
}

.title-bg-nine {
    background-image: url(../img/banner/title-bg9.jpg)
}

.title-bg-ten {
    background-image: url(../img/banner/title-bg10.jpg)
}

.title-bg-eleven {
    background-image: url(../img/banner/title-bg11.jpg)
}

.title-bg-twelve {
    background-image: url(../img/banner/title-bg12.jpg)
}

.title-bg-thirteen {
    background-image: url(../img/banner/title-bg13.jpg)
}

.title-bg-fourteen {
    background-image: url(../img/banner/title-bg14.jpg)
}

.page-title-area {
    height: 450px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative
}

.page-title-area:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000080;
    opacity: .75
}

.page-title-area .title-item {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 95px
}

.page-title-area .title-item h2 {
    font-size: 65px;
    color: #fff;
    margin-bottom: 5px
}

.page-title-area .title-item ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 14px;
    margin-right: 14px;
    position: relative
}

.page-title-area .title-item ul li:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 10px;
    left: 60px;
    background-color: #fff;
    transition: .5s all ease;
    animation: rotate360 1s infinite linear;
    border: 2px solid #FF9933
}

.page-title-area .title-item ul li:last-child:before {
    display: none
}

.page-title-area .title-item ul li a {
    display: inline-block;
    color: #fff
}

.page-title-area .title-item ul li a:hover {
    color: #FF9933
}

.page-title-area .title-item ul li span {
    display: inline-block;
    color: #fff
}

.team-area.four {
    background-color: #f9f9f9
}

.pagination-area {
    text-align: center
}

.pagination-area ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px
}

.pagination-area ul li a {
    display: block;
    color: #FF9933;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(221, 221, 221, .5490196078);
    padding: 5px 15px;
    border-radius: 8px 8px 0 8px
}

.pagination-area ul li a:hover,
.pagination-area ul li a.active {
    color: #fff;
    background-color: #FF9933
}

.donation-details-area .details-item .details-img {
    margin-bottom: 25px
}

.donation-details-area .details-item .details-img img {
    margin-bottom: 20px
}

.donation-details-area .details-item .details-img h2 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.4
}

.donation-details-area .details-item .details-img p {
    margin-bottom: 10px
}

.donation-details-area .details-item .details-img p:last-child {
    margin-bottom: 0
}

.donation-details-area .details-item .details-img blockquote {
    background-color: #f9f9f9;
    padding: 30px 30px 30px 60px;
    font-size: 18px;
    font-weight: 600;
    color: #000080;
    position: relative;
    margin-left: 35px;
    margin-top: 30px;
    margin-bottom: 25px
}

.donation-details-area .details-item .details-img blockquote i {
    position: absolute;
    top: 45px;
    left: -35px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #fff;
    color: #FF9933;
    box-shadow: 0 0 20px 0 rgba(221, 221, 221, .5490196078);
    font-size: 30px;
    border-radius: 50%
}

.donation-details-area .details-item .details-share {
    margin-bottom: 30px
}

.donation-details-area .details-item .details-share .left ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 3px
}

.donation-details-area .details-item .details-share .left ul li:last-child {
    margin-right: 0
}

.donation-details-area .details-item .details-share .left ul li span {
    display: inline-block;
    font-weight: 600;
    margin-right: 5px
}

.donation-details-area .details-item .details-share .left ul li a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #FF9933;
    border: 1px solid #FF9933;
    border-radius: 50%;
    font-size: 15px
}

.donation-details-area .details-item .details-share .left ul li a i {
    line-height: 30px
}

.donation-details-area .details-item .details-share .left ul li a:hover {
    color: #fff;
    background-color: #FF9933
}

.donation-details-area .details-item .details-share .right {
    text-align: right
}

.donation-details-area .details-item .details-share .right ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;
    position: relative
}

.donation-details-area .details-item .details-share .right ul li:before {
    position: absolute;
    content: ",";
    color: #FF9933;
    top: -5px;
    right: -7px;
    font-size: 20px
}

.donation-details-area .details-item .details-share .right ul li:first-child:before {
    display: none
}

.donation-details-area .details-item .details-share .right ul li:last-child {
    margin-right: 0
}

.donation-details-area .details-item .details-share .right ul li:last-child:before {
    display: none
}

.donation-details-area .details-item .details-share .right ul li span {
    display: inline-block;
    font-weight: 600
}

.donation-details-area .details-item .details-share .right ul li a {
    display: inline-block;
    color: #FF9933
}

.donation-details-area .details-item .details-share .right ul li a:hover {
    color: #000080
}

.donation-details-area .details-item .details-payment {
    background-color: #fafafa;
    padding: 50px
}

.donation-details-area .details-item .details-payment h3 {
    font-size: 25px;
    margin-bottom: 8px;
    margin-top: -5px
}

.donation-details-area .details-item .details-payment .form-radio-area {
    margin-bottom: 30px
}

.donation-details-area .details-item .details-payment .form-radio-area .form-check-label {
    color: #000080
}

.donation-details-area .details-item .details-payment .form-input-area .form-group {
    position: relative;
    margin-bottom: 15px
}

.donation-details-area .details-item .details-payment .form-input-area .form-group label {
    margin-bottom: 0;
    position: absolute;
    top: 10px;
    left: 15px;
    color: #FF9933;
    font-size: 20px
}

.donation-details-area .details-item .details-payment .form-input-area .form-group .form-control {
    height: 50px;
    border-radius: 5px;
    border: 0;
    background-color: #fff;
    padding-left: 45px
}

.donation-details-area .details-item .details-payment .form-input-area .form-group .form-control:focus {
    border: 0;
    box-shadow: none
}

.donation-details-area .details-item .details-payment .form-input-area .common-btn {
    transition: .5s all ease;
    width: 100%;
    display: block
}

.widget-area .widget-item {
    margin-bottom: 30px
}

.widget-area .widget-item:last-child {
    margin-bottom: 0
}

.widget-area .widget-item h3 {
    font-size: 22px;
    margin-bottom: 20px
}

.widget-area .search {
    position: relative
}

.widget-area .search .form-control {
    height: 50px;
    border-radius: 5px;
    padding-left: 15px;
    font-size: 15px;
    border: 0;
    background-color: #f9f9f9
}

.widget-area .search .form-control:focus {
    border: 0;
    box-shadow: none
}

.widget-area .search .btn {
    padding: 0;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #FF9933;
    transition: .5s all ease
}

.widget-area .search .btn:hover {
    color: #000080
}

.widget-area .post .post-inner {
    margin-bottom: 15px
}

.widget-area .post .post-inner:last-child {
    margin-bottom: 0
}

.widget-area .post .post-inner ul {
    display: flex;
    flex-wrap: wrap
}

.widget-area .post .post-inner ul li {
    list-style-type: none;
    display: inline-block
}

.widget-area .post .post-inner ul li:nth-child(1) {
    flex: 0 0 28%;
    max-width: 28%
}

.widget-area .post .post-inner ul li:nth-child(2) {
    flex: 0 0 67%;
    max-width: 67%;
    margin-left: 15px
}

.widget-area .post .post-inner ul li h4 {
    font-size: 16px;
    margin-bottom: 3px
}

.widget-area .post .post-inner ul li h4 a {
    color: #000080
}

.widget-area .post .post-inner ul li h4 a:hover {
    color: #FF9933
}

.widget-area .post .post-inner ul li p {
    margin-bottom: 0;
    font-size: 14px
}

.widget-area .post .post-inner ul li p a {
    display: inline-block;
    color: #757575
}

.widget-area .post .post-inner ul li p a:hover {
    color: #FF9933
}

.widget-area .common-right-content ul li {
    list-style-type: none;
    display: block;
    border-bottom: 1px solid #f5f2f2;
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    transition: .5s all ease
}

.widget-area .common-right-content ul li:hover {
    margin-left: 5px
}

.widget-area .common-right-content ul li:before {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FF9933
}

.widget-area .common-right-content ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0
}

.widget-area .common-right-content ul li a {
    display: block;
    color: #000080
}

.widget-area .common-right-content ul li a:hover {
    color: #FF9933
}

.widget-area .instagram .instagram-item {
    position: relative
}

.widget-area .instagram .instagram-item img {
    width: 100%
}

.widget-area .instagram .instagram-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000080;
    opacity: 0;
    visibility: hidden;
    transform: scale(.5);
    transition: .5s all ease
}

.widget-area .instagram .instagram-item a {
    display: inline-block;
    color: #fff;
    font-size: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: .5s all ease;
    opacity: 0;
    visibility: hidden
}

.widget-area .instagram .instagram-item:hover:before {
    opacity: .7;
    visibility: visible;
    transform: scale(1)
}

.widget-area .instagram .instagram-item:hover a {
    visibility: visible;
    opacity: 1
}

.event-area.four {
    background-image: unset
}

.event-area.four:before {
    display: none
}

.event-details-area {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f9f9f9;
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
}

.section-title .sub-title {
    display: block;
    font-size: 18px;
    color: #FF9933;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.section-title .curve {
    color: #FF9933;
}

.details-item .details-img {
    position: relative;
}

.details-item .details-img img {
    width: 100%;
    border-radius: 8px;
}

.event-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-top: -30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.event-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.event-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.event-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.event-features li::before {
    content: "\f058";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #FF9933;
}

.widget-area {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.widget-item {
    margin-bottom: 30px;

}

.widget-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.widget-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-item ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.widget-item ul li a {
    color: #FF9933;
    text-decoration: none;
}

.widget-item ul li a:hover {
    text-decoration: underline;
}

.video-item iframe {
    border-radius: 8px;
}

.widget-area .information ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 12px
}

.widget-area .information ul li:last-child {
    margin-bottom: 0
}

.widget-area .information ul li span {
    display: inline-block;
    font-weight: 600;
    margin-right: 3px;
    color: #000080
}

.widget-area .information ul li a {
    display: inline-block;
    color: #757575
}

.widget-area .information ul li a:hover {
    color: #FF9933
}

.blog-details-area .details-item .details-img img {
    margin-bottom: 20px
}

.blog-details-area .details-item .details-img h2 {
    font-size: 30px;
    margin-bottom: 5px;
    line-height: 1.4
}

.blog-details-area .details-item .details-img ul {
    margin-bottom: 10px
}

.blog-details-area .details-item .details-img ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 20px;
    font-size: 14px
}

.blog-details-area .details-item .details-img ul li:last-child {
    margin-right: 0
}

.blog-details-area .details-item .details-img ul li i {
    display: inline-block;
    font-size: 16px;
    color: #FF9933;
    margin-right: 3px;
    position: relative;
    top: -1px
}

.blog-details-area .details-item .details-img ul li a {
    display: inline-block;
    color: #757575
}

.blog-details-area .details-item .details-img ul li a:hover {
    color: #FF9933
}

.blog-details-area .details-item .details-img p {
    margin-bottom: 10px
}

.blog-details-area .details-item .details-img .img {
    padding-top: 20px
}

.blog-details-area .details-item .details-img .img img {
    width: 100%;
    margin-bottom: 30px
}

.blog-details-area .details-item .details-img .img p {
    margin-bottom: 30px
}

.blog-details-area .details-item .details-img blockquote {
    background-color: #f9f9f9;
    padding: 30px 30px 30px 60px;
    font-size: 18px;
    font-weight: 600;
    color: #000080;
    position: relative;
    margin-left: 35px;
    margin-bottom: 25px
}

.blog-details-area .details-item .details-img blockquote i {
    position: absolute;
    top: 45px;
    left: -35px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: #fff;
    color: #FF9933;
    box-shadow: 0 0 20px 0 rgba(221, 221, 221, .5490196078);
    font-size: 30px;
    border-radius: 50%
}

.blog-details-area .details-item .details-img .img-area {
    padding-top: 20px
}

.blog-details-area .details-item .details-img .img-area img {
    margin-bottom: 30px;
    width: 100%
}

.blog-details-area .details-item .details-share {
    margin-bottom: 30px
}

.blog-details-area .details-item .details-share .left ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 3px
}

.blog-details-area .details-item .details-share .left ul li:last-child {
    margin-right: 0
}

.blog-details-area .details-item .details-share .left ul li span {
    display: inline-block;
    font-weight: 600;
    margin-right: 5px
}

.blog-details-area .details-item .details-share .left ul li a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #FF9933;
    border: 1px solid #FF9933;
    border-radius: 50%;
    font-size: 15px
}

.blog-details-area .details-item .details-share .left ul li a i {
    line-height: 30px
}

.blog-details-area .details-item .details-share .left ul li a:hover {
    color: #fff;
    background-color: #FF9933
}

.blog-details-area .details-item .details-share .right {
    text-align: right
}

.blog-details-area .details-item .details-share .right ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;
    position: relative
}

.blog-details-area .details-item .details-share .right ul li:before {
    position: absolute;
    content: ",";
    color: #FF9933;
    top: -5px;
    right: -7px;
    font-size: 20px
}

.blog-details-area .details-item .details-share .right ul li:first-child:before {
    display: none
}

.blog-details-area .details-item .details-share .right ul li:last-child {
    margin-right: 0
}

.blog-details-area .details-item .details-share .right ul li:last-child:before {
    display: none
}

.blog-details-area .details-item .details-share .right ul li span {
    display: inline-block;
    font-weight: 600
}

.blog-details-area .details-item .details-share .right ul li a {
    display: inline-block;
    color: #FF9933
}

.blog-details-area .details-item .details-share .right ul li a:hover {
    color: #000080
}

.blog-details-area .details-item .details-comment {
    margin-bottom: 30px
}

.blog-details-area .details-item .details-comment h3 {
    font-size: 22px;
    margin-bottom: 30px
}

.blog-details-area .details-item .details-comment ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    padding-left: 130px;
    margin-bottom: 30px
}

.blog-details-area .details-item .details-comment ul li:last-child {
    margin-bottom: 0;
    margin-left: 70px
}

.blog-details-area .details-item .details-comment ul li img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%
}

.blog-details-area .details-item .details-comment ul li h4 {
    font-size: 17px;
    margin-bottom: 5px
}

.blog-details-area .details-item .details-comment ul li span {
    display: block;
    font-size: 14px;
    margin-bottom: 10px
}

.blog-details-area .details-item .details-comment ul li p {
    margin-bottom: 0
}

.blog-details-area .details-item .details-comment ul li a {
    display: inline-block;
    color: #FF9933;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 0
}

.blog-details-area .details-item .details-comment ul li a:hover {
    color: #000080
}

.blog-details-area .details-item .details-post {
    background-color: #fafafa;
    padding: 50px
}

.blog-details-area .details-item .details-post h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: -5px
}

.blog-details-area .details-item .details-post .form-group {
    position: relative;
    margin-bottom: 15px
}

.blog-details-area .details-item .details-post .form-group label {
    margin-bottom: 0;
    position: absolute;
    top: 10px;
    left: 15px;
    color: #FF9933;
    font-size: 20px
}

.blog-details-area .details-item .details-post .form-group .form-control {
    height: 50px;
    border-radius: 5px;
    border: 0;
    background-color: #fff;
    padding-left: 45px;
    font-size: 15px
}

.blog-details-area .details-item .details-post .form-group .form-control:focus {
    border: 0;
    box-shadow: none
}

.blog-details-area .details-item .details-post .form-group textarea {
    height: auto !important;
    padding-top: 13px
}

.blog-details-area .details-item .details-post .common-btn {
    transition: .5s all ease;
    width: 100%;
    display: block
}

.widget-area .admin {
    background-color: #fafafa;
    padding: 30px;
    text-align: center
}

.widget-area .admin img {
    border-radius: 50%;
    margin-bottom: 15px
}

.widget-area .admin h4 {
    margin-bottom: 12px;
    font-size: 18px
}

.widget-area .admin span {
    display: block;
    font-size: 15px;
    margin-bottom: 12px
}

.widget-area .admin ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 3px;
    margin-right: 3px
}

.widget-area .admin ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #FF9933;
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(221, 221, 221, .5490196078);
    border-radius: 50%;
    font-size: 15px
}

.widget-area .admin ul li a i {
    line-height: 30px
}

.widget-area .admin ul li a:hover {
    color: #fff;
    background-color: #FF9933
}

/* Overall Styles */
body {
    font-family: "Poppins", sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

/* Contact Info Area */
.contact-info-area {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ff9933 0%, #ffcc33 100%);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-info-area .section-title h2 {
    color: #fff;
}

.contact-info-area .contact-info {
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-area .contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
}

.contact-info-area .contact-info i {
    display: block;
    color: #ff9933;
    font-size: 24px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-info-area .contact-info span {
    display: block;
    color: #ff9933;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-info-area .contact-info a {
    display: block;
    color: #000080;
    font-size: 16px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-info-area .contact-info a:hover {
    color: #ff9933;
}

/* Contact Form Area */
.contact-area {
    background-color: #fff;
    padding: 60px 20px;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.contact-area #contactForm h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contact-area #contactForm p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #555;
}

.contact-area #contactForm .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-area #contactForm .form-group label i {
    position: absolute;
    bottom: 35px;
    left: 15px;
    font-size: 30px;
    color: #ff9933;

    transition: color 0.3s ease;
}

.contact-area #contactForm .form-group .form-control {
    height: 50px;
    border-radius: 8px;
    background-color: #f1f1f1;
    padding-left: 45px;
    font-size: 16px;
    border: 2px solid transparent;
    transition: border 0.3s ease, background-color 0.3s ease;
}

.contact-area #contactForm .form-group .form-control:focus {
    border-color: #ff9933;
    background-color: #fff;
    box-shadow: none;
}

.contact-area #contactForm .form-group textarea {
    padding-top: 15px;
    padding-left: 45px;
    border-radius: 8px;
    background-color: #f1f1f1;
}


/* Map Area */
.map-area {
    margin: 50px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.map-area #map {
    width: 100%;
    height: 450px;
    border: none;
}

.user-form-area .user-img {
    background-image: url(../img/user-form-bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%
}

.user-form-area .user-img img {
    display: none
}

.user-form-area .user-content {
    height: 100vh
}

.user-form-area .user-content .user-content-inner {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto
}

.user-form-area .user-content .user-content-inner .top {
    margin-bottom: 40px
}

.user-form-area .user-content .user-content-inner .top .logo-two {
    display: none
}

.user-form-area .user-content .user-content-inner .top a {
    display: block;
    margin-bottom: 30px
}

.user-form-area .user-content .user-content-inner .top h2 {
    font-size: 25px;
    margin-bottom: 0;
    background-color: #fafafa;
    border-left: 2px solid #FF9933;
    border-right: 2px solid #FF9933;
    padding-top: 15px;
    padding-bottom: 17px
}

.user-form-area .user-content .user-content-inner .form-group {
    margin-bottom: 20px
}

.user-form-area .user-content .user-content-inner .form-group .form-control {
    height: 50px;
    padding-left: 15px;
    font-size: 15px;
    border: 1px solid #f1f1f1;
    transition: .5s all ease
}

.user-form-area .user-content .user-content-inner .form-group .form-control:focus {
    border: 1px solid #FF9933;
    box-shadow: none
}

.user-form-area .user-content .user-content-inner .common-btn {
    display: block;
    width: 100%;
    text-align: center;
    transition: .5s all ease
}

.user-form-area .user-content .user-content-inner .bottom {
    margin-top: 30px
}

.user-form-area .user-content .user-content-inner .bottom p {
    margin-bottom: 25px
}

.user-form-area .user-content .user-content-inner .bottom p a {
    color: #000080;
    font-weight: 600
}

.user-form-area .user-content .user-content-inner .bottom p a:hover {
    color: #FF9933
}

.user-form-area .user-content .user-content-inner .bottom h4 {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 30px;
    position: relative
}

.user-form-area .user-content .user-content-inner .bottom h4:before {
    position: absolute;
    content: "";
    width: 45%;
    height: 1px;
    top: 10px;
    left: 0;
    background-color: #FF9933
}

.user-form-area .user-content .user-content-inner .bottom h4:after {
    position: absolute;
    content: "";
    width: 45%;
    height: 1px;
    top: 10px;
    right: 0;
    background-color: #FF9933
}

.user-form-area .user-content .user-content-inner .bottom ul {
    margin: 0;
    padding: 0
}

.user-form-area .user-content .user-content-inner .bottom ul li {
    list-style-type: none;
    display: inline-block;
    margin-bottom: 15px;
    margin-left: 5px;
    margin-right: 5px
}

.user-form-area .user-content .user-content-inner .bottom ul li:last-child {
    margin-bottom: 0
}

.user-form-area .user-content .user-content-inner .bottom ul li:last-child a {
    color: #4885ed;
    border: 1px solid #4885ed
}

.user-form-area .user-content .user-content-inner .bottom ul li:last-child a:hover {
    background-color: #4885ed
}

.user-form-area .user-content .user-content-inner .bottom ul li a {
    display: block;
    border: 1px solid #3b5998;
    color: #3b5998;
    border-radius: 30px;
    padding: 10px 25px 10px 20px;
    font-weight: 500
}

.user-form-area .user-content .user-content-inner .bottom ul li a i {
    display: inline-block;
    font-size: 18px;
    position: relative;
    top: 1px
}

.user-form-area .user-content .user-content-inner .bottom ul li a:hover {
    color: #fff;
    background-color: #3b5998
}

.testimonial-area.two .testimonial-img {
    margin-bottom: 0
}

.testimonial-area.two .testimonial-content {
    margin-bottom: 0
}

.testimonial-area.two .row {
    margin-bottom: 30px
}

.faq-area .accordion {
    margin-bottom: 30px
}

.faq-area .accordion p {
    display: none;
    padding: 20px 25px;
    margin-bottom: 0
}

.faq-area .accordion li {
    position: relative;
    list-style-type: none;
    margin-bottom: 20px;
    display: block;
    box-shadow: 0 0 30px 0 rgba(221, 221, 221, .2588235294);
    border-radius: 5px
}

.faq-area .accordion li:first-child {
    border-top: 0
}

.faq-area .accordion li:last-child {
    margin-bottom: 0
}

.faq-area .accordion li a {
    width: 100%;
    display: block;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #000080;
    padding: 13px 38px 13px 20px;
    border-radius: 5px
}

.faq-area .accordion li a.active {
    color: #fff;
    background-color: #FF9933
}

.faq-area .accordion li a.active i {
    color: #fff;
    opacity: 0
}

.faq-area .accordion li a.active i.two {
    opacity: 1
}

.faq-area .accordion li a i {
    position: absolute;
    top: 19px;
    right: 20px;
    color: #000080;
    display: inline-block;
    font-size: 18px;
    opacity: 1;
    transition: .5s all ease
}

.faq-area .accordion li a i.two {
    opacity: 0
}

.faq-area .faq-img {
    margin-bottom: 30px
}

.faq-area .faq-img img {
    width: 100%
}

.error-area {
    height: 100vh
}

.error-area .error-item {
    text-align: center
}

.error-area .error-item h1 {
    font-size: 150px;
    margin-bottom: 5px
}

.error-area .error-item h2 {
    font-size: 30px;
    margin-bottom: 15px
}

.error-area .error-item p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.coming-soon-area {
    height: 100vh;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.coming-soon-area .soon-item h1 {
    font-size: 100px;
    font-weight: 900;
    color: #FF9933;
    margin-bottom: 15px
}

.coming-soon-area .soon-item span {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 30px;
    color: #000080;
    position: relative
}

.coming-soon-area .soon-item span:before {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    left: -45px;
    top: 14px;
    background-color: #000080
}

.coming-soon-area .soon-item span:after {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    right: -45px;
    top: 14px;
    background-color: #000080
}

.coming-soon-area .soon-item .coming-inner {
    margin-bottom: 30px;
    border-radius: 5px
}

.coming-soon-area .soon-item .coming-inner h3 {
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 0
}

.coming-soon-area .soon-item .coming-inner p {
    margin-bottom: 0
}

.rules-area {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.rules-area .rules-item h3 {
    font-size: 22px;
    margin-bottom: 10px
}

.rules-area .rules-item ul {
    margin-bottom: 30px
}

.rules-area .rules-item ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px
}

.rules-area .rules-item ul li:last-child {
    margin-bottom: 0
}

.rules-area .rules-item ul li:before {
    position: absolute;
    content: "";
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #FF9933
}

.rules-area .rules-item p {
    margin-bottom: 30px
}

.rules-area .rules-item p:last-child {
    margin-bottom: 0
}

.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 15px;
    right: 0;
    color: #fff;
    background-color: #FF9933;
    z-index: 4;
    width: 45px;
    text-align: center;
    height: 45px;
    opacity: 0;
    visibility: hidden;
    transition: .9s;
    border-radius: 50%;
    border: 1px solid #FF9933
}

.go-top i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: .6s;
    font-size: 25px;
    line-height: 45px
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%
}

.go-top.active {
    right: 1%;
    transform: translateY(-1%);
    opacity: 1;
    visibility: visible
}

.go-top:hover,
.go-top:focus {
    color: #fff;
    border: 1px solid #000080;
    background-color: #000080
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%
}



.buy-now-btn {
    right: 20px;
    z-index: 99;
    top: 50%;
    position: fixed;
    transform: translateY(-50%);
    border-radius: 30px;
    display: inline-block;
    color: #fff;
    background-color: #82b440;
    padding: 10px 20px 10px 42px;
    box-shadow: 0 1px 20px 1px #82b440;
    font-size: 13px;
    font-weight: 600
}

.buy-now-btn img {
    top: 50%;
    left: 20px;
    width: 15px;
    position: absolute;
    transform: translateY(-50%)
}

.buy-now-btn:hover {
    color: #fff;
    background-color: #94be5d
}

.single-home-teacher {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.single-home-teacher:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.teacher-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ff0000;
}

.teachers-content {
    padding: 15px;
}

.teachers-content h2 {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.teachers-content h2 span {
    color: #007bff;
    font-weight: bold;
}

.video-area {
    padding-top: 100px;
    padding-bottom: 100px;
}

.video-area .section-title {
    margin-bottom: 50px;
}

.video-area .section-title h2 {
    font-size: 32px;
    margin-bottom: 0;
    color: #333;
    font-weight: 700;
}

.video-area .single-video {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.video-area .single-video .video-content {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.video-area .single-video .video-content iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

.video-area .single-video:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.video-area .single-video .video-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease-in-out;
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
}

.video-area .single-video:hover .video-content::after {
    background: rgba(0, 0, 0, 0.25);
}

.video-area .single-video .video-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 150, 0.2), rgba(0, 204, 255, 0.2));
    transition: background 0.3s ease-in-out;
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
}

.video-area .single-video:hover .video-content::after {
    background: linear-gradient(45deg, rgba(255, 0, 150, 0.4), rgba(0, 204, 255, 0.4));
}

.volunteer-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9933 0%, #ffffff 50%, #138808 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    margin: auto;
    color: #333;
    font-family: "Poppins", sans-serif;
    border: 5px solid #138808;
}

.volunteer-card .header {
    background-color: #ff9933;
    border: none;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #000080;
}

.volunteer-card .body {
    padding: 20px;
    text-align: center;
}

.volunteer-card .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0px 20px #000080;
    margin: 10px 0;
    border: 6px solid #000080;
}

.volunteer-card .body p {
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.5;
}

.volunteer-card .body p strong {
    font-weight: bold;
    color: #333;
}

.volunteer-card .contact-info ul {
    list-style: none;
    padding: 0;
}

.volunteer-card .contact-info ul li {
    margin-bottom: 12px;
    font-size: 14px;
}

.volunteer-card .contact-info ul li strong {
    color: #ff9933;

}

.header {
    border: 2px solid #138808;
    background: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: bold;
}

.body {
    font-size: 1.1em;
}

.body .row {
    margin-bottom: 15px;
}

.body .row strong {
    color: #feca57;
    min-width: 120px;
}

.profile-img {
    max-width: 120px;
    border-radius: 50%;
    margin-right: 20px;
}

.contact-info ul {
    list-style-type: none;
    padding-left: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
}

.terms {
    margin-top: 20px;
}


.donation-image-wrapper {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.donation-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.donation-image-caption {
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.donation-image-caption:hover {
    background-color: #f8f9fa;
    transform: translateY(-5px);
}

.donations-area {
    padding: 100px 0;
    background-color: #f0f4f7;
}


.certificate-container {
    max-width: 850px;
    margin: 0 auto;
    border: 2px solid #ccc;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);

}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 120px;
    margin-bottom: 15px;
}

.header h2 {
    font-size: 30px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

.information-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.information {
    flex: 1;
    margin-right: 20px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.information:last-child {
    margin-right: 0;
}

.details {
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
    border-left: 5px solid #FF9933;
    padding-left: 20px;
}

.details p {
    margin-bottom: 10px;
}

.amount {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #138808;
}

.footer {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-top: 40px;
}

.footer p {
    margin: 0;
}

/* Achievment */
.achievements-section .achievement__single {
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.achievements-section .achievement__img {
    display: inline-block;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 400px;
    height: 250px;
}

.achievements-section .achievement__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.achievements-section .achievement__img:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

.achievements-section .achievement__img:hover {
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.5);

}

.achievements-section .achievement__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease;
}

.achievements-section .achievement__img:hover::after {
    background: rgba(255, 255, 255, 0.2);
}

/* training */

.training-section .training-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.training-section .training-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-section .training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.training-section .training-card__img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.training-section .training-card__content {
    padding: 20px;
}

.training-section .training-card__title {
    font-size: 18px;
    color: #333;
    margin: 0;
}

/* admission */
.admission-procedure-area {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f9f9f9;
}

.admission-procedure {
    margin-bottom: 30px;
}

.admission-procedure h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.admission-procedure p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.registration-form-area {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.registration-form-area h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.registration-form .form-group {
    margin-bottom: 20px;
}

.registration-form label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.registration-form textarea {
    resize: vertical;
}

.registration-form .btn-primary {
    background-color: #007bff;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.registration-form .btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .admission-procedure-area .col-lg-6 {
        margin-bottom: 30px;
    }
}

/* acadmic */
.academic-area {
    padding-top: 100px;
    padding-bottom: 100px;
}

.academic-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.academic-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.heading-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px 0 0 0;
    color: #fff;
    text-align: center;
}

.heading-container i {
    font-size: 2rem;
    margin-bottom: 5px;
    display: block;
}

.heading-container h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
}

.academic-img:hover img {
    transform: scale(1.1);
}

.class-description-img,
.academic-calendar-img,
.sports-activities-img,
.hostel-facilities-img {
    padding: 15px;
}

.class-description-content,
.academic-calendar-content,
.sports-activities-content,
.hostel-facilities-content {
    padding: 15px;
}

/* curriculum */

/* Curriculum Section Styles */
.curriculum-area {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f7f7f7;
    /* Light background for contrast */
}

.section-title {
    margin-bottom: 50px;
}

.section-title__tagline {
    display: block;
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.section-title__title {
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

/* Curriculum Columns */
.curriculum-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.curriculum-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.curriculum-img:hover img {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
}

.heading-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
}

.heading-container i {
    font-size: 24px;
    margin-right: 10px;
}

.heading-container h3 {
    font-size: 20px;
    margin: 0;
}

/* Curriculum Section Styles */
.curriculum-area {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f7f7f7;
    /* Light background for contrast */
}

.section-title {
    margin-bottom: 50px;
}

.section-title__tagline {
    display: block;
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.section-title__title {
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

/* Curriculum Columns */
.curriculum-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.curriculum-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.curriculum-img:hover img {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
}

.heading-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
}

.heading-container i {
    font-size: 24px;
    margin-right: 10px;
}

.heading-container h3 {
    font-size: 20px;
    margin: 0;
}

.curriculum-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.curriculum-content h4 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.curriculum-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.curriculum-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.curriculum-content ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}