/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #777777;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        width: 90%; /* Adjust container width for smaller screens */
    }
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #4a4c70;
}

a {
    color: #4a4c70;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #FDBE33;
    outline: none;
    text-decoration: none;
}

.btn.btn-custom {
    padding: 12px 20px;
    text-align: center; 
    font-size: 16px;
    font-weight: 500;
    color: #777777;
    border-radius: 0;
    border: 2px solid #FDBE33;
    box-shadow: inset 0 0 0 0 #FDBE33;
    transition: ease-out 0.3s;
}

.btn.btn-custom:hover {
    color: #20212B;
    box-shadow: inset 0 0 0 30px #FDBE33;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    width: 100%;
    max-width: none; /* Removed the 1366px restriction to enable true full-width responsiveness across all screens */
    margin: 0 auto;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #FDBE33;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FDBE33;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #4a4c70;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #4a4c70;
}

.back-to-top:hover i {
    color: #FDBE33;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: fixed;
    height: 60px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #343a40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px; /* Added padding for better spacing */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Added box shadow for depth */
}

.top-bar .top-bar-left,
.top-bar .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar .top-bar-right {
    margin-right: 20px;
}

.top-bar .text,
.top-bar .social {
    display: flex;
    align-items: center;
    height: 100%;
}

.top-bar .text {
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar .text i {
    font-size: 20px;
    color: #FDBE33;
    margin-right: 10px;
}

.top-bar .text p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.top-bar .social a {
    width: 60px;
    font-size: 20px;
    color: #FDBE33;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: color 0.3s, background-color 0.3s; /* Added smooth transition */
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar .social a:hover {
    color: #ffffff;
    background: #FDBE33;
}

@media (max-width: 991.98px) {
    .top-bar {
        height: 50px;
        padding: 0 10px; /* Adjusted padding for smaller screens */
    }

    .top-bar .text,
    .top-bar .social {
        display: none; /* Hide text and social icons on smaller screens */
    }

    .top-bar .top-bar-left {
        padding-left: 10px; /* Adjusted padding for smaller screens */
    }
    
    .top-bar .top-bar-right {
        margin-right: 10px; /* Adjusted margin for smaller screens */
    }
    
    .back-to-top {
        display: block; /* Show back to top button on smaller screens */
    }
}



/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #343a40; /* Dark background color */
    padding: 20px; /* Adjust padding as needed */
    transition: .5s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fixed-object-content {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Navbar Brand */
.navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-brand img {
    max-height: 40px;
    max-width: 100%;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    background: transparent;
    cursor: pointer;
    outline: none;
}

.navbar-toggler:focus .navbar-toggler-icon {
    outline: none;
}

.navbar-toggler-icon {
    background-color: #f58f09;
    border-radius: 10px;
    display: block;
    height: 30px;
    width: 20px;
    transition: .2s;
}

.navbar-toggler-icon + .navbar-toggler-icon {
    margin-top: 4px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
    transform: rotate(-45deg);
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #FDBE33;
}

.logo-1 {
    height: 50%; /* Adjusted height for responsiveness */
    width: 50%; /* Adjusted width for responsiveness */
}

.logo-2 {
    height: 50%;
    width: 50%;
}

@media (max-width: 767.98px) {
    .logo-1,
    .logo-2 {
        height: 30%; /* Decreased height for smaller screens */
        width: 30%; /* Decreased width for smaller screens */
    }
    .logo-1 img,
    .logo-2 img {
        height: auto;
        width: auto;
    }
}



/* Animation */



/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: 100vh; /* Make the carousel full vertical viewport height */
    min-height: 600px;
    background: transparent;
    overflow: hidden;
    margin-bottom: 0px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .owl-carousel,
.carousel .owl-stage-outer,
.carousel .owl-stage {
    height: 100%;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crucial for beautiful edge-to-edge full width images */
    object-position: top;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .55); /* Darker overlay to make text pop more */
    z-index: 1;
}

.carousel .carousel-text {
    position: relative;
    max-width: 900px;
    width: 90%;
    text-align: center;
    z-index: 2;
    color: #ffffff;
}

.carousel .carousel-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.carousel .carousel-text p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #e2e8f0;
}

.carousel .carousel-btn .btn {
    padding: 15px 35px;
    font-size: 1.2rem;
    letter-spacing: 0;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    border-radius: 5px;
    margin: 5px;
}

.carousel .carousel-btn .btn-custom {
    background-color: #FDBE33; /* Amber tone */
    border-color: #FDBE33;
    color: #ffffff;
}

.carousel .carousel-btn .btn-custom:hover {
    background-color: #20212B;
    border-color: #20212B;
    color: #FDBE33 !important;
    box-shadow: none;
    transform: translateY(-3px);
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
    pointer-events: none; /* Allows clicking through empty space */
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    pointer-events: auto; /* Re-enable clicks */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    background: rgba(255, 255, 255, .15);
    font-size: 24px;
    transition: .3s;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 30px;
    backdrop-filter: blur(5px);
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    background: #FDBE33;
    color: #0f172a;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h1 {
        font-size: 3rem;
    }
    .carousel .carousel-text p {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }
    .carousel .owl-nav .owl-prev,
    .carousel .owl-nav .owl-next {
        margin: 0 15px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item {
        height: auto;
        min-height: 90vh; /* Takes most of the screen on mobile */
    }
    .carousel .carousel-text h1 {
        font-size: 2.5rem;
    }
    .carousel .carousel-text .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 2rem;
    }
    .carousel .carousel-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .carousel .carousel-btn .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin: 5px 0;
    }
    .carousel .owl-nav {
        display: none !important; /* Hide arrows on very small screens, use swipe */
    }
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 210px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/page-header.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: #db9704;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #FDBE33;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #FDBE33;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 120px 0 60px 0; /* Adjusted padding for smaller screens */
    }
    
    .page-header h2 {
        font-size: 45px; /* Decreased font size for smaller screens */
    }
    
    .page-header a {
        font-size: 20px; /* Decreased font size for smaller screens */
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 90px 0 45px 0; /* Further adjusted padding for smaller screens */
    }
    
    .page-header h2 {
        font-size: 35px;
        margin-top: 150px; /* Decreased font size for smaller screens */
    }
    
    .page-header a {
        font-size: 16px; /* Decreased font size for smaller screens */
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
   
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 40px;
    font-weight: 600;
    text-transform: capitalize;
    color: #FDBE33;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px; /* No change */
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px; /* Decreased font size */
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px; /* Decreased font size */
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
/* About Section */
.about {
    padding: 80px 0;
    padding-top: auto;
}

.about-img {
    height: 300px;
    max-width: 100%;
    background-size: cover;
    background-position: center;
}

.section-header p {
    font-size: 18px;
    color: #f3a82e;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

.about-tab {
    margin-top: 50px;
}

.about-tab .nav-pills {
    border-bottom: 2px solid #f3a82e;
}

.about-tab .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    padding: 15px 20px;
    border: none;
    background: transparent;
}

.about-tab .nav-link.active {
    color: #f3a82e;
    background: transparent;
    border-bottom: 2px solid #f3a82e;
}

.tab-content {
    padding-top: 30px;
}

.tab-content .container {
    max-width: 100%;
}

.tab-content .container p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-img {
        height: 250px;
    }

    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-img {
        height: 200px;
    }

    .section-header p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .about-img {
        height: 225px; /* Adjusted height for better visibility on phones */
    }

    .section-header p {
        font-size: 30px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .about-tab .nav-pills .nav-link {
        font-size: 14px;
        padding: 10px 15px;
    }

    .tab-content .container p {
        font-size: 14px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: transparent;
}

.service .section-header {
    margin-bottom: 50px;
}

.service .service-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.service .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.15);
    border-color: #fbbf24;
}

.service .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service .service-icon i {
    font-size: 35px;
    color: #fbbf24;
    transition: all 0.3s ease;
}

.service .service-item:hover .service-icon {
    background: #fbbf24;
}

.service .service-item:hover .service-icon i {
    color: #ffffff;
}

.service .service-text h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.service .service-text p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 767.98px) {
    .service {
        padding: 50px 0;
    }
    .service .service-item {
        padding: 25px;
        margin-bottom: 20px;
    }
}



/*******************************/
/********* Donate CSS **********/
/*******************************/
/* Style for Donate Section */
.donate {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.donate-content {
    color: #fff;
}

.section-header {
    margin-bottom: 40px;
}

.section-header p {
    font-size: 40px;
    color: #ffc107;
}

.section-header h2 {
    font-size: 36px;
}

.donate-form {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.donate-form h1 {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 20px;
}

.donate-form p {
    font-size: 16px;
    margin-bottom: 15px;
}

.donate-form img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
    margin-top: 20px;
}

.bank-details {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.bank-details p {
    font-size: 16px;
    margin-bottom: 15px;
}

.bank-details strong {
    color: #ffc107;
}

.donate-text {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Button Styles */
.donate-btn {
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 18px;
    margin-top: 20px;
}

.donate-btn:hover {
    background-color: #ffca28;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .donate-form {
        padding: 25px;
    }
    
    .bank-details {
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .donate {
        padding: 80px 0;
    }
    
    .col-lg-7 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
    .donate-form {
        padding: 20px;
    }
    
    .bank-details {
        padding: 15px;
    }
    
    .donate-btn {
        font-size: 16px;
    }
}



/*******************************/
/********** Causes CSS *********/
/*******************************/
.causes {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: transparent;
}

.causes .section-header {
    margin-bottom: 50px;
}

.causes .causes-carousel {
    width: 100%;
    margin-bottom: 30px;
}

.causes .causes-item {
    margin: 15px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.causes .causes-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.15);
}

.causes .causes-img {
    overflow: hidden;
    position: relative;
    height: 220px;
}

.causes .causes-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.causes .causes-item:hover img {
    transform: scale(1.05);
}

.causes .causes-progress {
    width: 100%;
    padding: 25px 25px 15px 25px;
}

.causes .progress {
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    overflow: visible;
}

.causes .progress .progress-bar {
    position: relative;
    width: 0px;
    background: #fbbf24;
    border-radius: 4px;
    transition: width 2s ease;
}

.causes .progress-bar span {
    position: absolute;
    top: -35px;
    right: -15px;
    height: 25px;
    line-height: 25px;
    padding: 0 8px;
    background: #0f172a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
}

.causes .progress-bar span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 25px;
    left: calc(50% - 6px);
    border: 6px solid;
    border-color: #0f172a transparent transparent transparent;
}

.causes .progress-text {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.causes .progress-text p {
    margin: 0;
    font-size: 14px;
    color: #475569;
}

.causes .progress-text strong {
    color: #0f172a;
    font-weight: 700;
}

.causes .causes-text {
    padding: 5px 25px 20px 25px;
    flex-grow: 1;
}

.causes .causes-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.causes .causes-text p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.causes .causes-btn {
    padding: 0 25px 25px 25px;
    display: flex;
    gap: 15px;
}

.causes .causes-btn .btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #fbbf24;
}

.causes .causes-btn .btn:first-child {
    background: transparent;
    color: #fbbf24;
}

.causes .causes-btn .btn:first-child:hover {
    background: #fffbeb;
}

.causes .causes-btn .btn:last-child {
    color: #ffffff;
    background: #fbbf24;
}

.causes .causes-btn .btn:last-child:hover {
    color: #ffffff;
}



/*******************************/
/********** Facts CSS **********/
/*******************************/
.facts {
    position: relative;
    width: 100%;
    min-height: 400px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

.facts .facts-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    padding: 15px;
    transition: transform 0.3s ease;
}

.facts .facts-item:hover {
    transform: translateY(-5px);
}

.facts .facts-item i {
    font-size: 55px;
    line-height: 55px;
    color: #FDBE33;
    margin-bottom: 20px;
}

.facts .facts-text {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.facts .facts-text h3::after {
    position: absolute;
    top: 5px;
    color: #FDBE33; /* Premium amber touch */
    font-size: 22px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.facts .facts-text h3.facts-plus::after {
    content: "\f067";
    right: -25px;
}

.facts .facts-text h3.facts-dollar::after {
    content: "\f155";
    right: -20px;
}

.facts .facts-text p {
    color: #cbd5e1;
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0 0 0;
    line-height: 1.4;
    max-width: 200px; /* Keep text nicely constrained */
}

@media (max-width: 1199px) {
    .facts .facts-text h3 {
        font-size: 36px;
    }
    .facts .facts-text p {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .facts .facts-text h3 {
        font-size: 32px;
    }
    .facts .facts-text p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .facts .facts-item {
        margin: 15px 0;
    }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team-section {
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    max-width: 300px;
    text-align: center;
}

.member-img img {
    width: 100%;
    height: auto;
    border-radius:10%;
}

.member-details {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.member-details h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.member-details p {
    margin-bottom: 10px;
}

.member-social a {
    color: #555;
    text-decoration: none;
    margin-right: 10px;
}

.member-social a:hover {
    color: #007bff;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
/* Testimonial Section */
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
    overflow-x: auto; /* Enable horizontal scrolling on small screens */
    white-space: nowrap; /* Prevent testimonial items from wrapping */
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.testimonial .testimonial-profile img {
    width: 80px;
    margin-bottom: -1px;
    border-radius: 10%; /* Added border-radius for circular images */
}

.testimonial .testimonial-name {
    padding-left: 15px;
    width: calc(100% - 95px);
}

.testimonial .testimonial-name h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333; /* Changed font color */
}

.testimonial .testimonial-name p {
    margin: 0;
    font-style: italic;
    color: #777; /* Changed font color */
}

.testimonial .testimonial-text p {
    margin: 0;
    color: #555; /* Changed font color */
    height: 100px; /* Set a specific height */
    overflow-y: auto; /* Enable vertical scrolling */
}


.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%; /* Changed to circular dots */
    background: #FDBE33;
    border: 2px solid #FDBE33; /* Added border to dots */
    transition: all 0.3s ease; /* Added transition effect */
}

.testimonial .owl-dot.active {
    background: #20212B;
    border-color: #20212B; /* Changed active dot color */
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    .testimonial .testimonials-carousel {
        overflow-x: hidden; /* Hide horizontal scrollbar on small screens */
        white-space: normal; /* Allow testimonial items to wrap */
    }
    
    .testimonial .testimonial-item {
        width: 80%; /* Adjust width for better responsiveness */
        margin: 0 auto; /* Center align testimonial items */
    }
}



/*******************************/
/******** Volunteer CSS ********/
/*******************************/
.volunteer {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: rgba(0, 0, 0, .5);
}

.volunteer .volunteer-content {
    padding: 30px 0 45px 0;
}

.container .volunteer {
    margin: 90px 0;
}

.container .volunteer .volunteer-content {
    padding: 45px 30px 15px 30px;
}

.volunteer .volunteer-content .section-header {
    margin-bottom: 30px;
}

.volunteer .volunteer-content .section-header h2 {
    color: #ffffff;
}

.volunteer .volunteer-text p {
    color: #ffffff;
    font-size: 18px;
}

.volunteer .volunteer-form {
    padding: 90px 30px;
    background: #FDBE33;
}

.volunteer .volunteer-form .control-group {
    margin-bottom: 15px;
}

.volunteer .volunteer-form .form-control {
    height: 60px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
}

.volunteer .volunteer-form textarea.form-control {
    height: 120px;
    padding: 15px;
}

.volunteer .volunteer-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.volunteer .volunteer-form .form-control:-ms-input-placeholder,
.volunteer .volunteer-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom {
    padding: 15px 0;
    width: 100%;
    height: 60px;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 0 #ffffff;
}

.volunteer .volunteer-form .btn.btn-custom:hover {
    color: #FDBE33;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 0 30px #ffffff;
}


/*******************************/
/********** Event CSS **********/
/*******************************/
.event {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.event .event-item {
    margin-bottom: 30px;
    background: #f3f6ff;
}

.event .event-item img {
    width: 100%;
}

.event .event-content {
    padding: 30px;
    display: flex;
}

.event .event-meta {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.event .event-meta p {
    position: relative;
    margin-bottom: 8px;
    padding-bottom: 8px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.event .event-meta p:last-child {
    border-bottom: none;
}

.event .event-meta i {
    color: #4a4c70;
    width: 25px;
}

.event .event-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.event .event-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 5px);
    top: 6px;
    left: 0;
    background: rgba(0, 0, 0, .15);
}

.event .event-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: #171716;
}

.event .event-text h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event .event-text p {
    margin: 0;
}

.event .btn.btn-custom {
    margin-top: 20px;
    padding: 8px 30px;
}
.btn-custom {
    display: inline-block;
    padding: 12px 24px; /* Adjusted padding for better appearance */
    background-color: #FDBE33;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Added transition effect for box shadow */
    margin-right: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Added box shadow */
}

.btn-custom:hover {
    background-color: #FFA500;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Increase box shadow on hover */
}

@media (max-width: 575.98px) {
    .event .event-content {
        flex-direction: column;
    }
    
    .event .event-meta {
        flex-direction: row;
    }
    
    .event .event-meta p {
        font-size: 14px;
        padding-right: 7px;
    }
    
    .event .event-meta p:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, .15);
    }
    
    .event .event-meta i {
        width: 18px;
    }
    
    .event .event-text {
        margin: 0;
        padding: 0;
    }
    
    .event .event-text::before,
    .event .event-text::after {
        display: none;
    }
}



/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: #f3f6ff;
}

.blog .blog-img {
    width: 100%;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-text {
    padding: 30px 30px 15px 30px;
}

.blog .blog-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-text h3 a {
    color: #4a4c70;
}

.blog .blog-text h3 a:hover {
    color: #FDBE33;
}

.blog .blog-text p {
    margin: 0;
}

.blog .blog-meta {
    margin: 0 30px;
    padding-top: 15px;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p {
    margin: 0;
    color: #777777;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, .15);
}

.blog .blog-meta p:first-child {
    padding-left: 0;
}

.blog .blog-meta p:last-child {
    padding-right: 0;
    border: none;
}

.blog .blog-meta i {
    color: #4a4c70;
    margin-right: 8px
}

.blog .pagination {
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #4a4c70;
    border-radius: 0;
    border-color: #4a4c70;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #FDBE33;
    background: #4a4c70;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
/* Contact Section */
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .contact-img {
    position: relative;
    width: 100%;
}

.contact .contact-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.contact .contact-form {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-top: -220px;
    padding: 30px;
    background: #f3f6ff;
    border-radius: 10px; /* Added border radius */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Added box shadow */
    animation: fadeInUp 1s ease forwards; /* Add animation to fade in form */
}

@media (max-width: 991.98px) {
    .contact .contact-form {
        max-width: 600px;
    }
}

@media (max-width: 767.98px) {
    .contact .contact-form {
        max-width: 400px;
    }
}

@media (max-width: 575.98px) {
    .contact .contact-form {
        max-width: 300px;
    }
}

.contact .contact-form input,
.contact .contact-form textarea {
    width: 100%; /* Make input fields full width */
    margin-bottom: 15px; /* Add spacing between input fields */
    padding: 12px; /* Adjust padding for better readability */
    background: #fff; /* Set background color for input fields */
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px; /* Added border radius */
    transition: border-color 0.3s ease; /* Added transition effect for border color */
    animation: fadeInLeft 0.5s ease; /* Added animation for input fields */
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
    border-color: #FDBE33; /* Change border color on focus */
    outline: none; /* Remove default focus outline */
}

.contact .contact-form textarea {
    resize: none; /* Disable resizing of textarea */
}

.contact .contact-form .btn.btn-custom {
    width: 100%;
    padding: 12px; /* Adjust padding for better button appearance */
    background: #FDBE33;
    color: #fff; /* Set text color */
    border: none;
    border-radius: 5px; /* Added border radius */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Added transition effect */
}

.contact .contact-form .btn.btn-custom:hover {
    background: #FFA500; /* Change button background color on hover */
    animation: bounce 0.5s infinite alternate; /* Add animation on hover */
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Keyframes for the bounce animation */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

/* Keyframes for the fadeInUp animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes for the fadeInLeft animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover effect for the entire contact form */
.contact .contact-form:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
    transform: translateY(-5px); /* Move the form slightly up on hover */
}



/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
    
}

.single .single-bio-img img {
    width: 100%;
    border: 15px solid #ffffff;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 600;
}

.single .post-item .post-text a:hover {
    color: #FDBE33;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4c70;
    background: #FDBE33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #FDBE33;
    background: #4a4c70;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 0;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #FDBE33;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form input:focus,
.single .comment-form textarea:focus {
    border-color: #FDBE33;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #FDBE33;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
    border-color: #FDBE33;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #FDBE33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #4a4c70;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #4a4c70;
    background: #FDBE33;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #FDBE33;
    background: #4a4c70;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FDBE33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #4a4c70;
    border: 1px solid #4a4c70;
    border-radius: 0;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #20212B;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: #FDBE33;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #FDBE33;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    padding: 6px 0;
}

.footer .footer-social a {
    margin-top: 5px;
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 60px;
    border: none;
    border-radius: 0;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    padding: 15px 0;
}

.footer .copyright {
    padding: 0 30px;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #FDBE33;
}
.footer-social .btn i {
    font-size: 35px; /* Increase the size of icons */
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, opacity 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Add animation */
}

.footer-social .btn:hover i {
    transform: scale(1.2) rotate(20deg); /* Scale and rotate the icons on hover */
    color: #FF5733; /* Change icon color on hover */
    opacity: 0.7; /* Reduce opacity on hover */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Add a subtle shadow on hover */
}

.footer-social .btn:hover {
    transform: translateY(-5px); /* Move the button slightly upwards on hover */
}


@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}



/*************************logo******/
.logo {
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px;
    height: 100px;
    width: 150px;
}
.logo img {
    max-width: 120%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below the image */
}

/* Style the button container */
.elementor-button-wrapper {
    text-align: center;
}

/* Style the button */
.elementor-button-link {
    display: inline-block;
    background-color: #000203; /* Set your desired background color */
    color: #ffffff; /* Set your desired text color */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Hover effect */
.elementor-button-link:hover {
    background-color: #2980b9; /* Set your desired hover background color */
}

/* Optional: Adjust button size */
.elementor-size-sm {
    font-size: 30px;
}

/* Responsive styles */
@media only screen and (max-width: 767px) {
    .elementor-button-link {
        padding: 8px 16px; /* Adjust padding for smaller screens */
    }

    /* Optional: Adjust button size for smaller screens */
    .elementor-size-sm {
        font-size: 12px;
    }
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f2f2f2;
}

.controls {
    display: flex;
    gap: 10px;
}


/*gallery*/
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    background-color: #BF9A54;
    color: #38401D;
}

.wrapper {
    width: 80%;
    margin: auto;
    max-width: 1200px;
}

/* HEADER SECTION */

.header {
    overflow: hidden;
}

header h1 {
    /* float: left; */
    font-size: 160%; 
    display: inline-block;     
}

/* END HEADER SECTION */

/* NAVIGATION */

nav {
    float: right;
}

nav ul li {
    list-style: none;
    float: left;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 130%;
    font-weight: 600;
    color: #544333;  
}

nav ul li a:hover {
    color: #C0B6A8;
}

/* END NAVIGATION */

/* SECTIONS */
section:after {
    content: " ";
    display: block;
    clear: both;
}

section div.container img {
    width: 33.33%;
    float: left;
    box-sizing: border-box;
    border: 1px solid transparent;
    opacity: 1;
    transition: opacity .5s;
}

section div.container img:hover {
   opacity: 0.65; 
}

section {
    margin-bottom: 3%;
}

section h2 {
    text-align: center;
}

/* END OF SECTIONS */

/* FOOTER SECTION */
.footer {
    overflow: hidden;
    text-align: center;
    padding-bottom: 10px;
}

.footer p {
    font-weight: 700;
}
/* END FOOTER SECTION */

/* MEDIA QUERIES/RESPONSIVE */
@media only screen and (max-width: 768px) {
    .wrapper {
        width: 100%;
    }
    
    header h1 {
        margin-left: 3%;
    }
    #menu-icon {
        width: 30px;
        height: 26px;
        background: url(images/menu.png) no-repeat center;
        position: absolute;
        top: 2%;
        right: 5%;
        z-index: 100;
    }
    nav ul {
        display: none;
        position: absolute;
        right: 5%;
        top: 0%;
        padding: 3% 7%;
        background: #C0B6A8;
        width: 200px;
        text-align: center;
        z-index: 10;
    }
    nav ul li {
        width: 90%;
        padding: 5%;
        margin: auto;
    }
    nav ul li a {
        padding: 5% 20%;
    }
    nav ul li a:hover {
        border-bottom: 1px solid #aaa;
    }

    nav:hover ul {
        display: block;
    }
    section div.container img {
        display: block;
        float: none;
        width: 100%;
        height: auto;
    }
}

@media only screen and (min-width: 768px) and
(max-width: 1024px) {
    .wrapper {
        width: 100%;
    }
    header h1 {
        margin-left: 3%; 
    }
    nav {
        margin-right: 3%;
    }
}

/* Scroll to Top */
/* https://www.w3schools.com/howto/howto_js_scroll_to_top.asp */
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 10px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: inherit; /* Set a background color */
    color: inherit; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 3px 5px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 14px; /* Increase font size */
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}


/*calender*/
/* Calendar container */
.calendar {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    animation: fadeIn 1s ease; /* Add fadeIn animation to the calendar */
}

/* Calendar title */
.calendar-title {
    text-align: center;
    margin-bottom: 10px;
}

/* Calendar events */
.calendar-events {
    margin-top: 10px;
}

/* Individual calendar event */
.calendar-event {
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Add transition for hover effect */
}

/* Hover effect for calendar events */
.calendar-event:hover {
    background-color: #e0e0e0; /* Change background color on hover */
}

/* CSS for responsive image */
div img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
}

/* Media query for responsiveness */
@media screen and (max-width: 768px) {
    /* Adjustments for smaller screens */
    div img {
        max-width: 90%; /* Reduce the maximum width for smaller screens */
    }
}

/* Keyframes for fadeIn animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*******************************/
/*********** contact map and whatapp details **********/
/*******************************/

/\* Contact Section \*/
.contact {
    padding: 100px 0;
    background-color: #f9f9f9; /* Add background color */
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact .heading {
    text-align: center;
    margin-bottom: 50px;
}

.contact .heading h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.contact .heading div {
    width: 100px;
    height: 3px;
    background-color: #007bff;
    margin: 0 auto;
}

.contact .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center align items */
}

.contact .ifarm {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px; /* Add spacing between map and form */
}

.contact .ifarm iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.contact .container {
    flex: 0 0 100%;
    max-width: 100%;
}

.contact h2 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.contact p {
    text-align: center;
    margin-bottom: 30px;
}

.contact form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.contact form div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contact form div span {
    flex: 0 0 48%;
    max-width: 48%;
}

.contact form div label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact form input[type="text"],
.contact form input[type="email"] {
    width: calc(100% - 10px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact form textarea {
    width: calc(100% - 10px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #0056b3;
}

/* Responsive Styling */
@media (max-width: 991.98px) {
    .contact .ifarm,
    .contact .container {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact form div span {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/*advertsing*/

.video-section {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.video-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.video-container {
    width: calc(50% - 50px);
    margin-bottom: 20px;
}

.video-container video {
    width: 100%;
    border-radius: 10px;
}

.video-info {
    padding: 20px;
}

.video-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.video-info p {
    font-size: 16px;
    margin-bottom: 20px;
}

.video-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-gap: 10px;
}

.video-links a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
    border: 1px solid #007bff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.video-links a:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    .video-container {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .video-links {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}



  .col-lg-6{
    width: 100%;
    height: 100%;
  
  }
 


 
  .single-bio-img {
    text-align: center;
    margin-bottom: 20px;
}

.single-bio-img img {
   height: 350px;
   width: 500px;
}

.single-bio-text {
    text-align: center;
}

.single-bio-text h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.single-bio-text p {
    font-size: 1em;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 1000px;
    font-weight: 500px;
}



/* Responsive CSS */
@media only screen and (max-width: 768px) {
    .single-bio-text p {
        font-size: 0.9em;
    }
}

@media only screen and (max-width: 576px) {
    .single-bio-text p {
        font-size: 0.8em;
        max-width: 400px;
    }
}

/*bar iocons*/
/* Navbar styling */
.navbar {
    background-color: #343a40; /* Dark background color */
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-md-4 {
    width: 25%; /* Adjust width according to your layout */
}

.social {
    display: flex;
    justify-content: space-around;
    padding: 10px; /* Add padding for spacing */
}

.social a {
    color: #ff9b06fc; /* Icon color */
    font-size: 30px; /* Icon size */
    transition: transform 0.3s ease; /* Add animation transition */
}

/* Icon hover effect */
.social a:hover {
    transform: scale(1.2); /* Scale up on hover */
}

/* Adjust icon spacing */
.social a:not(:last-child) {
    margin-right: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
    .icons {
        flex-wrap: wrap;
    }
    .col-md-4 {
        width: 100%; /* Full width for smaller screens */
    }
    .social {
        justify-content: center; /* Center align icons */
    }
}
 .slider-container {
      position: relative;
      width: 100%;
      max-width: 1000px; /* Adjust max-width as needed */
      margin: 0 auto;
      overflow: hidden;
    }

    .slider {
      display: flex;
      transition: transform 0.8s ease;
    }

    .slide {
      flex: 0 0 100%;
      position: relative;
    }

    .slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .slide:hover img {
      transform: scale(1.1);
    }

    .text-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      opacity: 0.8;
    }

    .button-overlay {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
    }

    @media (max-width: 576px) {
      .text-overlay {
        font-size: 18px;
      }
    }

   
        h1 {
            font-size: 1rem; /* Default font size */
            text-align: center; /* Center align the heading */
            margin: 20px 0; /* Add some margin for spacing */
            text-decoration: underline;
            color: orange; /* Add underline to text */
        }

        @media (min-width: 576px) {
            h1 {
                font-size: 2.5rem; /* Increase font size for screens wider than 576px */
            }
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 1rem; /* Increase font size for screens wider than 768px */
            }
        }

        @media (min-width: 992px) {
            h1 {
                font-size: 1rem; /* Increase font size for screens wider than 992px */
            }
        }

        @media (min-width: 1200px) {
            h1 {
                font-size: 4rem; /* Increase font size for screens wider than 1200px */
            }
        }

        


        /*whatappp */
        /*whatapp chat*/
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
.WA_Chat_Widget *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.WA_Chat_Widget .WA_FloatingButton{
    position: fixed;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.185);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    z-index: 1000;
}
.WA_Chat_Widget .WA_FloatingButton svg{
    width: 40px;
    height: 40px;
    fill: #4fce5d;
}
.WA_Chat_Widget[data-position^="top-"] .WA_FloatingButton{
    top: 20px;
}
.WA_Chat_Widget[data-position^="bottom-"] .WA_FloatingButton{
    bottom: 20px;
}
.WA_Chat_Widget[data-position$="-left"] .WA_FloatingButton{
    left: 20px;
}
.WA_Chat_Widget[data-position$="-right"] .WA_FloatingButton{
    right: 20px;
}
.WA_Chat_Widget[data-position$="-center"] .WA_FloatingButton{
    left: 50%;
    transform: translateX(-50%);
}
.WA_Chat_Widget[data-position^="top-"] .WA_ChatBox{
    top: 110px;
}
.WA_Chat_Widget[data-position^="bottom-"] .WA_ChatBox{
    bottom: 110px;
}
.WA_Chat_Widget[data-position$="-left"] .WA_ChatBox{
    left: 30px;
}
.WA_Chat_Widget[data-position$="-right"] .WA_ChatBox{
    right: 30px;
}
.WA_Chat_Widget[data-position$="-center"] .WA_ChatBox{
    left: 50%;
    transform: translateX(-50%);
}
.WA_Chat_Widget .WA_ChatBox{
    position: fixed;
    width: 360px;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 25px 0px rgba(0, 0, 0, 0.1);
    display: none;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header{
    width: auto;
    background: #095e54;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .avatarBox{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .avatarBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .infoBox .name{
    color: #fff;
    font-weight: 600;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .infoBox .answer_time{
    color: #e4e4e4;
    font-size: 14px;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .WA_Close{
    background: transparent;
    color: #fff;
    border: none;
    outline: none;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .WA_Close svg{
    fill: #ffff;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body{
    padding: 20px;
    background: #e6ddd4;
    position: relative;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url(./bg-pattern.png);
    opacity: 0.1;
    z-index: 0;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message{
    max-width: 280px;
    background: #fff;
    padding: 20px;
    padding-top: 10px;
    border-radius: 8px;
    z-index: 1;
    position: relative;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    left: -10px;
    top: 0px;
    border-radius: 3px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message .username{
    color: darkgray;
    font-weight: 500;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message .message_content{
    font-size: 14px;
    color: #000;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer{
    padding: 20px;
    background-color: #fff;
    width: 100%;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn{
    width: 100%;
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 1000px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}
.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn.btn-whatsapp{
    background: #095e54;
    color: #fff;
    display: block;
    text-align: center;
}


























/* Premium Page Header Overrides */
.page-header {
    position: relative !important;
    margin-bottom: 60px !important;
    padding: 130px 0 !important;
    text-align: center !important;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 100%), url(../img/page-header.jpg) !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-bottom: 5px solid #fbbf24 !important;
}

.page-header::before {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 40% !important;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent) !important;
    pointer-events: none !important;
}

.page-header h2 {
    font-family: 'Inter', sans-serif !important;
    position: relative !important;
    z-index: 2 !important;
    color: #f8fafc !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    margin-bottom: 25px !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
}

.page-header h2::after {
    display: none !important; /* Hide old yellow line */
}

.page-header a {
    position: relative !important;
    z-index: 2 !important;
    color: #e2e8f0 !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3) !important;
}

.page-header a:hover {
    color: #fbbf24 !important;
    transform: translateY(-2px) !important;
}

.page-header a::after {
    color: #fbbf24 !important;
    font-weight: 800 !important;
    margin: 0 15px !important;
    text-shadow: none !important;
}

@media (max-width: 768px) {
    .page-header {
        padding: 90px 0 !important;
    }
    .page-header h2 {
        font-size: 2.2rem !important;
    }
    .page-header a {
        font-size: 1rem !important;
    }
}
