:root {
    --background-color: #ffffff;
    --default-color: black;
    --heading-color: #030361;
    --accent-color: #03a7d3;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main-container{

    margin-top: 100px!important;
    padding: 0 200px ;
}
.boby {
    font-family: "Montserrat","poppins", sans-serif;
    background-color: var(--background-color);
}

.main-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.image-container img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.donation-container {
    flex: 1;
    margin-left: 40px;
    padding: 20px;
    background-color: var(--surface-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    animation: fadeIn 1.2s ease;
}

h1, h2 {
    text-align: center;
    color: var(--heading-color);
    font-family: "Montserrat";
}

.donation-options {
    font-size: 25px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

label {
    font-weight: bold;
    color: var(--default-color);
    margin-bottom: 5px;
}

.other-amount-container {
    grid-column: span 0;
    display: flex;
    justify-content: center;
    flex-direction: row;
    text-align: center !important;
    
}
.other-amount-container label{
 width: 100%;
 padding-top: 10px;
}

input[type="text"], input[type="email"], input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    transition: box-shadow 0.3s ease;
}
.other-amount-container input{
    box-sizing: border-box;
    max-width: 300px;
}


input:focus {
    box-shadow: 0 0 10px var(--accent-color);
}

.donate-button {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.donate-button:hover {
    
    background-color:#03a7d3;
    color: white;
    font-weight: bold;
}
#payment-method {
    padding: 10px;  /* Add padding inside the select box */
    border: 2px solid #03a7d3;  /* Set border color to #03a7d3 */
    border-radius: 5px;  /* Optional: Add some rounding to the corners */
    outline: none;  /* Remove the default outline */
    background-color: white;
    color: black;
    font-size: 16px;
}

/* Hover effect on the options */
#payment-method option:hover {
    background-color: #03a7d3;  /* Set the hover color for options */
    color: white;  /* Make the text white on hover */
}
@media (max-width: 768px) {
   
    .main-container {
        padding: 0 50px;
        overflow: hidden;
        display:flex;
        flex-direction: column;
        align-items: center;
    }

    .donation-container {
        margin-left: 0;
        margin-top: 20px;
    }

    input[type="text"], input[type="email"], input[type="tel"], .donate-button {
        font-size: 14px;
        padding: 10px;
    }
}
@media (max-width: 368px) {
    .main-container{
        padding :2px;
        overflow: hidden;
        display: flex;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-heading {
    margin-top: 30px;
    animation: fadeInHeading 1.5s ease-out;
}

@keyframes fadeInHeading {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-form {
    animation: slideInForm 1.5s ease-out;
}

@keyframes slideInForm {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.other-amount-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.other-amount-image {
    margin-bottom: 10px;
    max-width: 350px;
}

.payment-options-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.payment-options-row label {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    margin-right: 20px;
}
.heading span{
 color:#03556b ;
 margin-bottom: 25px;
}

.donations-container {
    margin: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.donation-card {
    margin: 5px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.donation-card h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.donation-card p {
    margin-bottom: 5px;
    color: #666;
}

.amount {
    color: #030361;
    font-weight: bold;
}

.donation-button {
    background-color: #03a7d3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.donation-button:hover {
    background-color: #03a7d3;
}
.donation-card {
    margin: 5px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for scaling and shadow */
}

.donation-card:hover {
    transform: scale(1.05); /* Slightly scale up the card on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Increase shadow for emphasis */
    background-color: #f0f8ff; /* Change background color slightly */
}



/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-number, .prev, .next {
    background-color: #fff;
    border: 1px solid #03a7d3;
    color: #03a7d3;
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}
@media (max-width: 500px) {
    .page-number, .prev, .next {
        padding: 5px 10px;
        font-size: 0.9em;
    }
}


.page-number.active, .prev:hover, .next:hover, .page-number:hover {
    background-color: #03a7d3;
    color: white;
}

.page-number.active {
    background-color: #03a7d3;
    color: white;
}

@media (max-width: 768px) {
    .body{
        overflow: hidden;
        display: flex;
    }
    .donations-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .donations-container {
        grid-template-columns: 1fr;
    }

    .page-number, .prev, .next {
        padding: 5px 10px;
        font-size: 0.9em;
    }
}
/* Adjustments for larger desktops */
@media (max-width: 1200px) {
    .main-container {
        padding: 0 100px;
    }
}

/* Adjustments for tablets and medium devices */
@media (max-width: 1024px) {

    .main-container {
        padding: 0 50px;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .donation-container {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }

    .donation-options {
        grid-template-columns: repeat(1, 1fr);
    }

    input[type="text"], input[type="email"], input[type="tel"], .donate-button {
        font-size: 14px;
        padding: 10px;
    }
}

/* Adjustments for smaller tablets and landscape phones */
@media (max-width: 768px) {
  .donations-container {
        padding: 0 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .payment-options-row {
        flex-direction: column;
    }

    .donate-button {
        font-size: 14px;
        padding: 8px;
    }
}

/* Adjustments for mobile devices */
@media (max-width: 500px) {
    h1 ,h2{
        font-size: 25px;
    }

    .donations-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 10px;
    }

    .donation-options {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .donate-button {
        font-size: 14px;
        padding: 8px;
    }

    .pagination {
        display: flex;
    }

    .page-number, .prev, .next {
        font-size: 12px;
        padding: 5px 10px;
    }
    .payment-options-row{
        margin-bottom: 10px;
    }
    .other-amount-image{
        width: 70px;
    }
}
.info_section .contact_link_box a:nth-child(2) .fa-phone {
    transform: rotate(10deg);
    display: inline-block; /* Ensures the transform works properly */
  }
body .info_section .info_contact .contact_link_box a span{
    margin-left: 10px !important;
   
}
 .slider {
         
            width: 80%;
            margin: 20px auto;
            text-align: center;
        }
        .donor-slide {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 10px;
        }
        .slick-prev:before, .slick-next:before {
            color: #000;  /* Customize the slider arrows */
        }.donor-slide:hover {
            background: #03a7d3;
            transform: scale(1.05);  /* Slightly enlarge the card on hover */
        }
        
        /* Customize the arrows */
        .slick-prev:before, .slick-next:before {
            color: #000;  /* Customize the slider arrows */
        }
/* Container for the slider section */
#donorSlider {
    margin-top: 60px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #f8f9fa;
    position: relative;
}

/* For large screens - laptops/desktops */
.slider {
    margin: 0 auto;
    max-width: 80%;
    padding: 20px;
}

/* Styling for each donor card */
.donor-slide {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    text-align: left;
    transition: transform 0.3s ease;
    min-height: 300px;  /* Ensure all slides have a consistent height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover effect for the donor cards */
.donor-slide:hover {
    transform: scale(1.05);
}

/* Styling for slick arrows */
.slick-prev, .slick-next {
    z-index: 1;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    color: #000;
}

/* Adjust layout for tablet screens */
@media (max-width: 992px) {
    .slider {
        max-width: 95%;
    }

    .donor-slide {
        min-height: 250px;
    }
}

/* Adjust layout for mobile screens */
@media (max-width: 768px) {
    .slider {
        max-width: 100%;
    }

    .slick-prev, .slick-next {
        width: 30px;
        height: 30px;
    }

    .donor-slide {
        min-height: 220px;
        width: 100%;  /* Make each card take full width on mobile */
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .donor-slide {
        min-height: 180px;
    }

    .slick-prev, .slick-next {
        width: 25px;
        height: 25px;
    }

    .slider {
        max-width: 100%;
    }
}
/* Style for the category label */
.category label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

/* Style for the category select box */
.category select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #03a7d3; /* #01af6a is your preferred color */
    background-color: #fff;
    font-size: 18px;
    color: #666565;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: border-color 0.3s ease;
}

/* Hover and focus state for select input */
.category select:focus {
    border-color: #03a7d3; /* Darker border on focus */
}

/* Ensure the entire input is responsive on mobile */
@media (max-width: 768px) {
    .category select {
        font-size: 16px;
        padding: 12px;
    }
}
.header_section {
    background: #fff;
    border-bottom: 2px solid #03a7d3;
}