/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #454040;
    font-weight: 500;
    background: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: black;
}

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:bolder;
    color: #777777;
    border-radius: 0;
    border: 2px solid black;
    box-shadow: inset 0 0 0 0 rgb(189, 9, 9);
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn.btn-custom:hover {
    color: white;
    box-shadow: inset 0 0 0 30px rgb(189, 9, 9);
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1521px; /* This was the culprit for other sections, but overridden for carousel below */
}

/* Specific override for carousel's container-fluid */
.carousel .container-fluid {
    max-width: 100%; /* Ensures the carousel content spans full width */
    width: 100%; /* Explicitly set width to 100% */
    padding: 0; /* Ensures no internal padding */
}


[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;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    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%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    background:rgb(189, 9, 9);
    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: white;
    padding-top: 10px;
}

.back-to-top:hover {
    background: white;
}

.back-to-top:hover i {
    color: black;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
/* Top Bar CSS */
.top-bar {
    position: absolute;
    height: 45px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    /*border-bottom: 1px solid rgba(255, 255, 255, .3);*/
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-left img {
    /* Responsive image sizing for larger screens */
    max-width: 180px; /* Max width for the logo */
    height: auto; /* Maintain aspect ratio */
    margin-top: 20px;
    transition: all 0.3s ease; /* Smooth transition for resizing */
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
    .top-bar .top-bar-left img {
        /* Adjust size for very large screens if needed */
        max-height: 180px; /* Original height */
    }
}

/* Nav Bar CSS */
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px; /* Default large size for brand text */
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* Adjustments for the brand text on smaller screens */
.navbar-brand.d-md-none {
    font-size: 24px !important; /* Smaller font size for mobile brand */
    letter-spacing: 2px;
    line-height: normal; /* Reset line height */
    padding: 10px 0; /* Add some padding */
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 60px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 15px 8px 15px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: rgb(189, 9, 9); /* Changed to Red */
    transition: none;
}

/* Updated dropdown menu styling for a modern, stylish look */
.navbar .dropdown-menu {
    /* Base styles to override Bootstrap defaults */
    margin-top: 0;
    border: none;
    background: #ffffff;
    padding: 0;

    /* Stylish additions */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* A clear, modern shadow */
    border-radius: 8px; /* Softly rounded corners */
    min-width: 200px; /* Ensure the menu has a decent width */
    transform: translateY(10px); /* Add a slight downward animation effect */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

/* Show the menu with a transition */
.navbar .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-menu .dropdown-item {
    color: #333; /* Darker text for readability */
    padding: 12px 20px; /* Increased padding for better spacing and click area */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    font-weight: 500;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    background-color: #f8f9fa; /* Light grey background on hover */
    color: rgb(189, 9, 9); /* Highlight color changed to Red */
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 45px;
        padding: 20px 60px;
        background: transparent !important;
        /*border-bottom: 1px solid rgba(255, 255, 255, .3);*/
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #20212B !important;
        border-bottom: none;
    }
    
    .page .navbar {
        background: #20212B !important;
    }
    
    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 17px;
        letter-spacing: 1px;
        font-weight: bolder;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: #20212B !important;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none; /* Remove shadow on small screens */
        border-radius: 0;
        /* Reset animations for mobile view */
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.05); /* A slightly transparent background for mobile */
    }
    
    .navbar .dropdown-menu .dropdown-item {
        color: #ffffff; /* Use white text for contrast on mobile */
    }
    
    .navbar .dropdown-menu .dropdown-item:hover {
        background-color: transparent;
        color: rgb(189, 9, 9); /* Use theme color for hover (Red) */
    }

    /* Hide the top bar logo on small screens */
    .top-bar {
        display: none !important;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #ffffff;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-btn .btn.btn-custom {
    color: #ffffff;
}

.carousel .carousel-btn .btn.btn-custom:hover {
    color: #20212B;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 60px;
    top: calc(50% - 30px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDBE33;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #FDBE33;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*duplicating for second carousel video start */
#videoModal2 .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal2 .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal2 .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*duplicating for second carousel video end */


@media (max-width: 991.98px) {
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}

/*custom button of carousel*/
.btn.btn-custom1 {
    padding: 12px 20px;
    text-align: center; 
    font-size: 16px;
    font-weight:bolder;
    color: white;
    border-radius: 0;
    border: 2px solid white;
    box-shadow: inset 0 0 0 0 white;
    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
}

.btn.btn-custom1:hover {
    color: black;
    box-shadow: inset 0 0 0 30px white;
}
/*end of custom button carousel*/

/*******************************/
/******* 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/mainimg5.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: white;
    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: rgb(189, 9, 9);
}

.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: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* 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: 30px;
    font-weight: 800;
    text-transform: capitalize;
    color: rgb(189, 9, 9);
}

.section-header h2 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    width: 100%;
    height: 100vh;
}

.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: rgb(189, 9, 9);
    padding-bottom: 7px;
    border-bottom: 3px solid black;
}

.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.about .about-tab .tab-content .container {
    padding: 0;
}

@media (max-width: 991.98px) {
    .about .section-header {
        margin-top: 30px;
    }
}

/*****NEW CODE FOR ABOUT PAGE****/
/* Custom styles for the About Us page content */
.about-section {
    padding: 60px 0;
    background: #fff;
}

.about-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #20212B; /* Dark text for headings */
    text-align: center;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666; /* Lighter text for paragraphs */
}

.about-img {
    position: relative;
    width: 100%; /* Ensure it takes full width of its column */
    height: 100%;
    min-height: 300px; /* Minimum height for the image container */
    background-size: cover;
    background-position: center;
    border-radius: 8px; /* Slightly rounded corners for images */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}


/* Existing .about styles from your input, adjusted for compatibility */
.about {
    position: relative;
    width: 100%;
    padding: 45px 0; /* This padding might be overridden by .about-section padding */
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: rgb(189, 9, 9);
    padding-bottom: 7px;
    border-bottom: 3px solid black;
}

.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.about .about-tab .tab-content .container {
    padding: 0;
}

@media (max-width: 991.98px) {
    .about .section-header {
        margin-top: 30px;
    }
}



/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    transition: .3s;
}

.service .service-icon {
    position: relative;
    width: 60px;
}

.service .service-icon i {
    position: relative;
    display: block;
    color: rgb(189, 9, 9);
    font-size: 60px;
    line-height: 60px;
    margin-top: 5px;
}

.service .service-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.service .service-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    top: 5px;
    left: 0;
    background: black;
}

.service .service-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: rgb(189, 9, 9);
}

.service .service-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-text p {
    margin: 0;
}


/*******************************/
/********* Donate CSS **********/
/*******************************/
/* Custom Styles for Donate Section */

/* Custom Styles for Donate Section */

/* Ensure Font Awesome is correctly loaded for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* General Donate Section */
.donate {
    position: relative;
    width: 100%;
    margin: 60px 0; /* Adjusted margin for better spacing */
    padding: 80px 0; /* More padding top/bottom */
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    /* The data-image-src attribute handles the background image */
}

.donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay for better text contrast */
    z-index: 1;
}

.donate .container {
    position: relative;
    z-index: 2;
}

.donate .row.align-items-center {
    display: flex;
    align-items: stretch; /* Make columns stretch to equal height */
    min-height: 850px; /* Ensures the whole row is at least this tall */
}

/* Left Column: Donate Content (Text & Payment Details) */
.donate .donate-content {
    padding: 40px; /* Generous padding */
    background: rgba(255, 255, 255, 0.1); /* Slightly translucent white background */
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow */
    color: #ffffff;
    height: 100%; /* Ensures it fills the column height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top within the flex container */
}

.donate .donate-content .section-header {
    margin-bottom: 35px; /* Increased bottom margin for more space */
    text-align: left; /* Align header text to left */
}

.donate .donate-content .section-header p {
    font-size: 2em; /* Larger subheading */
    color: rgb(189, 9, 9); /* Gold accent color */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.donate .donate-content .section-header h2 {
    color: #ffffff;
    font-size: 2.8em; /* Prominent heading */
    margin-bottom: 25px; /* Increased bottom margin */
    line-height: 1.3;
    font-weight: 700;
}

.donate .donate-text p {
    color: #e0e0e0; /* Lighter white for body text */
    font-size: 1.05em;
    margin-bottom: 25px; /* Increased bottom margin */
    line-height: 1.7;
}

.donate .donate-text h3 {
    color: rgb(189, 9, 9); /* Gold for sub-headings in text */
    font-size: 1.8em;
    margin-top: 35px; /* Increased top margin */
    margin-bottom: 25px; /* Increased bottom margin */
    font-weight: 700;
}

/* Bulleted list styling for impact points */
.donate .donate-text ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin-bottom: 40px; /* Increased bottom margin for more space */
}

.donate .donate-text ul li {
    color: #f0f0f0;
    margin-bottom: 15px; /* Increased bottom margin between list items */
    font-size: 1.05em;
    position: relative;
    padding-left: 35px; /* Space for custom bullet */
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.donate .donate-text ul li::before {
    content: '\f058'; /* Font Awesome 'check-circle' icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900; /* Required for solid icons */
    color: #28a745; /* Green checkmark */
    position: absolute;
    left: 0;
    top: 2px; /* Adjust vertical alignment */
    font-size: 1.2em;
    margin-right: 10px;
}

/* Payment Details Section */
.payment-details {
    margin-top: 40px; /* Increased top margin to separate from text above */
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* More visible separator */
}

.payment-details h4 {
    color: rgb(189, 9, 9); /* Gold for payment methods heading */
    font-size: 2em;
    margin-bottom: 30px; /* Increased bottom margin */
    text-align: center;
    font-weight: 700;
}

.payment-details .payment-option {
    background: rgba(255, 255, 255, 0.1); /* Lighter translucent background for each option */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%; /* Ensures height consistency */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
}

.payment-details .payment-option h5 {
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 20px; /* Increased bottom margin */
    font-weight: 600;
}

.payment-details .payment-option p {
    color: #e0e0e0;
    font-size: 1em;
    margin-bottom: 10px; /* Consistent bottom margin */
    line-height: 1.4;
}

.payment-details .qr-code-placeholder {
    margin-top: 25px; /* Increased top margin for QR code */
    margin-bottom: 10px; /* Added bottom margin */
}

/* Text below payment details */
.payment-details .mt-3.text-center.text-white-75 {
    margin-top: 35px !important; /* Ensure this margin is applied for spacing */
    margin-bottom: 0; /* Adjust as needed */
    padding-bottom: 10px; /* Add some padding if needed */
}


/* Right Column: Donate Form (iframe container) */
.donate .donate-form {
    padding: 10px; /* Consistent padding with content side */
    background: rgb(189, 9, 9);
    opacity: 80%; /* Keep the existing background color */
    border-radius: 12px; /* Match content block border-radius */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); /* Match content block shadow */
    height: 100%; /* Ensures it fills the column height */
    min-height: 100px; /* Set minimum height for the form container */
    display: flex; /* Use flexbox to ensure iframe fills space */
    align-items: center; /* Center iframe content vertically */
    justify-content: center; /* Center iframe content horizontally */
}

.donate .donate-form iframe {
    width: 100%;
    height: 100%;
    min-height: 1400px; /* Set minimum height for the iframe itself */
    border: none; /* Remove default iframe border */
    border-radius: 8px; /* Slightly rounded iframe for seamless look */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991.98px) { /* Bootstrap's standard breakpoint for lg */
    .donate {
        padding: 50px 0; /* Adjust overall padding */
    }
    .donate .donate-content {
        margin-bottom: 40px; /* Add more space between content and form on smaller screens */
        justify-content: flex-start; /* Allow content to flow naturally on smaller screens */
    }
    .donate .donate-content, .donate .donate-form {
        padding: 30px; /* Reduce padding for mobile */
    }
    .donate .donate-content .section-header h2 {
        font-size: 2.2em; /* Adjust heading font size */
    }
    .donate .donate-text h3 {
        font-size: 1.5em;
    }
    .payment-details h4 {
        font-size: 1.8em;
    }
    .payment-details .payment-option {
        margin-bottom: 25px; /* Space out payment options on mobile when stacked */
    }
    .donate .row.align-items-center {
        min-height: 0; /* Remove min-height for row on mobile to allow natural flow */
    }
    .donate .donate-form {
        min-height: 600px; /* Adjust min-height for tablets */
    }
    .donate .donate-form iframe {
        min-height: 600px;
    }
}
@media (max-width: 575.98px) { /* Extra small devices (portrait phones, less than 576px) */
     .donate .donate-content .section-header h2 {
        font-size: 1.8em; /* Even smaller for very small screens */
    }
    .donate .donate-text ul li {
        font-size: 1em;
    }
    .payment-details h4 {
        font-size: 1.6em;
    }
    .payment-details .payment-option h5 {
        font-size: 1.2em;
    }
    .donate .donate-form {
        min-height: 500px; /* Adjust min-height for small phones */
    }
    .donate .donate-form iframe {
        min-height: 500px;
    }
}

/*******************************/
/********** Causes CSS *********/
/*******************************/
.causes {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.causes .causes-carousel {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
}

.causes .causes-item {
    margin: 0 15px;
    overflow: hidden;
    background: #f6ebeb;
    max-height: 1000px;
    min-height: 600px;

}

.causes .causes-img {
    overflow: hidden;
}

.causes .causes-img img {
    width: 100%;
    transition: .3s;
}

.causes .causes-item:hover img {
    transform: scale(1.1);
}


.causes .causes-progress {
    width: 100%;
    padding: 10px 10px 10px 10px; 
}

.causes .progress {
    height: 10px;
    border-radius: 0;
    background: #dddddd;
    overflow: visible;
}

/*.causes .progress .progress-bar {
    position: relative;
    width: 0px;
    background: #FDBE33;
    overflow: visible;
    transition: 2s;
}

.causes .progress-bar span {
    position: absolute;
    top: -32px;
    right: 0;
    height: 23px;
    display: inline-block;
    padding: 2px 6px;
    background: #FDBE33;
    color: #20212B;
}

.causes .progress-bar span::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 23px;
    left: calc(50% - 6px);
    border: 6px solid;
    border-color: #FDBE33 transparent transparent transparent;
} */

.causes .progress-text {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
}

.causes .progress-text p {
    margin: 0;
}

.causes .causes-text {
    padding: 0 30px;
}

.causes .causes-text h3 {
    font-size: 22px;
    font-weight: 700;
}

.causes .causes-text p {
    margin: 0;
}

/*.causes .causes-btn {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.causes .causes-btn .btn {
    padding: 10px 0;
    width: 100%;
}

.causes .causes-btn .btn:last-child {
    color: white;
    background: black;
    font-weight: bolder;
}

.causes .causes-btn .btn:last-child:hover {
    color: #ffffff;
}*/

/* Existing .causes .causes-btn styles (from image_cd447b.png) */
.causes .causes-btn {
    margin-top: 25px; /* This margin might need adjustment or removal */
    display: flex;
    justify-content: space-between;
}

.causes .causes-btn .btn {
    padding: 10px 0;
    width: 100%;
}

.causes .causes-btn .btn:last-child {
    color: white;
    background: black;
    font-weight: bolder;
}

.causes .causes-btn .btn:last-child:hover {
    color: #ffffff;
}

/* New/Modified styles for .causes-item and its children */
.causes-item {
    display: flex; /* Make the item a flex container */
    flex-direction: column; /* Stack children vertically */
    height: 100%; /* Ensure it takes full height of its parent (if parent has defined height) */
    /* Add a min-height if you want all blocks to be at least a certain height */
    /* min-height: 400px; /* Example: adjust as needed */
    border: 1px solid #ddd; /* Added for visual clarity of the block boundaries */
    padding: 15px; /* Add some padding inside the item */
    background-color: #fff; /* Ensure background is white for content */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    border-radius: 8px; /* Slightly rounded corners for the block */
}

.causes-item .causes-text {
    flex-grow: 1; /* This makes the text content take up all available space */
    /* This pushes the .causes-btn to the bottom */
}

/* You might want to remove or reduce the margin-top on .causes-btn if it creates too much space */
/* Or adjust it to control the spacing between text and button */
.causes-item .causes-btn {
    margin-top: auto; /* This is key! It pushes the button to the bottom */
}



/*******************************/
/********** 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: row;
    margin: 25px 0;
}

.facts .facts-item i {
    margin-top: 10px;
    font-size: 60px;
    line-height: 60px;
    color: rgb(189, 9, 9);
}

.facts .facts-text {
    padding-left: 20px;
}

.facts .facts-text h3 {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
}

.facts .facts-text h3::after {
    position: absolute;
    top: 0px;
    color: #ffffff;
    font-size: 25px;
    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: -18px;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
/* Team Section General Styling */
/* Core Colors */
/* Core Colors (Define these at the top of your main CSS file or in a :root block) */
/* Define Core Colors */
/* Define Core Colors */
:root {
    --bg-dark: #222222; /* Dark background as per screenshot */
    --card-light: #f5f5f5; /* Light card background as per screenshot */
    --border-light-gold: #e0d0b0; /* Light gold/beige border from screenshot */
    --text-dark: #333333; /* Dark text for content */
    --text-muted: #777777; /* Muted text for descriptions */
    --primary-red: #DC3545; /* Your primary red */
    --primary-black: #212529; /* Your primary black */
    --white: #ffffff;
}

/* Team Section General Styling */
.team-section-screenshot {
    background-color: var(--bg-dark); /* Black background */
    padding: 80px 0;
    /* No font-family specified here to use the website's default font */
}

/* Section Header Styling */
.section-header-screenshot {
    margin-bottom: 60px;
}

.section-subtitle-screenshot {
    color: var(--primary-red); /* Red accent for subtitle */
    font-size: 1.15rem;
    margin-bottom: 1.5rem; /* Space below sub-heading */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title-screenshot {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white); /* White title on dark background */
    line-height: 1.2;
    margin-bottom: 2rem; /* Space below the main heading */
}

/* Ensure columns are centered */
.team-section-screenshot .row.justify-content-center {
    display: flex;
    justify-content: center; /* Centers the columns horizontally */
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
}

/* Individual Profile Card Styling */
.profile-card-screenshot-style {
    background: var(--card-light); /* Light card background */
    border-radius: 8px; /* Subtle rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
    overflow: visible; /* Allow image frame to overflow */
    height: 100%; /* Ensures equal height for cards in a row */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally within the card */
    padding: 0; /* No padding on the card itself */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 30px;
    margin-bottom: 30px;
}

.profile-card-screenshot-style:hover {
    transform: translateY(-5px); /* Gentle lift effect */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Profile Image Frame (for border and spacing around image) */
.profile-image-frame {
    width: 250px; /* Fixed width for image frame */
    height: 250px; /* Fixed height for image frame (square as per screenshot) */
    margin: 0 auto; /* Center horizontally */
    border: 1px solid var(--white); /* White border */
    display: flex; /* To center the image if it's smaller than frame */
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensure image doesn't spill out */
    position: relative; /* For potential hover effects on image itself */
    transition: border-color 0.3s ease;
    /* Position the image frame higher, extending into the dark background */
    transform: translateY(-50px); /* Move up by 50px as per screenshot */
    margin-bottom: -50px; /* Compensate for the upward move so card content starts higher */
    background-color: var(--card-light); /* Ensure background behind image is card color */
}

.profile-card-screenshot-style:hover .profile-image-frame {
    border-color: var(--primary-black); /* Black border on hover */
}

.profile-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the frame */
    object-position: center top; /* Focus on the top part of the person's face */
    display: block;
    transition: transform 0.4s ease;
}

.profile-card-screenshot-style:hover .profile-image-frame img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Profile Text Content (Name, Designation, Description) */
.profile-text-content {
    padding: 0 20px 25px; /* Horizontal padding, and bottom padding */
    flex-grow: 1; /* Allows this area to expand */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align text to top */
    align-items: center; /* Center text horizontally */
    text-align: center;
    /* Adjusted top padding to account for image overlap */
    padding-top: 20px; /* Added padding top to separate from image frame */
    width: 100%; /* Ensure content takes full width within card */
}

.profile-text-content h3 {
    font-size: 1.6rem; /* Name font size */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem; /* Reduced margin */
}

.profile-text-content .profile-designation {
    font-size: 1.1rem; /* Designation font size */
    color: var(--primary-red); /* Red color for designation */
    font-weight: 500;
    margin-bottom: 1rem; /* Space below designation */
}

.profile-text-content .profile-description {
    font-size: 0.95rem; /* Smaller description font size */
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0; /* No bottom margin, as social icons are removed */
    flex-grow: 1; /* Allows description to grow */
}

/* Profile Social Icons - REMOVED from HTML, so this CSS is just for completeness if they were re-added */
.profile-social-icons-screenshot {
    display: none; /* Ensure social icons are hidden */
}

/* "View All Team Members" Button Styling */
.btn-screenshot-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: var(--primary-red); /* Red background for CTA button */
    color: var(--white);
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn-screenshot-primary:hover {
    background: var(--white); /* Changed to white background on hover */
    color: var(--primary-black); /* Changed to black text on hover */
    border-color: var(--white); /* Changed to white border on hover */
    text-decoration: none;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) { /* Medium devices (tablets) */
    .team-section-screenshot {
        padding: 60px 0;
    }
    .section-title-screenshot {
        font-size: 2.4rem;
    }
    .profile-card-screenshot-style {
        padding-bottom: 20px;
    }
    .profile-image-frame {
        width: 200px; /* Adjust photo size for tablets */
        height: 200px;
        margin: 15px auto;
        transform: translateY(-40px); /* Adjust overlap for tablets */
        margin-bottom: -40px;
    }
    .profile-text-content {
        padding: 0 15px;
        padding-top: 15px; /* Adjust top padding */
    }
    .profile-text-content h3 {
        font-size: 1.4rem;
    }
    .profile-text-content .profile-designation {
        font-size: 1rem;
    }
    .profile-text-content .profile-description {
        font-size: 0.9rem;
    }
    .btn-screenshot-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) { /* Small devices (phones) */
    .team-section-screenshot {
        padding: 40px 0;
    }
    .section-title-screenshot {
        font-size: 2rem;
    }
    .col-lg-4.col-md-6 { /* Ensure columns stack properly and center */
        width: 100%;
        max-width: 280px; /* Constrain width for readability on small screens */
        margin-left: auto;
        margin-right: auto;
    }
    .profile-card-screenshot-style {
        padding-bottom: 15px;
    }
    .profile-image-frame {
        width: 180px; /* Further adjust photo height for phones */
        height: 180px;
        margin: 10px auto;
        transform: translateY(-30px); /* Adjust overlap for phones */
        margin-bottom: -30px;
    }
    .profile-text-content {
        padding: 0 10px;
        padding-top: 10px; /* Adjust top padding */
    }
    .profile-text-content h3 {
        font-size: 1.2rem;
    }
    .profile-text-content .profile-designation {
        font-size: 0.9rem;
    }
    .profile-text-content .profile-description {
        font-size: 0.85rem;
    }
    .btn-screenshot-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}



/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.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;
}

.testimonial .testimonial-name {
    padding-left: 15px;
    width: calc(100% - 95px);
}

.testimonial .testimonial-name h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial .testimonial-name p {
    margin: 0;
    font-style: italic;
}

.testimonial .testimonial-text p {
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: #FDBE33;
}

.testimonial .owl-dot.active {
    background: #20212B;
}


/*******************************/
/******** 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 Section General Styling */
.event-section {
    background-color: #f8f8f8; /* Very light grey background for the section */
    padding: 80px 0; /* Vertical padding for spacing */
}

.event-section .section-header {
    margin-bottom: 60px;
}

.event-section .section-subtitle {
    color: rgb(189, 9, 9); /* Red accent color */
    font-size: 1em; /* Adjusted for better hierarchy */
    font-weight: 700; /* Bold for emphasis */
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Slightly more letter spacing */
}

.event-section .section-title {
    font-size: 2.5em; /* Larger, more impactful title */
    font-weight: 800; /* Extra bold */
    color: #000000; /* Black for main title */
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px; /* Space for underline */
}

.event-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px; /* Underline width */
    height: 4px; /* Underline thickness */
    background-color: rgb(189, 9, 9); /* Red underline */
    border-radius: 2px;
}

/* Modern Event Card Styling */
.modern-event-card {
    background: #ffffff;
    border-radius: 15px; /* More pronounced rounded corners */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); /* Soft, subtle shadow */
    overflow: hidden; /* Ensures rounded corners apply to image */
    height: 100%; /* Important for equal height in flex/grid layouts */
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-event-card:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); /* More prominent shadow on hover */
}

/* Card Image Container */
.card-image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Adjusted image height */
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area, cropping as needed */
    transition: transform 0.4s ease; /* Smooth zoom on hover */
}

.modern-event-card:hover .card-image-container img {
    transform: scale(1.08); /* Slight zoom effect on image hover */
}

/* Date Badge Overlay */
.date-badge {
    position: absolute;
    bottom: 20px; /* Slightly more from bottom */
    left: 20px; /* Slightly more from left */
    background: rgb(189, 9, 9); /* Vibrant red accent color for date */
    color: #fff;
    padding: 12px 18px; /* Increased padding */
    border-radius: 12px; /* More rounded */
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); /* Stronger shadow for badge */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px; /* Ensure a minimum width for consistent shape */
}

.date-badge .date-day {
    font-size: 2.8em; /* Larger day number */
    line-height: 1;
}

.date-badge .date-month {
    font-size: 1.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.date-badge .date-year {
    font-size: 0.8em;
    opacity: 0.9;
    margin-top: 3px;
}


/* Card Content Area */
.card-content-area {
    padding: 30px; /* Generous internal padding */
    flex-grow: 1; /* Allows content area to fill remaining vertical space */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes meta details and button to bottom */
}

.card-content-area .card-title {
    font-size: 2em; /* Prominent title */
    font-weight: 700;
    color: #000000; /* Black title */
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content-area .card-tagline {
    font-size: 1.05em; /* Slightly larger tagline */
    font-weight: 600;
    color: #333333; /* Darker grey for tagline */
    margin-bottom: 15px;
    line-height: 1.5;
}

.card-content-area .card-description {
    font-size: 0.95em; /* Standard paragraph size */
    color: #555555; /* Medium grey for description */
    line-height: 1.7;
    margin-bottom: 25px; /* More space before meta details */
    flex-grow: 1; /* Allows description to expand and push other elements down */
}

/* Card Meta Details (Time & Location) */
.card-meta-details {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 15px 30px; /* More space between meta items */
    margin-bottom: 20px; /* Space before button */
    border-top: 1px solid #eeeeee; /* Subtle separator */
    padding-top: 20px; /* More padding above separator */
}

.card-meta-details .meta-item {
    font-size: 0.9em; /* Slightly larger meta text */
    color: #666666; /* Darker grey for meta items */
    white-space: nowrap; /* Prevent line breaks for each meta item */
    display: flex; /* Use flex to align icon and text */
    align-items: center;
}

.card-meta-details .meta-item i {
    color: rgb(189, 9, 9); /* Red accent color for icons */
    margin-right: 10px;
    width: 22px; /* Slightly larger icon area */
    text-align: center;
}

/* Custom Buttons (Primary and Secondary) */
.btn-primary-custom {
    display: inline-flex; /* Use inline-flex to align icon and text and allow it to sit next to other elements if needed */
    align-items: center;
    justify-content: center; /* Center content within the button */
    gap: 8px; /* Space between text and icon */
    padding: 12px 28px; /* Increased padding for a larger button */
    font-size: 1em; /* Slightly larger font size */
    font-weight: 600;
    border-radius: 50px; /* Fully rounded button */
    background: rgb(189, 9, 9); /* Main theme accent color (Red) */
    color: #ffffff;
    border: 2px solid rgb(189, 9, 9);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2); /* Red shadow for button */
}

.btn-primary-custom:hover {
    background: #000000; /* Black on hover */
    border-color: #000000; /* Black border on hover */
    color: #ffffff;
    text-decoration: none; /* Remove underline on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Darker shadow on hover */
}

.btn-secondary-outline-custom {
    padding: 12px 28px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    color: #000000; /* Black text for outline button */
    border: 2px solid #000000; /* Black border */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-outline-custom:hover {
    background: #000000; /* Fill with black on hover */
    color: #ffffff; /* White text on hover */
    border-color: #000000;
    text-decoration: none;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) { /* Medium devices (tablets) */
    .event-section {
        padding: 60px 0;
    }
    .event-section .section-title {
        font-size: 2.2em;
    }
    .modern-event-card {
        margin-bottom: 30px; /* Add margin between stacked cards */
    }
    .card-image-container {
        height: 250px; /* Adjust image height for tablets */
    }
    .card-content-area {
        padding: 25px;
    }
    .card-content-area .card-title {
        font-size: 1.8em;
    }
    .card-content-area .card-tagline {
        font-size: 1em;
    }
    .card-description {
        font-size: 0.95em;
    }
    .card-meta-details {
        flex-direction: column; /* Stack meta items vertically */
        align-items: flex-start;
        gap: 8px; /* Reduce gap when stacked */
    }
    .btn-primary-custom, .btn-secondary-outline-custom {
        width: 100%; /* Make buttons full width */
        text-align: center;
        justify-content: center; /* Center content in button */
    }
}

@media (max-width: 767.98px) { /* Small devices (phones) */
    .event-section {
        padding: 40px 0;
    }
    .event-section .section-title {
        font-size: 1.8em;
        padding-bottom: 10px;
    }
    .event-section .section-title::after {
        width: 60px;
        height: 3px;
    }
    .card-image-container {
        height: 200px; /* Further adjust image height for phones */
    }
    .date-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 15px;
        min-width: 70px;
    }
    .date-badge .date-day {
        font-size: 2.5em;
    }
    .date-badge .date-month {
        font-size: 1em;
    }
    .card-content-area {
        padding: 20px;
    }
    .card-content-area .card-title {
        font-size: 1.6em;
        margin-bottom: 10px;
    }
    .card-content-area .card-tagline {
        font-size: 1em;
        margin-bottom: 12px;
    }
    .card-description {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
    .card-meta-details {
        margin-bottom: 15px;
        padding-top: 15px;
    }
    .card-meta-details .meta-item {
        font-size: 0.9em;
    }
    .card-meta-details .meta-item i {
        margin-right: 8px;
        width: 18px;
    }
    .btn-primary-custom, .btn-secondary-outline-custom {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}




/*******************************/
/*********** Blog CSS **********/
/*******************************/
/* General Blog Section Styling */
/* General Blog Section Styling */
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background-color: #f8f9fa; /* A slightly lighter background for the whole section */
}

/* Article Block (The clickable unit) */
.blog .blog-item {
    margin-bottom: 30px;
    background: #ffffff; /* White background for individual blocks */
    border-radius: 8px; /* Slightly rounded corners for a softer look */
    overflow: hidden; /* Ensures image corners match block corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover transition */
    display: flex; /* Use flexbox to organize image and content */
    flex-direction: column; /* Stack image, then content */
    text-decoration: none; /* Remove default underline from the link */
    color: inherit; /* Inherit text color for consistency */
    height: 550px; /* Fixed height for each blog block for consistency */
}

.blog .blog-item:hover {
    transform: translateY(-8px); /* Lifts the card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* More pronounced shadow on hover */
}

.blog .blog-img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    overflow: hidden; /* Crop images if they don't fit the aspect ratio */
}

.blog .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images cover the area without distortion */
    transition: transform 0.3s ease-in-out; /* Smooth zoom on hover */
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.05); /* Slightly zooms image on block hover */
}

/* New wrapper to control overall content height */
.blog .blog-content-wrapper {
    display: flex; /* Use flexbox for text and actions */
    flex-direction: column;
    justify-content: space-between; /* Pushes button to the bottom */
    padding: 25px; /* Padding for the entire content area */
    flex-grow: 1; /* Allows it to take up remaining space */
}

/* Blog Meta (Author and Date) */
.blog .blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #999999;
    margin-bottom: 15px;
}

.blog .blog-meta i {
    margin-right: 5px;
    color: rgb(189, 9, 9); /* Accent color for icons */
}

.blog .blog-text {
    flex-grow: 1; /* Allows text section to grow */
    margin-bottom: 15px; /* Space between text and button */
}

.blog .blog-text h3 {
    font-size: 20px; /* REDUCED FONT SIZE */
    font-weight: 700;
    margin-bottom: 10px;
    color: #4a4c70; /* Consistent heading color */
    line-height: 1.3;
    display: -webkit-box; /* For multi-line ellipsis */
    -webkit-line-clamp: 2; /* Limit title to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* "View Article" Button Styling */
.blog .blog-actions {
    margin-top: auto; /* Pushes the button to the bottom of the wrapper */
    text-align: right; /* Align button to the right */
}

.blog .view-article-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(212, 49, 49); /* Accent color for button */
    color: black; /* Text color for button */
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer; /* Indicate it's clickable */
    text-decoration: none; /* Ensure no underline */
    border: 1px solid black; /* Border for hover effect */
}

.blog .view-article-btn:hover {
    background-color: black; /* Darker background on hover */
    color: white; /* Accent text on hover */
    border-color: white;
}

.blog .view-article-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog .view-article-btn:hover i {
    transform: translateX(5px); /* Arrow moves on hover */
}

/* Pagination Styling (remains mostly the same) */
.blog .pagination {
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog .pagination .page-link {
    color: #4a4c70;
    border-radius: 5px;
    border-color: #dee2e6;
    margin: 0 5px;
    padding: 8px 15px;
    transition: all 0.3s ease-in-out;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #ffffff;
    background: #FDBE33;
    border-color: #FDBE33;
}

.blog .pagination .disabled .page-link {
    color: #999999;
    background-color: #e9ecef;
    cursor: not-allowed;
}

.blog .blog-text p.summary-text {
    margin: 0;
    font-size: 16px;
    color: #6c757d; /* Softer text color for summary */
    line-height: 1.6;
    height: 153.6px; /* Adjusted for 6 lines (16px font * 1.6 line-height * 6 lines) */
    overflow: hidden; /* Hide overflow text */
    display: -webkit-box; /* For multi-line ellipsis */
    -webkit-line-clamp: 6; /* Limit summary to 6 lines */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis; /* Add ellipsis for truncated text */
}

/* Also, review your responsive adjustments if they override this for smaller screens */
@media (max-width: 767.98px) {
    .blog .blog-text p.summary-text {
        height: auto; /* You might want to keep this for mobile to auto-expand, or adjust as well */
        -webkit-line-clamp: 6; /* Adjust this to match the desired lines on mobile too if not 'auto' */
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .blog .section-header h2 {
        font-size: 38px;
    }
    .blog .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .blog .blog-item {
        height: 460px; /* Adjust height for tablets if needed */
    }
    .blog .blog-img {
        height: 180px; /* Adjust image height for tablets */
    }
    .blog .blog-text h3 {
        font-size: 18px; /* Further reduced for tablets */
    }
    .blog .blog-text p.summary-text {
        height: 70px; /* Adjust summary height for tablets */
    }
}

@media (max-width: 767.98px) {
    .blog .section-header h2 {
        font-size: 30px;
    }
    .blog .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog .blog-item {
        height: auto; /* Allow height to auto-adjust on mobile for better content display */
        min-height: 450px; /* But ensure a minimum height */
    }
    .blog .blog-img {
        height: 220px; /* Larger image on mobile */
    }
    .blog .blog-content-wrapper {
        padding: 20px;
    }
    .blog .blog-text h3 {
        font-size: 18px; /* Adjusted for mobile */
        -webkit-line-clamp: 3; /* Allow more lines for title on mobile */
    }
    .blog .blog-actions {
        text-align: center; /* Center button on mobile */
        margin-top: 20px;
    }
}

/* Add to your existing CSS file */

/* Basic styling for Owl Carousel navigation arrows */
.blog-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4a4c70 !important; /* Your darker color */
    color: #FDBE33 !important; /* Your accent color */
    padding: 10px 15px !important;
    border-radius: 50% !important; /* Make them round */
    font-size: 20px !important;
    line-height: 1;
    transition: all 0.3s ease;
    outline: none; /* Remove outline on focus */
}

.blog-carousel .owl-nav button:hover {
    background: #FDBE33 !important;
    color: #4a4c70 !important;
}

.blog-carousel .owl-nav .owl-prev {
    left: -40px; /* Adjust position */
}

.blog-carousel .owl-nav .owl-next {
    right: -40px; /* Adjust position */
}

/* Hide navigation arrows on smaller screens if desired */
@media (max-width: 767.98px) {
    .blog-carousel .owl-nav {
        display: none;
    }
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
/* Custom styles for the Contact Us page content */
.contact-section {
    position: relative; /* Needed for the pseudo-element overlay */
    padding: 80px 0; /* Increased padding for more space */
    background-color: #f8f9fa; /* Fallback background color */
    background-image: url('../img/indian-flag-image.jpg'); /* Example background image */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden; /* Ensure overlay doesn't spill */
    margin-bottom: 60px; /* Added space below the section */
    margin-top: 60px;
}

/* Overlay for the background image */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity (changed from 70%) */
    z-index: 1;
}

.contact-section .container {
    position: relative; /* Ensure content is above the overlay */
    z-index: 2;
}

.contact-section .contact-info,
.contact-section .google-form-container {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white background for information boxes */
    padding: 50px; /* Increased padding */
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* More prominent shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease; /* Smooth transition on hover, include border */
    border: 3px solid transparent; /* Initial transparent border */
}

.contact-section .contact-info {
    border: 3px solid rgb(189, 9, 9); /* Red border for contact-info */
}

.contact-section .google-form-container {
    border: 3px solid rgb(189, 9, 9); /* Red border for google-form-container */
}


.contact-section .contact-info:hover,
.contact-section .google-form-container:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
    /* No change to border on hover, it remains red */
}


.contact-section .section-title {
    font-size: 38px; /* Slightly larger heading */
    font-weight: 700;
    margin-bottom: 35px; /* More space below title */
    color: #000000; /* Black heading */
    position: relative;
    padding-bottom: 10px; /* Space for underline effect */
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px; /* Underline width */
    height: 4px; /* Underline thickness */
    background-color: rgb(189, 9, 9); /* Red underline */
    border-radius: 2px;
}

.contact-section .contact-info .d-flex {
    align-items: flex-start; /* Align icon to top of text */
    margin-bottom: 30px; /* More space between items */
}

.contact-section .contact-info .d-flex:last-child {
    margin-bottom: 0;
}

.contact-section .contact-info i {
    font-size: 3rem; /* Larger icons */
    color: rgb(189, 9, 9); /* Red icons */
    margin-right: 25px; /* More space to the right of icon */
    width: 60px; /* Fixed width for icon alignment */
    text-align: center;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.contact-section .contact-info h5 {
    font-size: 22px; /* Slightly larger sub-headings */
    font-weight: 600;
    color: #000000; /* Black sub-headings */
    margin-bottom: 8px; /* More space below sub-heading */
}

.contact-section .contact-info p {
    font-size: 17px; /* Slightly larger text */
    color: #444444; /* Darker grey text for better readability */
    margin-bottom: 0;
}

.contact-section .contact-info a {
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section .contact-info a:hover {
    color: rgb(189, 9, 9); /* Red on hover for links */
}

.contact-section .google-form-container iframe {
    border: 1px solid #cccccc; /* Slightly darker border for the iframe */
    border-radius: 8px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.05); /* Inner shadow for iframe */
}

.contact-section .google-form-container p.text-muted {
    font-size: 16px; /* Slightly larger descriptive text */
    color: #666666; /* Consistent dark grey */
    margin-top: 20px; /* More space above this text */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-section .contact-info,
    .contact-section .google-form-container {
        padding: 35px; /* Adjusted padding */
    }
    .contact-section .section-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    .contact-section .section-title::after {
        width: 50px;
        height: 3px;
    }
    .contact-section .contact-info i {
        font-size: 2.2rem;
        margin-right: 18px;
        width: 45px;
    }
    .contact-section .contact-info h5 {
        font-size: 19px;
    }
    .contact-section .contact-info p {
        font-size: 15px;
    }
    .contact-section .google-form-container iframe {
        height: 600px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 40px 0;
    }
    .contact-section .contact-info,
    .contact-section .google-form-container {
        padding: 25px;
    }
    .contact-section .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .contact-section .section-title::after {
        width: 40px;
        height: 2px;
    }
    .contact-section .contact-info i {
        font-size: 1.8rem;
        margin-right: 15px;
        width: 35px;
    }
    .contact-section .contact-info h5 {
        font-size: 17px;
    }
    .contact-section .contact-info p {
        font-size: 14px;
    }
    .contact-section .google-form-container iframe {
        height: 500px; /* Further adjust height for mobile */
    }
}



/*******************************/
/******* 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 **********/
/*******************************/
/* Color Variables for easy theme management */
/* Color Variables based on the new design */
/* Color Variables based on the new design */
/* Footer specific styles with Black, Red, and White theme */
.footer {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 60px 0 30px 0;
    font-family: 'Quicksand', sans-serif;
}

.footer-top {
    padding-bottom: 30px;
}

.footer-logo {
    font-family: 'Georgia', serif !important;
    font-size: 28px;
    font-weight: 700;
    color: rgb(189, 9, 9); /* Red for logo/accent */
    margin-bottom: 20px;
}

.footer-about p {
    color: #cccccc; /* Slightly lighter white for body text */
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-cta-btn {
    background-color: rgb(189, 9, 9); /* Red button background */
    color: #ffffff; /* White button text */
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.footer-cta-btn:hover {
    background-color: #cc0000; /* Darker red on hover */
    color: #ffffff;
}

.footer-link h3, .footer-contact h3 {
    font-size: 22px;
    font-weight: 600;
    color: rgb(189, 9, 9); /* Red for section headings */
    margin-bottom: 25px;
    position: relative;
}


.footer-link a, .footer-contact p {
    display: block;
    color: #ffffff; /* White for links and contact text */
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: rgb(189, 9, 9); /* Red on link hover */
}

.footer-contact p i {
    margin-right: 10px;
    color: rgb(189, 9, 9); /* Red for contact icons */
}

.footer-contact p a{
    color: #ffffff;
}

.footer-contact p a:hover{
    color: rgb(242, 83, 83);
}

.footer-social .btn-social {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1); /* Slightly transparent white for social buttons */
    border-radius: 50%;
    margin-right: 8px;
    color: #ffffff; /* White icons */
    transition: background-color 0.3s ease;
}

.footer-social .btn-social:hover {
    background: rgb(189, 9, 9); /* Red background on social button hover */
    color: #ffffff; /* White icon on hover */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Light white border */
    padding-top: 20px;
    margin-top: 30px;
    font-size: 14px;
    color: #cccccc; /* Slightly lighter white for copyright text */
}

.footer-bottom a {
    color: rgb(189, 9, 9); /* Red for links in copyright */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}