
    
/* Custom Navbar Styling */
.navbar {
    background-color: #B22222; /* Deep Blood Red Color */
    padding: 20px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for a professional look */
}
/* Default logo size for larger screens (desktop, laptop) */
.logo-img {
    width: 80px;
    height: auto; /* Maintain aspect ratio */
}

/* For tablet devices */
@media (max-width: 991px) {
    .logo-img {
        width: 60px;
    }
}

/* For mobile devices */
@media (max-width: 575px) {
    .d-flex {
        flex-direction:column; /* Stack vertically on mobile */
        align-items: center; /* Center align */
    }
    
    .logo-img {
        width: 45px;
        /* margin-top: -10px; */
    }
    .navbar-nav .nav-link{
        margin: 5px;
    }
    .navbar-brand{
        /* margin-top: -15px; */
        /* margin-t: ; */
        /* margin-top: 5px; */
        margin-bottom: 30px;
        letter-spacing: 1px;
        font-weight: normal;
        font-size: 1rem !important;
    }
    
}

.navbar-brand {
    color: white;
    font-size: 1.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: white;
    margin-right: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
    display: inline-block;
    
}

.navbar-nav .nav-link:hover {
    color: #FF6347 !important;
    transform: translateY(-3px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: #FF6347;
    bottom: -5px;
    left: 0;
    width: 0;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-donate {
    background-color: rgb(255, 255, 255) !important; /* White background */
    color: #B22222 !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    border: 2px solid #B22222 !important;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out !important;
}

.btn-donate:hover {
    background-color: #FF6347 !important;
    color: white !important;
    border-color: #FF6347 !important;
}



/* Custom footer design */
/* ----------------------------------------------------------------- */
.custom-footer {
    background-color:darkred; /* Blood red theme */
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.custom-footer h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
}
/* ------------------------------------------------ */
/* donation-page */
/* Container Styling */
.donation-amount-form-container {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Label Styling */
.donation-amount-form-label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333333;
    display: block;
}

/* Input Field Styling */
.donation-amount-form-input-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.donation-amount-form-input-field:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Button Styling */
.donation-amount-form-button-group {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.donation-amount-form-close-button,
.donation-amount-form-submit-button {
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.donation-amount-form-close-button {
    background-color: #e0e0e0;
    color: #333333;
}

.donation-amount-form-close-button:hover {
    background-color: #cccccc;
}

.donation-amount-form-submit-button {
    background-color: #007bff;
    color: #ffffff;
    width: 25%;
    padding: 10px;
    text-transform: uppercase;

}

.donation-amount-form-submit-button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-amount-form-container {
        padding: 20px;
    }
    
    .donation-amount-form-submit-button {
        width: 100%;
        text-align: center;
    }
}




.payment-transaction-section {
    margin: 20px;
}
.table-responsive {
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ---------------------------------------------- */
/* Line under headings */
.custom-footer h5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #FF6347; /* Tomato color */
    bottom: 0;
    left: 0;
}

/* About Text Styling */
.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
    color: white;
}

/* Quick Links */
.footer-links a {
    color: white;
    display: inline-block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF6347;
    text-decoration: underline;
}

/* Contact Info Styling */
.footer-contact a {
    color: #FF6347;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}
.follow-us {
    text-align: right; /* Align heading to the right */
}
.social-icon {
    text-decoration: none;
    display:inline-flex;
    justify-content: flex-end;
    align-items: center;
    /* text-align: center; */
    height: 50px; /* Circle size */
    width: 50px;  /* Circle size */
    border-radius: 50%;  /* Makes it circular */
    padding: 10px;
    margin-right: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
    background-color: white; /* White background */
}

.social-icon i {
    font-size: 1.8rem;
}

/* Facebook Icon */
.social-icon .fa-facebook {
    color: #3b5998; /* Facebook's original blue */
}
.social-icon .fa-facebook:hover{
    color: #FF6347;
}
/* Instagram Icon */
.social-icon .fa-instagram {
    color: #E1306C; /* Instagram's original gradient color */
}
.social-icon .fa-instagram:hover{
    color: #FF6347;
}
/* YouTube Icon */
.social-icon .fa-youtube {
    color: #FF0000; /* YouTube's original red */
}
.social-icon .fa-youtube:hover {
    color: #FF6347;
}
/* Hover effect */
.social-icon:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

.social-icon:hover {
    color: #FF6347;
    transform: scale(1.1);
}


/* Copyright */
.footer-copyright {
    margin-top: 10px;
    font-size: 1.0rem;
    font-weight: bold;
    color: #B22222;
    padding: 3px 3px;
    background-color: #fff;
    background: linear-gradient(#FF6347,);
    margin-bottom: -15px;
}
/* .footer-copyright-topbtn{
    display: flex;
   gap: 15px;
} */
/* Subtle Animation for Footer Appearance */
.custom-footer {
    animation: fadeInFooter 1.2s ease-in-out;
}
.custom-btn{
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #FF6347; /* Tomato color */
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
}

.custom-btn:hover {
    background-color: #B22222; /* Darker red on hover */
}

@keyframes fadeInFooter {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-icon-heading{
    color: white;
    font-size: 1.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.frequently-hedding{
    /* color: white; */
    font-size: 1.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Responsive Footer */
@media (min-width: 320px) ,(max-width: 766px) {
    .footer-about, .footer-links, .footer-contact ,.footer-icons {
        /* text-align: center; */
    }

    .social-icons {
        /* text-align: center; */
        margin-top: 5px;
    }
    .footer-icon-heading{
        font-size: 1.0rem !important;
        font-weight:normal !important;
        text-align: center;
        letter-spacing: 2px;
    }
    .frequently-hedding{
        text-align: center;
    }
    
}
.newsletter-signup {
    text-align: center;
    padding: 20px;
    background-color: darkred; /* Your footer background */
 }
 
 .newsletter-title {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
 }
 
 .newsletter-form {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    
 }
 
 .newsletter-input {
    padding: 12px 20px;
    font-size: 16px;
    /* border-radius: 20px; */
    border: 2px solid #fff;
    width: 300px;
    outline: none;
    background-color: transparent;
    color: white;
    transition: all 0.3s ease;
 }
 
 .newsletter-input::placeholder {
    color: #ddd;
 }
 
 .newsletter-input:focus {
    border-color: #ffa500;
 }
 
 .newsletter-button {
    padding: 12px 20px;
    margin-left: 10px;
    background-color: transparent;
    border: 2px solid #fff;
    /* width: 100px; */
    color: white;


    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
 }
 
 .newsletter-button:hover {
    background-color: #ffcc00;
    color: darkred;
    border: none;
 }
 
 .newsletter-button:active {
    transform: scale(0.98);
 }
 
/* @media(max-width: 768px) {
    .footer-about, .footer-links, .footer-contact ,.footer-icons {
        text-align: center;
    }

    .social-icons {
        text-align: start;
        align-items: center;
        justify-items: center;
    }
} */

/* index-page css */
/* -------------------------------------------------------------------------- */
.banner-sections {
    position: relative;
    background-image: url(images/organ-donation-4301527_1920.jpg);
    background-repeat: no-repeat;
    background-size: cover; /* Image covers the entire area */
    background-position: center; /* Centers the image */
    height: 100vh; /* Full height */
    width: 100%; /* Full width */
    margin: 0; /* Remove default margin */
    overflow: hidden; /* Hide overflow */
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.111); /* Black with 50% opacity */
    z-index: 1;
}
.donate-btn {
    background: linear-gradient(90deg,#ff0000, #ff4d4d);

    border-radius: 3px;
    border: none;
    color: white;
    padding: 25px 40px;
    font-size: 22px;
    font-weight: bold;
    /* border-radius: 50px; */
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
    position: relative;
    left: 159px;
    bottom: 250px; /* ব্যানারের শেষ থেকে সামান্য উপরে */
}

.donate-btn:hover {
    background: linear-gradient(90deg, #ff0000d9, #ff0000d7);

}
.banner-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: 20px; /* বাটনকে বাম পাশে সরাতে */
}
/* Responsive adjustments for all mobile sizes */
@media (max-width: 768px) {
    .banner-sections {
        height: 70vh; /* Reduced height for medium devices */
    }
}

@media (min-width: 320px) and (max-width: 576px) {
    .banner-sections {
        margin-top: -54px !important;
        padding: 0;
        background-size: contain !important; 
        height: 50vh; /* Further reduced height for small devices */
    }
    .donate-btn{
        left: 3px;
        bottom:80px;
        padding: 10px 15px;
        font-size: 12px;
        border-radius: 2px;
    }
    
    .overlay {
        position: absolute; /* Stay absolute */
        height: 100vh; /* Ensure it covers the full height */
        width: 100vw; /* Ensure it covers the full width */
        background-color: rgba(0, 0, 0, 0); /* Optional: Adjust opacity if needed */
    }
    
}

/* Additional adjustments for larger mobile screens */
@media (min-width: 577px) and (max-width: 768px) {
    .banner-sections {
        height: 60vh; /* Height for medium devices */
    }
    .donate-btn{
        left: 29px;
        bottom: 100px;
        padding: 15px 20px;
        font-size: 16px;
    }
}


/* Notification Section */
.padding-large {
    padding: 2rem;
}

.margin-bottom-large {
    margin-bottom: 1.5rem;
}

.text-align-center {
    text-align: center;
}

.navbar-title {
    font-size: 2rem;
    opacity: 0.75;
}

.row-notifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

/* Notification Card Styling */
.notification-card {
    border: 1px solid #ddd;
    border-radius: 15px;
    background-color:#f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    /* color: white; */
    font-weight: bold;
    flex-basis: 20%; /* 4 cards in one row for large screens */
}

.notification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive behavior for medium and small devices */
@media (max-width: 992px) {
    .notification-card {
        flex-basis: 45%; /* 2 cards per row on tablets */
    }
}
@media (min-width: 993px) {
    .notification-card {
      
        /* gap: 5px; */
        flex-basis: 24%; /* 2 cards per row on tablets */
    }
}
@media (max-width: 768px) {
    .notification-card {
        flex-basis: 100%; /* 1 card per row on small devices */
    }
}

/* Button Styles */
.centered-button-wrapper {
    display: flex;
    justify-content: center;
}

.button-text-uppercase {
    text-transform: uppercase;
}

.padding-x-large {
    padding-left: 2rem;
    padding-right: 2rem;
}

.padding-y-medium {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.rounded-button {
    border-radius: 50px;
    background-color: #17a2b8;
    color: white;
}
.rounded-button:hover{
   
    border: none;
    color: white;
    background-color: #17a2b8;
}
.btn-outline-alert {
    /* border: 2px solid red; */

}

.text-highlight {
    color: #17a2b8;
}

.margin-top-medium {
    margin-top: 1.5rem;
}

  

/*  */

/* blood donatin process section */
/* --------------------------------------- */

.video-wrapper {
    position: relative;
    padding-bottom: 36.25%; 
   /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Limit video height on large screens */
@media (min-width: 992px) {
    .video-wrapper {
        max-height: 400px !; /* Adjust this value as needed */
    }
}
/* Donation History css */
/* --------------------------------------- */

.cards {
    margin: 25px 0; /* Space between cards */
}

/* Feedback section */
/* --------------------------------------------------- */


#feedbackSection {
    margin-left: 15px;  /* Left margin */
    margin-right: 15px; /* Right margin */
}
.custom-user-feedback-large-interactive-card-wrapper-styled-dimension {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    padding: 20px;
    background-color:whitesmoke;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    /* color: white !important; */
    height:100%; /* Increased height */
}

.custom-user-feedback-large-interactive-card-wrapper-styled-dimension:hover {
    transform: translateY(-5px);
}

.custom-user-feedback-content-layout-with-extra-space {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%; /* Fill height */
}



  /* Blog section */
  /* ------------------------------------ */
  .blog-cardblock {
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.082);
    transition: transform 0.3s ease;
    background-color: whitesmoke;
}

.blog-cardblock:hover {
    transform: scale(1.05);
}

.blog-cardbody {
    padding: 0; /* Remove padding from card body */
}

.blog-imageimg {
    width: 100%;
    height: 250px !important; /* Set a fixed height */
     /* Maintain aspect ratio and cover the container */
    margin: 0; /* Remove margin */
}

.blog-textblock {
    padding: 15px; /* Add padding around text */
}

.blog-cardhead {
    font-size: 1.25rem;
    margin-top: 10px; /* Reduced margin */
}

.blog-contentp {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px; /* Add margin below content */
}

.blog-buttonbtn {
    margin-top: 10px;
}

.centered-button-wrapper {
    text-align: center; /* Center the "View More" button */
}

@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .blog-imageimg {
        width: 100%;
        height:50% !important; /* Set a fixed height */
         /* Maintain aspect ratio and cover the container */
        margin: 0; /* Remove margin */
    }
    
}

@media (max-width:576px) {
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .blog-imageimg {
        width: 100%;
        height:100% !important; /* Set a fixed height */
         /* Maintain aspect ratio and cover the container */
        margin: 0; /* Remove margin */
    }
}

  
 /* Education resuorces  */
 /*-------------------------------------  */
 .resource-card {
    text-align: center;
    margin: 15px 0; /* Space between resource cards */
    padding: 20px;
    border: 1px solid #dee2e6; /* Border for cards */
    border-radius: 5px; /* Rounded corners */
    transition: box-shadow 0.3s; /* Smooth shadow effect */
}

.resource-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}

.resource-link {
    display: inline-block;
    padding:15px 20px ;
    width: 150px;
    height: 50px;
    margin-top: 5px;
    font-weight: bold;
    background-color:darksalmon;
    padding-bottom: 10px;
    color:white; /* Bootstrap link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth color transition */
}

.resource-link:hover {
    color:black; /* Darker link color on hover */
}

/* Faq section  */
/* ----------------------------------- */

      

        .accordion-button {
            padding-top: 10px;
            font-weight: bold; /* Bold text for questions */
        }

/*------------------------------------------------------ */
/* BLOOD-DONATION-PAGE  */

/* Notification section */

.notification-section {
    background-color: #f8f9fa !important;
    padding: 10px;
}

.notification-item {
    background-color: #f8f9fa;
    border: 2px solid #ddd;
    padding: 20px;
    margin: 5px;
    
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* text-align: center; */
    padding-left: 20px;
    font-size: 18px;
}
.blood-request-section-title{
    color: white;
    font-size: 1.7rem;
    font-weight: bold;
    text-transform:uppercase;
    letter-spacing: 2px;
}
/* Responsive styling for notifications */
@media (min-width: 576px) {
    .notification-item {
        width: calc(100% / 2 - 20px); /* Two columns on small devices */
        display: inline-block;
        vertical-align: top;
        min-height:50vh;
        max-height: 50vh;

        gap: 10px;
    }
}

@media (min-width: 768px) {
    .notification-item {
        width: calc(100% / 2 - 20px); /* Three columns on medium and larger devices */
        display: inline-block;
        vertical-align: top;
        min-height:350px;
        max-height: 350px;
    }
}
@media (min-width: 769px) {
    .notification-item {
        width: calc(100% / 3 - 20px); /* Three columns on medium and larger devices */
        display: inline-block;
        vertical-align: top;
        min-height: 280px;
        max-height: 280px;
    }
}
/* ----------------------------------------------------- */
/* Event section */
/* Full-width section */
#events-section {
    width: 100%;
    padding: 20px;
    background-color:antiquewhite;
  }
  
  #events-list {
    display: flex;
    flex-wrap: wrap;
    /* gap: 30px; */
  }
  
  .event-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    width: 100%;    
    height: 100%;
  }
  
  .event-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .event-details {
    margin-top: 10px;
  }
  
  .event-details p {
    margin: 5px 0;
  }
  
  .event-card h3 {
    font-size: 1.5rem;
  }
  
  /* Responsive grid layout */
  @media (min-width: 992px) {
    .col-lg-3 {
      width: 25%;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .col-md-6 {
      width: 50%;
    }
  }
  
  @media (max-width: 767px) {
    .col-sm-12 {
      width: 100%;
    }
  }
  /* donation history section */
  /* ------------------------------------ */

.history-section {
    padding: 20px;
}
.history-card {
    margin-bottom: 15px;
}
.btn-download {
    background:linear-gradient(white,red);
    border-radius: 0% !important;
    color: #3b5998 !important;
    font-weight: bold !important;
    color: white;
    text-decoration: none;
}
.btn-download:hover {
    background:linear-gradient(darkred,red) !important;
    color: white !important;

}

/* Total 8 Blood Requests */
/* ------------------------------------------- */







  /*----------------------------------------------------------------------  */
.btn-custom {
    background-color:#ff4d4d !important;
    color: white !important;
    flex: 1;
    font-weight: bold !important;
    border-radius: 0 !important;
    margin: 7px;
    /* border-radius; */
  /* Padding for buttons */
     /* Remove border radius */
    font-size:1.5rem; /* Increase font size for better visibility */
    transition: background-color 0.3s; /* Smooth background color transition */
}

.btn-custom:hover {

    background-color:#007bff !important;
    color: black !important;
    font-weight: bold !important;
    opacity: 0.9; /* Slightly dim button on hover */
}

@media (max-width: 767.98px) { /* For mobile devices */
    .btn-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; /* Space between buttons */
    }
    .btn-custom {
       
        flex: 0 0 calc(25% - 10px); /* Two buttons per row with some space */
        margin-bottom: 10px; /* Add margin between rows */
    }
}

@media (min-width: 768px) { /* For tablets and larger devices */
    .btn-container {
        display: flex;
        flex-wrap: wrap;
        /* justify-content: space-between; */
        /* align-items: center; */
        margin-left: 50px;
    }
    .btn-custom {
        flex: 0 0 calc(25% - 10px);
        margin-bottom: 10px;
       
    }
    
    
}
@media (min-width: 993px) { /* For tablets and larger devices */
    .btn-container {
       
        display: flex;
        flex-wrap: wrap;
    }
    .btn-custom {
        flex:1;
       
       
    }
}
/*---------- Custom About Css--------- */
/* --------------------------------------------------------------------- */
.about-headline{
   
        color:rgba(0, 0, 0, 0.881);
        font-size: 1.7rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 2px;
        opacity: 90%;
    
}
.about-section{
    position: relative;
    background-image: url(./images/about.webp);
    background-repeat: no-repeat;
    background-size: cover; /* Image covers the entire area */
    background-position: center; /* Centers the image */
    height: 60vh; /* Full height */
    width: 100%; /* Full width */
    margin: 0; /* Remove default margin */
    overflow: hidden; /* Hide overflow */
}

.section-donation-process {
    padding: 50px 0;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}



.child-div1 {
    display: flex;
    flex-direction: column; /* Vertically align items */
}

.child-div1 p {
    margin: 0; /* Remove default margin */
    line-height: 1.1; /* Adjust line height for better readability */
    text-align: justify; /* Align text to both left and right */
}

/* Responsive styles */
@media (max-width: 768px) { /* Mobile and tablet styles */
    .child-div1 p {
        
        font-size: 14px; /* Adjust font size for mobile */
    }
    #p2{
        display: none;
    }
}
@media (max-width: 576px) { /* Mobile and tablet styles */
    .child-div1 p {
        
        font-size: 14px; /* Adjust font size for mobile */
    }
    #p2{
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) { /* Laptop styles */
    .child-div1 p {
        font-size: 16px; /* Adjust font size for laptops */
    }
}

@media (min-width: 1025px) { /* Desktop styles */
    .child-div1 p {
        font-size: 18px; /* Adjust font size for desktops */
    }
}


/* Responsive design */
@media (max-width: 768px) {
    .section-donation-process {
        padding: 20px 0;
    }
    .list-group-item {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}
.bg-darkred {
    background-color:rgba(139, 0, 0, 0.653); /* Dark Red */
    padding: 50px 0; /* Padding for top and bottom */
    color:black; /* White text for contrast */
}

.child-div1 p {
    color: black;
    font-size: 1.1rem; /* Slightly larger text */
    line-height: 1.5; /* Spacing between lines */
    margin-bottom: 20px; /* Spacing between paragraphs */
}

.card {
    overflow: hidden; /* To maintain uniform height */
    border: none; /* Remove card border */
}

.card-img-top {
  
    width: 100%;
    height: 250px; /* Set a fixed height */
    object-fit: cover; /* Ensure images cover the card area */
    transition: transform 0.2s; /* Smooth hover effect */
}

.card-img-top:hover {
    transform: scale(1.05); /* Scale image on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-img-top {
        height: 250px; /* Adjust height for smaller screens */
    }
}
@media (max-width: 768px) {
    .card-img-top {
        height: 250px; /* Adjust height for smaller screens */
    }
}

/* Section Styles */
.section-vision {
    background: linear-gradient(45deg, #cc000091, #cc00009d); /* Red gradient background */
    padding: 50px 0; /* Padding around the section */
    color: white;
}



.child-div1 {
    padding: 20px;
}

.child-div1 p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.6;
}



/* Background color for child-div2 (instead of image) */


/* Responsive adjustments */
@media (max-width: 768px) { /* For mobile */
    .child-div1, .child-div2 {
        margin-bottom: 20px;
    }
    .section-vision h2 {
        font-size: 2rem;
    }
    .vision-btn {
        padding: 8px 16px;
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) { /* For tablets */
    .section-vision h2 {
        font-size: 2.2rem;
    }
    .vision-btn {
        padding: 9px 18px;
        font-size: 1.1rem;
    }
}

@media (min-width: 1025px) { /* For laptops and desktops */
    .section-vision h2 {
        font-size: 2.5rem;
    }
    .vision-btn {
        padding: 10px 20px;
        font-size: 1.2rem;
    }
}

/* Animation for fade-in effect */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


.custom-feedback-card {
    padding-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 50px;
    margin: 0 auto;
    height: 100% !important;
    background-color: #f8f9fa;
    transition: box-shadow 0.3s ease;
    width: 90%; /* Make card width responsive */
    max-width: 600px; /* Maximum width for larger screens */
}

.custom-feedback-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


.custom-user-feedback-date-display-adjust {
    font-size: 0.8em;
    color: #6c757d; /* Gray color for date */
}

/* Responsive styles */
@media (max-width: 768px) {
    .custom-feedback-card {
        padding: 45px;

    }
}

@media (max-width: 576px) {
    .custom-feedback-card {
        padding: 20px;
        padding-top: 30px;
        padding-left: 20px;
        width: 100%;
        height:100%;
        margin: 0% !important;
    }
}

/* Section Styles */
.gift-section {
    background-color:rgba(255, 0, 0, 0.703); /* Same light blue background */
    padding: 50px 0; /* Spacing around the section */
    color: white;
}

.gift-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: white; /* Text color for the heading */
}

 .about-donate-btn {
    font-weight: bold !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.about-donate-btn:hover {
    background-color:white !important;
    color: black !important;;
    border: 2px solid #5bc4dc !important;
    font-weight: bold;
} 

@media (max-width: 576px) {
   #about-donate-btn{
        padding: 10px 15px !important;
        font-size: 1.0rem;
        font-weight: normal !important;
   }
   #subscribe-btn{
    padding: 10px 14px !important;
    font-size: 1.0rem;
    font-weight: normal !important;
   }
}


.subscribe-btn {
    font-weight: bold !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    transition: background-color 0.3s ease !important;
}

.subscribe-btn:hover {
  
    background-color:darkred !important;
    color: white !important;
    border: none !important;
    /* border: 2px solid red !important; */
    font-weight: bold;
}

@media (max-width: 991.98px) {
    .col-lg-6 {
        order: 1; /* Image comes first */
    }

    .col-lg-5 {
        order: 2; /* Text comes after image */
    }
}
.section-involvement p {
    text-align: justify; /* Ensures even line alignment on both sides */
    line-height: 1.6; /* Adds space between lines for better readability */
   /* Adds indent to the first line of each paragraph */
    margin-bottom: 15px; /* Adds space between paragraphs */
    font-size: 16px; /* Ensures readable font size */
}

.section-involvement img {
    margin-bottom: 20px; /* Add gap between image and text */
}
/* ----------------------------------------------------------------- */
/* Custom Contact page Css */

.contact-section {
    zoom:0%;
    position: relative;
    background-image: url(./images/contact2.webp);
    background-repeat: no-repeat;
    background-position: top bottom left right; 
    background-size:cover; /* Image covers the entire area */
/* Centers the image */
    height: 59vh; /* Full height */
    width: 100%; /* Full width */
    margin: 0; /* Remove default margin */
    overflow: hidden; /* Hide overflow */
}
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0); /* Black with 50% opacity */
    z-index: 1;
}

/* Basic styles */
.container {
    font-family: 'Arial', sans-serif;
    padding: 20px;
    animation: fadeIn 1s ease-in;
}

h2 {
    animation: fadeIn 1s ease-in;
}

/* Contact Box */
.contact-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

/* Working Hours */
.working-hours {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Unique Button Styles */
.unique-btn {
    font-size: 1.5rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.unique-btn:hover {
    background-color: #FF6347; /* Tomato color */
    color: white !important;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
}



/* Animation styles */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Image styles */
.indent {
    margin: 0;
    padding-left: 20px !important; /* Adjust as needed */
}

.contact-section-form {
    padding: 50px;
    background-color:rgba(178, 34, 34, 0.715); /* Light background color */
    width: 100%; /* Full width */
     /* Vertical padding */
    opacity: 0; /* Initially hidden */
    animation: fadeIn 2s forwards; /* Fade-in animation */
}
@keyframes fadeIn {
    to {
        opacity: 1; /* Fully visible */
    }
}
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}
.form-control {
    border-radius: 0.5rem; /* Rounded corners */
    transition: border-color 0.3s; /* Smooth border color transition */
}
.form-control:focus {
    border-color:#B22222;/* Blue border on focus */
    box-shadow: 0 0 5px #B22222; /* Shadow effect on focus */
}

.contact-info p {
    margin: 0; /* No margin for paragraphs */
}
.contact-info h3 {
    margin-bottom: 10px; /* Spacing for headings */
}
.contact-info {
    /* margin-top: 20px; */
    height: 35vh;
 
    background-color: #f8f9fa; /* Light background for the contact info */
    padding: 20px; /* Padding around the content */
    border-radius: 0.5rem; /* Rounded corners */
    box-shadow: 0px 0px   15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.text-primary {
    color: #007bff; /* Primary color for headings */
    font-size: 1.5rem; /* Font size for main heading */
}



.contact-info i {
    color: #B22222; /* Icon color */
    margin-right: 10px; /* Space between icon and text */
}

.map-section{
    background-color:rgba(255, 99, 71, 0.8);
}
/* Registration page design  */
/* --------------------------------------------------------- */
/* Base styles for all screens */
/* Background image and modal */
.registration-background {
    position: relative;
    background-image: url('./images/register.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full height of the viewport */
    display: flex;

    justify-content: center;
    align-items: center;
    padding: 10px; /* Padding for smaller devices */
    overflow: hidden; /* Ensure no overflow */
}
.registration-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.134); /* কালো রঙ এবং opacity 0.5 */
    z-index: 2; /* ব্যাকগ্রাউন্ড ইমেজের উপরে রাখার জন্য */
}
.login-background {
    position: relative; /* Child elements overlay করতে position relative */
    background-image: url('./images/login.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    overflow: hidden;
}
.login-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.151); /* কালো রঙ এবং opacity 0.5 */
    z-index: 1; /* ব্যাকগ্রাউন্ড ইমেজের উপরে রাখার জন্য */
}
/* Modal */
.registration-modal {
    background-color: rgba(255, 255, 255, 0.834);
    z-index: 2;
    padding: 10px 10px 10px ;
    border-radius: 10px;
    width: 100%;
    max-width: 600px; /* Adjusted max-width */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.549);
    animation: modalSlideIn 2.5s ease-in-out;
    height: auto;
    max-height: 100vh; /* Restrict modal height to 80% of viewport */
}
.login-modal {
    position: relative;
    margin-top: -200px !important;
    background-color: rgba(255, 255, 255, 0.734);
    z-index: 2;
    padding: 60px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px; /* Adjusted max-width */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.388);
    animation: modalSlideIn 2s ease-in-out;
    height: auto;
    max-height: 100vh; /* Restrict modal height to 80% of viewport */
}
/* Custom input styling */
.custom-input {
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: bold;
    font-style: italic;
}

.custom-input input {
    width: 100%;
    padding: 10px 40px; /* Space for icons */
    border: 2px solid transparent;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.custom-input input:focus {
    outline: none;
    border-image: linear-gradient(to right, #ff416c, #ff4b2b) 1;
}

.custom-input label {
    position: absolute;
    top: 50%;
    left: 40px; /* Adjusted for icon */
    transform: translateY(-50%);
    font-size: 16px;
    color:#ff416c;
    pointer-events: none;
    transition: 0.3s;
}

.custom-input .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color:;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color:;
}

.password-toggle i {
    font-size: 18px;
}


.custom-input input:focus + label,
.custom-input input:not(:placeholder-shown) + label {
    top: 0;
    left: 5px;
    font-size: 12px;
    color: #ff416c;
}

/* Submit button */
.submit-btn {
    width: 100%;
    padding: 10px;
    background-image: linear-gradient(to right, #ff416c, #ff4b2b);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-image: linear-gradient(to right, #ff4b2b, #ff416c);
}

/* Modal animation */
@keyframes modalSlideIn {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Media Queries */

/* Extra small devices (mobiles < 576px) */
@media (max-width: 575.98px) {
    .registration-modal {
        max-width: 100%;
        max-height: 90vh;
        overflow-y: auto;

    }
    .login-modal{
        max-width: 100%;
        max-height: 60vh;

    }
    .registration-background {
        background-image: none !important;


    }
    .login-background{
        background-position: top;
        padding: 5px;
    }
}

/* Small devices (tablets >= 576px and < 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .registration-modal {
        max-width: 90%;
        max-height: 85vh;
        overflow-y: auto;
    }
}

/* Medium devices (tablets >= 768px and < 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .registration-modal {
        max-width: 70%;
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Large devices (laptops >= 992px and < 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .registration-modal {
        /* margin-top: 20px !important; */
        max-width: 50%; /* Reduced the width for larger screens */
        max-height: 100vh;
        /* margin-top: -150px; */
    }
    .submit-btn{
        margin-top: -20px !important;
    }
}

/* Extra large devices (desktops >= 1200px) */
@media (min-width: 1200px) {
    .registration-modal {
        max-width: 40%; /* Adjusted width to avoid overflow */
        max-height: 100vh;
        /* margin-top: -160px; */
    }
}




/* ----------------------------------------- */
/* All Event Css Page */
/* ------------------------------------------ */

/* search bar  */

.glass-search {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.114);
    backdrop-filter: blur(15px);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.189);
    max-width: 600px;
    margin: 50px auto;
    color: white;
  }
  
  .custom-input-text {
    border: none;
    font-size:17px;
    background: none;
    color:white !important;
    /* background-color:; */
     /* Input text color */
    outline: none; /* Remove outline */
    flex: 1; /* Allow input to take available space */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
  }
  
  .search-button {
    padding: 12px 20px;
    border: none;
    border-radius: 0 50px 50px 0;
    background-color:darkred;
    color:white;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  /* To hide placeholder on focus */
  .custom-input-text:focus::placeholder {
    color:white;
  }
  .custom-input-text::placeholder {
   
    color:darkred;
  }
  @media only screen and (max-width: 600px) {
    .glass-search {
      flex-direction: column;
    }
  
    .custom-input-text, .search-button {
      border-radius: 50px;
      width: 100%;
      margin-top: 10px;
      text-align: center;
    }
  }
  




  /* Profile page */
  /* ------------------------------------------------- */


  .custom-profile-container {
    background: white;
    /* border-radius: 12px; */
    color: white;
    background-color:rgba(255, 0, 0, 0.634);
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.201);
    /* background-color: salmon,sandybrown,sienna; */
    /* background:linear-gradient(rgb(250, 114, 114),sal) */
}

.profile-image {
    width: 400px; /* Set your desired width */
    height: 400px; /* Set your desired height */
     /* Ensures the image covers the area without distortion */
    /* border-radius: 50%; Makes it circular */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); Optional: adds a subtle shadow */
}



.custom-profile-name {
    font-size: 1.5rem;
    margin: 10px 0;
    
}

.profile-info {
    font-size: 1.2rem;
    margin: 5px 0;
}

.availability-status,
.health-status {
    font-weight: bold;
}

.custom-donation-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.donation-item {
    border-radius: 5px;
}
.history-card {
    display: flex;
    flex-direction: column; /* Align content in a column */
    justify-content: space-between; /* Distribute space between content */
    height: 100%; /* Ensure the card takes full height */
}

.btn-download {
    height: 60px; /* Set a fixed height for the buttons */
    margin-top: auto; /* Push the button to the bottom */
    align-self: center; /* Center the button horizontally */
}

/* Optional: Ensure all cards have a consistent height */
.history-card {
    height: 330px; /* Adjust based on your design */
}
.btn-download-history{
    /* background-color:#ff416c !important; */
   background:linear-gradient( #E1306C,#ff4b2b,#ff5f6d);
   color: white !important;
   border-radius: 0% !important;
   text-align: center !important;
   align-items: center !important;
}

  
@media (max-width: 768px) {
    .custom-profile-name {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    .profile-info {
        font-size: 1rem;
    }

    .custom-donation-title {
        font-size: 1.5rem;
    }
    .profile-image {
        width: 300px; /* Set your desired width */
        height: 300px; /* Set your desired height */
        border-radius: 50%;
         /* Ensures the image covers the area without distortion */
        /* Makes it circular */
        /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); Optional: adds a subtle shadow */
    }
    .profile-password-btn{
        display: flex;
        gap: 35px;
        /* justify-content: space-between !important; */
    }
}
  
@media (min-width: 769px) ,(max-width: 1900px) {
    .custom-profile-name {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    .profile-info {
        font-size: 1rem;
    }

    .custom-donation-title {
        font-size: 1.5rem;
    }
    .profile-image {
        margin-top: 20px;
        width: 400px; /* Set your desired width */
        height: 400px; /* Set your desired height */
         /* Ensures the image covers the area without distortion */
        /* Makes it circular */
        /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); Optional: adds a subtle shadow */
    }
    .profile-password-btn{
        display: flex;
        gap: 70px;
        /* justify-content: space-between !important; */
    }
}
@media (max-width: 480px) {
    .custom-profile-name {
        font-size: 1.8rem;
    }

    .profile-info {
        font-size: 0.9rem;
    }

    .custom-donation-title {
        font-size: 1.2rem;
    }
    .profile-image {
        width: 150px; /* Set your desired width */
        height: 150px; /* Set your desired height */
         /* Ensures the image covers the area without distortion */
        border-radius: 50%; /* Makes it circular */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
    }
    .profile-password-btn{
        display: flex;
        gap: 20px;
        /* justify-content: space-between !important; */
    }

    
    .button-container {
        flex-wrap: wrap;           /* Enable Flexbox */
        justify-content: center;  /* Center horizontally */
        align-items: center;      /* Center vertically */
        height: 100px;  
      /* Set a height to center vertically, adjust as needed */
    }
  
}

#feedback-section {
    
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color;
}

.feedback-item {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.feedback-item h4 {
    margin: 0;
}
@media (max-width: 480px) {
    .feedback-item {
        margin-bottom: 15px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 3px;
        width: 100% !important;
    }

}
.feedback-item p {
    margin: 5px 0;
}
.button-container {
    display: flex;            /* Enable Flexbox */
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    height: 100px;  
  /* Set a height to center vertically, adjust as needed */
}
.update-feedback-btn{
    padding: 10px;
    background-color: #E1306C;
   
    align-items: center;
    justify-content: center;
    text-align: center;
    
}
.update-feedback-btn:hover{
    background-color: #5bc4dc;
    transition: background 0.3s ease;
}
  /* ====================================================== */

  /* Blog design css */
  /* ------------------------------------ */
/* Custom Container Class */
/* Custom Container Class */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Optional custom CSS for vertical alignment */
.pagination {
    align-items: center; /* Center align vertically */
  }
  .add-blog-btn{
    padding: 15px 55px !important;
    border-radius:0% !important;
    text-transform: uppercase;
    /* transform:; */
    font-weight: bold;
    letter-spacing: 1px;
    background-color:crimson !important;

    color: white !important;
  }
  .add-blog-btn:hover{
    background-color: rgb(139, 0, 0) !important;

  }
/* Custom Blog Card Class */
.blog-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    background-color: #fff; /* White background for the card */
    height: 100%; /* Ensure equal height for all cards */
}

/* Hover Effect for Blog Cards */
.blog-card:hover {
    transform: scale(1.05);
}

/* Style for blog posts */
.blog-post {
    display: flex; /* Flexbox for layout */
    flex-direction: column; /* Align children vertically */
    align-items: center; /* Center align children horizontally */
    justify-content: flex-start; /* Start from the top */
    height: 100%; /* Make the card take the full height */
    padding: 20px; /* Padding inside the card */
}

/* Image Styling */
.blog-post img {
    /* Circle image */
    border-radius: 50%;
    width: 250px; /* Increased width for clearer image */
    height: 250px; /* Increased height for clearer image */
   /* Ensure image covers the area */
    margin-bottom: 15px; /* Space between image and content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for better visibility */
}

/* Responsive Design for blog sections */
@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 20px; /* Space between blog cards on mobile */
    }
}



/* ---------------------------------------------- */

/* all-feedback */
.feedback-card {
    border: 1px solid aliceblue;
    border-radius: 12px;
    padding: 30px;
    margin: 5px;
    transition:transform 0.2s ease;;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);

}

.feedback-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.348);
}

.feedback-pagination {
    padding: 15px 0; /* Padding added */
}

.feedback-pagination button {
    border-radius: 0; /* Rounded 0 */
    margin: 0 5px; /* Adjust margins for spacing */
    transition: background-color 0.3s ease; /* Smooth background transition */
}

.feedback-pagination button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    color: white; /* White text on hover */
}

.feedback-pagination button:disabled {
    background-color: #e0e0e0; /* Light gray for disabled buttons */
    color: #aaa; /* Gray text for disabled buttons */
    cursor: not-allowed; /* Change cursor to indicate disabled */
}