/*
|--------------------------------------------------------------------------
| Translation CSS
|--------------------------------------------------------------------------
*/

.translate-btn {
	position: fixed;
	bottom: 12px;
	right: 20px;
	background: #007bff;
	color: #fff;
	padding: 10px 15px;
	border-radius: 50px;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	transition: 0.3s ease-in-out;
	z-index: 9999;
}

.translate-btn:hover {
	background: #0056b3;
}

.translate-container {
	position: fixed;
	bottom: 70px;
	right: 20px;
	background: #fff;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	display: none;
	z-index: 9999;
}

.goog-te-banner-frame.skiptranslate,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-balloon-frame {
	display: none !important;
}


/*
|--------------------------------------------------------------------------
| Master CSS
|--------------------------------------------------------------------------
*/

.custom-badge {
	display: inline-block;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	background-color: var(--primary-color);
	border-radius: 12px;
	text-transform: uppercase;
}

.btn {
	background: linear-gradient(45deg, var(--yellow-color), var(--green-color), var(--primary-color), var(--coral-color));
	background-size: 300% 300%;
	animation: gradientAnimation 12s ease-in-out infinite;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.6s ease;
}

.btn:hover {
	transform: scale(1.05);
}

@keyframes gradientAnimation {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/*
|--------------------------------------------------------------------------
| Sidebar CSS
|--------------------------------------------------------------------------
*/

.sticky-sidebar {
	position: sticky;
	top: 100px;
}


/*
|--------------------------------------------------------------------------
| News Event CSS
|--------------------------------------------------------------------------
*/

.news-event {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    background: #e977421f;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.scroll-wrapper {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.scrolling-news {
    display: flex;
    flex-direction: column;
    animation: scrollUpLinear 15s linear infinite;
}

.scrolling-news ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.scrolling-news li {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 2px dotted var(--thm-topbar-bg-color, #007bff);;
    width: 100%;
}

.news-date {
    background-color: var(--thm-topbar-bg-color, #007bff);
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    margin-right: 10px;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.news-date small {
    display: block;
    font-size: 12px;
    font-weight: 400;
}

.news-text a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

@keyframes scrollUpLinear {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/*
|--------------------------------------------------------------------------
| Read More Link CSS
|--------------------------------------------------------------------------
*/

.read-more-link {
    color: var(--oxpins-base) !important;
    text-decoration: underline !important;
    font-weight: bold !important;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--oxpins-primary) !important;
    text-decoration: none !important;
}

/*
|--------------------------------------------------------------------------
| Campaign Card CSS
|--------------------------------------------------------------------------
*/

.causes-one__img {
    height: 250px;
}

/*
|--------------------------------------------------------------------------
| Pagination CSS
|--------------------------------------------------------------------------
*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination .page-item {
    margin: 0 2px;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    color: var(--oxpins-black);
    background-color: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination .page-link:hover {
    color: #ffffff;
    background-color: var(--oxpins-base);
    border-color: var(--oxpins-base);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: var(--oxpins-base);
    border-color: var(--oxpins-base);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color: #e9ecef;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Pagination arrows styling */
.pagination .page-link[rel="prev"],
.pagination .page-link[rel="next"] {
    font-weight: bold;
    font-size: 16px;
}

/* Pagination container styling */
.pagination-container {
    padding: 20px;
    margin-top: 30px;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination .page-link {
        min-width: 35px;
        height: 35px;
        padding: 0 8px;
        font-size: 12px;
    }
    
    .pagination-container {
        padding: 15px;
        margin-top: 20px;
    }
}

/*
|--------------------------------------------------------------------------
| Campaign CSS
|--------------------------------------------------------------------------
*/

/* Campaign Donation Widget */
.campaign-donation-widget {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.donation-widget-header {
    margin-bottom: 20px;
}



/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 20px;
}

.countdown-item {
    flex: 1;
    background: linear-gradient(135deg, var(--oxpins-base), var(--oxpins-primary));
    border-radius: 6px;
    padding: 8px 4px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 8px;
}

.countdown-number {
    display: inline;
    font-size: 1.0rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-right: 2px;
    position: relative;
    z-index: 1;
}

.countdown-label {
    display: inline;
    font-size: 1.0rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}



/* Financial Details */
.donation-financial-details {
    margin-bottom: 25px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.financial-item {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0;
    background: none;
    border-radius: 0;
    transition: none;
}

.financial-item:hover {
    background: none;
    transform: none;
}

.financial-icon {
    width: 24px;
    height: 24px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.financial-icon i {
    font-size: 20px;
    color: #6c757d;
}

.financial-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.financial-label {
    display: inline;
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
    margin: 0;
}

.financial-amount {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    margin: 0;
}

.financial-amount::before {
    content: '₹';
    margin-right: 2px;
}

.raised-amount {
    color: #28a745;
    font-weight: 600;
    border: 1px solid #28a745;
    border-radius: 4px;
    padding: 2px 6px;
    background: rgba(40, 167, 69, 0.1);
}

/* Organizer Widget Card */
.organizer-widget-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.organizer-widget-header {
    margin-bottom: 20px;
}

.organizer-widget-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    text-align: left;
}

.organizer-widget-divider {
    height: 2px;
    background: #e9ecef;
    border-radius: 1px;
    margin: 0 0 20px 0;
    width: 100%;
}

.organizer-widget-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
}

.organizer-widget-logo {
    flex-shrink: 0;
}

.organizer-widget-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--oxpins-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.organizer-widget-info {
    flex: 1;
    width: 100%;
}

.organizer-widget-name {
    font-size: 1.3rem;
    color: var(--oxpins-base);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1.2;
}

.organizer-widget-location {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.organizer-widget-location i {
    color: var(--oxpins-base);
    font-size: 0.8rem;
}

.organizer-widget-date {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

/* Responsive Design for Organizer Widget */
@media (max-width: 768px) {
    .organizer-widget-card {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .organizer-widget-title {
        font-size: 1.2rem;
    }
    
    .organizer-widget-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .organizer-widget-img {
        width: 70px;
        height: 70px;
    }
    
    .organizer-widget-name {
        font-size: 1.1rem;
    }
    
    .organizer-widget-location {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .organizer-widget-card {
        padding: 15px;
    }
    
    .organizer-widget-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .organizer-widget-img {
        width: 60px;
        height: 60px;
    }
    
    .organizer-widget-name {
        font-size: 1rem;
    }
    
    .organizer-widget-location {
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .organizer-widget-date {
        font-size: 0.8rem;
    }
}

/* Share Campaign Card */
.share-campaign-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.share-campaign-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    text-align: left;
}

.share-campaign-divider {
    height: 2px;
    background: #e9ecef;
    border-radius: 1px;
    margin: 0 0 20px 0;
    width: 100%;
}

.share-url-section {
    margin-bottom: 20px;
}

.url-input-group {
    display: flex;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.url-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    color: #6c757d;
    background: #f6f6f6;
    outline: none;
}

.url-input:focus {
    outline: none;
    box-shadow: none;
}

.copy-url-btn {
    background: var(--oxpins-base);
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 50px;
}

.copy-url-btn:hover {
    background: var(--oxpins-primary);
    transform: translateY(-1px);
}

.copy-url-btn i {
    font-size: 16px;
}

.social-share-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--oxpins-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color:  var(--oxpins-base);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background:  var(--oxpins-base);
    border-color:  var(--oxpins-base);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon i {
    font-size: 18px;
}

/* Fallback for Twitter X icon if Tabler Icons don't load */
.social-icon.twitter i.ti-brand-x:before {
    content: "✕";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 20px;
}

/* Responsive Design for Share Card */
@media (max-width: 768px) {
    .share-campaign-card {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .share-campaign-title {
        font-size: 1.2rem;
    }
    
    .url-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .copy-url-btn {
        padding: 10px 14px;
        min-width: 45px;
    }
    
    .social-share-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .share-campaign-card {
        padding: 15px;
    }
    
    .social-share-icons {
        gap: 6px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 14px;
    }
}

/* Donation Footer */
.donation-widget-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.donate-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.donate-button {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid #E5AC1B;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.donate-button:hover {
    background: #E5AC1B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 172, 27, 0.3);
}

.donate-button img {
    height: 35px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .campaign-donation-widget {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .countdown-timer {
        gap: 6px;
    }
    
    .countdown-item {
        padding: 6px 3px;
        min-height: 35px;
    }
    
    .countdown-number {
        font-size: 0.9rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
    
    .donation-financial-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .financial-item {
        padding: 0;
    }
    
    .financial-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
    
    .financial-icon i {
        font-size: 18px;
    }
    
    .donate-button {
        padding: 10px 16px;
    }
    
    .donate-button img {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .campaign-donation-widget {
        padding: 15px;
    }
    
   
    
    .countdown-timer {
        gap: 4px;
    }
    
    .countdown-item {
        padding: 6px 2px;
        min-height: 32px;
    }
    
    .countdown-number {
        font-size: 0.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .donation-financial-details {
        flex-direction: column;
        gap: 12px;
    }
    
    .financial-item {
        padding: 0;
    }
    
    .financial-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
    
    .financial-icon i {
        font-size: 16px;
    }
    
    .financial-amount {
        font-size: 0.9rem;
    }
}

.campaign-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.campaign-description-text {
    text-align: justify;
}

.campaign-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

/* Campaign Organizer Card */
.campaign-organizer-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.organizer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.organizer-left {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.organizer-logo {
    flex-shrink: 0;
}

.organizer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--oxpins-base);
}

.organizer-info {
    flex: 1;
}

.organizer-title {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.organizer-name {
    font-size: 1.2rem;
    color: var(--oxpins-base);
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
}

.organizer-right {
    flex-shrink: 0;
    text-align: right;
}

.organizer-date {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

/* Responsive Design for Organizer Card */
@media (max-width: 768px) {
    .campaign-organizer-card {
        padding: 15px;
        margin: 15px 0;
    }
    
    .organizer-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .organizer-left {
        gap: 12px;
    }
    
    .organizer-img {
        width: 50px;
        height: 50px;
    }
    
    .organizer-name {
        font-size: 1.1rem;
    }
    
    .organizer-right {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .campaign-organizer-card {
        padding: 12px;
        margin: 12px 0;
    }
    
    .organizer-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .organizer-left {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .organizer-img {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }
    
    .organizer-name {
        font-size: 1rem;
    }
    
    .organizer-right {
        text-align: center;
    }
}
.campaign-details-tabs {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    padding: 20px;
}

.tab-navigation {
    display: flex;
    gap: 6px;
    margin-bottom: 0;
    overflow-x: auto;
    padding-bottom: 5px;
}

.tab-button {
    flex: 1;
    padding: 8px 6px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-button:hover {
    color: var(--oxpins-base);
    border-color: var(--oxpins-base);
}

.tab-button.active {
    color: #ffffff;
    background: var(--oxpins-base);
    border-color: var(--oxpins-base);
    font-weight: 600;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    padding: 0;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner {
    padding: 30px;
}

.tab-title {
    color: var(--oxpins-black);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--oxpins-base);
    display: inline-block;
}

.campaign-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.documents-list {
    margin-top: 20px;
}

.document-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--oxpins-base);
}

.document-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: var(--oxpins-base);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 24px;
    color: #ffffff;
}

.document-info {
    flex: 1;
}

.document-info h5 {
    color: var(--oxpins-black);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.document-info p {
    color: #6c757d;
    font-size: 14px;
    margin: 0 0 10px 0;
}

.download-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--oxpins-base);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--oxpins-primary);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.no-content {
    text-align: center;
    padding: 40px;
    color: #6c757d;
    font-style: italic;
}

/* Donors Carousel */
.donors-carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.donors-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    gap: 8px;
}

.donor-item {
    flex: 0 0 22%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.donor-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oxpins-base), var(--oxpins-primary));
}

.donor-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.donor-item .donor-image {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
    position: relative;
}

.donor-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    transition: transform 0.3s ease;
    background-color: #f8f9fa;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.donor-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


.donor-info {
    width: 100%;
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.donor-info:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}

.donor-name {
    color: #2c3e50;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.2;
    text-align: center;
    text-transform: capitalize;
}

.donor-amount {
    color: var(--oxpins-base);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.donor-amount::before {
    content: '₹';
    font-size: 12px;
    opacity: 0.8;
}

.donor-date {
    color: #6c757d;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-btn {
    background: var(--oxpins-base);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--oxpins-primary);
    transform: scale(1.1);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Responsive Donors Carousel */
@media (max-width: 1200px) {
    .donor-item {
        flex: 0 0 22%;
    }
}

@media (max-width: 1024px) {
    .donor-item {
        flex: 0 0 30%;
    }
    
    .donor-img {
        width: 70px;
        height: 70px;
    }
    
    .donor-name {
        font-size: 12px;
    }
    
    .donor-amount {
        font-size: 14px;
    }
    
    .donor-date {
        font-size: 10px;
        padding: 2px 5px;
    }
}

@media (max-width: 992px) {
    .donor-item {
        flex: 0 0 30%;
    }
    
    .donor-img {
        width: 45px;
        height: 45px;
    }
    
    .donor-name {
        font-size: 11px;
    }
    
    .donor-amount {
        font-size: 13px;
    }
    
    .donor-date {
        font-size: 9px;
        padding: 2px 4px;
    }
}

@media (max-width: 768px) {
    .donors-carousel {
        gap: 6px;
    }
    
    .donor-item {
        flex: 0 0 30%;
        padding: 10px;
    }
    
    .donor-img {
        width: 45px;
        height: 45px;
    }
    
    .donor-name {
        font-size: 11px;
    }
    
    .donor-amount {
        font-size: 13px;
    }
    
    .donor-date {
        font-size: 9px;
        padding: 2px 4px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: -15px;
    }
    
    .next-btn {
        right: -15px;
    }
}

@media (max-width: 480px) {
    .donors-carousel {
        gap: 4px;
    }
    
    .donor-item {
        flex: 0 0 45%;
        padding: 10px;
    }
    
    .donor-img {
        width: 40px;
        height: 40px;
    }
    
    .donor-name {
        font-size: 10px;
    }
    
    .donor-amount {
        font-size: 12px;
    }
    
    .donor-date {
        font-size: 8px;
        padding: 2px 4px;
    }
    
    .donors-carousel {
        flex-direction: row;
    }
    
    .carousel-controls {
        display: none;
    }
}
/* Related Campaigns Widget Card */
.related-campaigns-widget-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.related-campaigns-widget-header {
    margin-bottom: 20px;
}

.related-campaigns-widget-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    text-align: left;
}

.related-campaigns-widget-divider {
    height: 2px;
    background: #e9ecef;
    border-radius: 1px;
    margin: 0 0 20px 0;
    width: 100%;
}

/* Responsive Design for Related Campaigns Widget */
@media (max-width: 768px) {
    .related-campaigns-widget-card {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .related-campaigns-widget-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .related-campaigns-widget-card {
        padding: 15px;
    }
    
    .related-campaigns-widget-title {
        font-size: 1.1rem;
    }
}

/* Sticky Right Sidebar for Campaign Detail */
.donation-details__sidebar {
    position: sticky;
    top: 20px;
    z-index: 10;
    height: fit-content;
}

/* Make ONLY the description text scrollable without visible scrollbar */
.campaign-description-text {
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 10px;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
.campaign-description-text::-webkit-scrollbar {
    display: none;
}

/* Enhanced Comment Section Design */
.comment-one {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.comment-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oxpins-base), var(--oxpins-primary));
}

.comment-one__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.comment-one__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--oxpins-base);
    border-radius: 2px;
}

.comment-form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.comment-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oxpins-base), var(--oxpins-primary));
}

.comment-form__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-form__title::before {
    content: '💬';
    font-size: 1.2rem;
}



/* Individual Comment Items */
.comment-one__single {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--oxpins-base);
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.comment-one__single:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.comment-one__image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--oxpins-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.comment-one__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-one__image::before {
    content: none !important;
}

.comment-one__content {
    flex: 1;
    min-width: 0;
}

.comment-one__content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.comment-one__content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-one__btn {
    background: var(--oxpins-base);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.comment-one__btn:hover {
    background: var(--oxpins-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Reply Comments */
.comment-one__single .comment-one__single {
    background: transparent;
    border: none;
    margin-left: 40px;
    margin-top: 15px;
    padding: 0;
    box-shadow: none;
}

.comment-one__single .comment-one__single:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.comment-one__single .comment-one__single .comment-one__image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #6c757d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.comment-one__single .comment-one__single .comment-one__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-one__single .comment-one__single .comment-one__content h3 {
    font-size: 1rem;
    color: #495057;
}

/* Error Messages */
.invalid-feedback {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Responsive Design for Comments */
@media (max-width: 768px) {
    .comment-one {
        padding: 20px;
        margin: 20px 0;
    }
    
    .comment-form {
        padding: 20px;
    }
    
    .comment-one__title {
        font-size: 1.5rem;
    }
    
    .comment-form__title {
        font-size: 1.3rem;
    }
    
    .comment-one__single {
        padding: 20px;
    }
    
    .comment-one__single .comment-one__single {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .comment-one {
        padding: 15px;
        margin: 15px 0;
    }
    
    .comment-form {
        padding: 15px;
    }
    
    .comment-one__title {
        font-size: 1.3rem;
        padding-left: 15px;
    }
    
    .comment-one__title::before {
        width: 3px;
        height: 25px;
    }
    
    .comment-form__title {
        font-size: 1.2rem;
    }
    
    .comment-one__single {
        padding: 15px;
    }
    
    .comment-one__single .comment-one__single {
        margin-left: 10px;
    }
}

/* Payment Method Selector */
.payment-method-selector {
    margin-top: 15px;
}

.payment-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-select:focus {
    border-color: var(--oxpins-base);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    outline: none;
}

.payment-select:hover {
    border-color: var(--oxpins-base);
}

.payment-select option {
    padding: 10px;
    font-weight: 500;
}


/* Responsive Payment Selector */
@media (max-width: 768px) {
    .payment-select {
        padding: 10px 12px;
        font-size: 13px;
    }

}

@media (max-width: 480px) {
    .payment-select {
        padding: 8px 10px;
        font-size: 12px;
    }
 
}

/* Enhanced Donation Form */
.donation-form-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 30px 0;
    position: relative;
}

.donation-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--oxpins-base), var(--oxpins-primary));
}

.donation-form-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px 40px 30px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.donation-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.donation-form-title i {
    color: var(--oxpins-base);
    font-size: 1.8rem;
}

.donation-form-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

.donation-form-body {
    padding: 40px;
}

.donation-form .form-group {
    margin-bottom: 25px;
}

.donation-form .form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.donation-form .form-label i {
    color: var(--oxpins-base);
    font-size: 0.9rem;
    width: 16px;
}

.donation-form .required {
    color: #dc3545;
    font-weight: 700;
}

.donation-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.donation-form .form-control:focus {
    border-color: var(--oxpins-base);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    outline: none;
    background: #ffffff;
}

.donation-form .form-control::placeholder {
    color: #6c757d;
    font-weight: 400;
}

/* Donation Amount Section */
.donation-amount-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.donation-amount-input {
    position: relative;
    margin-bottom: 20px;
}

.currency-symbol {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--oxpins-base);
    z-index: 2;
}

.amount-input {
    padding-left: 50px !important;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    background: #ffffff !important;
    border: 2px solid var(--oxpins-base) !important;
}

.amount-suggestions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.amount-btn {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.amount-btn:hover {
    border-color: var(--oxpins-base);
    color: var(--oxpins-base);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.amount-btn.active {
    background: var(--oxpins-base);
    border-color: var(--oxpins-base);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Donation Form Footer */
.donation-form-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    margin-top: 30px;
}

.donate-btn {
    background: var(--oxpins-base);
    border: 2px solid var(--oxpins-base);
    border-radius: 8px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.donate-btn:hover {
    background: var(--oxpins-primary);
    border-color: var(--oxpins-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.donate-btn:active {
    transform: translateY(0);
}

.donation-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.donation-note i {
    color: #28a745;
    font-size: 1rem;
}

/* Error Messages */
.donation-form .invalid-feedback {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

.donation-form .is-invalid {
    border-color: #dc3545 !important;
}

.donation-form .is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-form-container {
        margin: 20px 0;
        border-radius: 15px;
    }
    
    .donation-form-header {
        padding: 30px 25px 20px;
    }
    
    .donation-form-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .donation-form-body {
        padding: 25px;
    }
    
    .donation-form .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .amount-suggestions {
        gap: 8px;
    }
    
    .amount-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .donate-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .donation-form-header {
        padding: 25px 20px 15px;
    }
    
    .donation-form-title {
        font-size: 1.4rem;
    }
    
    .donation-form-body {
        padding: 20px;
    }
    
    .donation-amount-section {
        padding: 20px;
    }
    
    .amount-suggestions {
        gap: 6px;
    }
    
    .amount-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .donate-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}


/*
|--------------------------------------------------------------------------
| Partners Section
|--------------------------------------------------------------------------
*/

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Partners Marquee Styles */
.partners-section .marquee-wrapper {
    margin: 40px 0;
    overflow: hidden;
    white-space: nowrap;
}

.partners-section .marquee-text {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    animation: partnersMarquee 60s linear infinite;
    white-space: nowrap;
    padding-left: 0;
}

@keyframes partnersMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners-section .partner-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 15px;
    flex-shrink: 0;
}

.partners-section .partner-item:hover {
    transform: translateY(-5px);
}

.partners-section .partner-logo {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partners-section .partner-item:hover .partner-logo {
    border-color: var(--oxpins-base);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.15);
}

.partners-section .partner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.partners-section .partner-item:hover .partner-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partners-section .partner-name {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.partners-section .partner-item:hover .partner-name {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Partners Marquee */
@media (max-width: 1200px) {
    .partners-section .partner-logo {
        width: 160px;
        height: 100px;
    }
}

@media (max-width: 992px) {
    .partners-section .marquee-text {
        gap: 20px;
    }
    
    .partners-section .partner-item {
        margin: 0 10px;
    }
    
    .partners-section .partner-logo {
        width: 140px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .partners-section .marquee-text {
        gap: 15px;
    }
    
    .partners-section .partner-item {
        margin: 0 8px;
    }
    
    .partners-section .partner-logo {
        width: 120px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .partners-section .marquee-text {
        gap: 10px;
    }
    
    .partners-section .partner-item {
        margin: 0 5px;
    }
    
    .partners-section .partner-logo {
        width: 100px;
        height: 70px;
    }
}

/*
|--------------------------------------------------------------------------
| Gallery Carousel Section
|--------------------------------------------------------------------------
*/

.gallery-carousel {
    margin: 0 auto;
}

/*
|--------------------------------------------------------------------------
| WhatsApp Float Button
|--------------------------------------------------------------------------
*/

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    background: #128c7e;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn i {
    animation: whatsapp-bounce 1.5s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}
/*
|--------------------------------------------------------------------------
| Responsive WhatsApp Float Button
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/*
|--------------------------------------------------------------------------
| Gallery Carousel
|--------------------------------------------------------------------------
*/
.gallery-carousel .item {
    width: 100%;
    padding: 0 10px;
}

.gallery-carousel .gallery-one__single {
    width: 100%;
    height: auto;
}

.gallery-carousel .gallery-one__img {
    width: 100%;
    height:250px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.gallery-carousel .gallery-one__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/*
|--------------------------------------------------------------------------
| Responsive Gallery Carousel
|--------------------------------------------------------------------------
*/
@media (max-width: 1200px) {
    .donation-details__sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .donation-details__sidebar {
        position: static;
        margin-top: 30px;
    }
}

/*
|--------------------------------------------------------------------------
| Responsive Tab Content
|--------------------------------------------------------------------------
*/
@media (max-width: 1200px) {
    .tab-content-inner {
        padding: 25px;
    }
    
    .campaign-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .tab-content-inner {
        padding: 20px;
    }
    
    .campaign-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 18px;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .document-item {
        padding: 15px;
    }
}

@media (max-width: 1024px) {
    .tab-button {
        padding: 6px 4px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .tab-navigation {
        gap: 4px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .tab-button {
        flex: 0 0 auto;
        min-width: 100px;
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .tab-content-inner {
        padding: 20px;
    }
    
    .campaign-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .document-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .document-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .campaign-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tab-navigation {
        gap: 2px;
    }
    
    .tab-button {
        min-width: 80px;
        padding: 5px 4px;
        font-size: 11px;
    }
    
    .tab-content-inner {
        padding: 15px;
    }
    
    .campaign-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .document-item {
        padding: 12px;
        flex-direction: column;
    }
    
    .document-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .document-icon i {
        font-size: 20px;
    }
    
    .campaign-title {
        font-size: 1.3rem;
    }
    
    .campaign-description-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

/*
|--------------------------------------------------------------------------
| Simple Tab System
|--------------------------------------------------------------------------
*/
.tab-system .nav,
.vission-mission-tab .nav,
.team-category-tabs .nav {
   justify-content: center;
   border-bottom: none;
   margin-bottom: 30px;
   gap: 15px;
   flex-wrap: wrap;
}

.tab-system .nav li button,
.vission-mission-tab .nav li button,
.team-category-tabs .nav li button {
   color: var(--oxpins-black);
   border: 2px solid var(--oxpins-base);
   background: #ffffff;
   font-weight: 600;
   padding: 12px 24px;
   border-radius: 25px;
   transition: all 0.3s ease;
   font-size: 16px;
   min-width: 120px;
   text-align: center;
}

.tab-system .nav li button:hover,
.vission-mission-tab .nav li button:hover,
.team-category-tabs .nav li button:hover {
   background: var(--oxpins-base);
   color: #ffffff;
   border-color: var(--oxpins-base);
}

.tab-system .nav li button.active,
.vission-mission-tab .nav li button.active,
.team-category-tabs .nav li button.active {
   background: var(--oxpins-base);
   color: #ffffff;
   border-color: var(--oxpins-base);
}

.tab-system .tab-pane,
.vission-mission-tab .tab-pane,
.team-category-tabs .tab-pane {
   padding: 20px 0;
}

.vission-mission-tab img {
   max-width: 100%;
   border-radius: 10px;
}

.text-black {
   color: var(--oxpins-black) !important;
}

/*
|--------------------------------------------------------------------------
| Responsive Tab System
|--------------------------------------------------------------------------
*/
@media (max-width: 768px) {
   .tab-system .nav,
   .vission-mission-tab .nav,
   .team-category-tabs .nav {
      gap: 10px;
      margin-bottom: 25px;
   }
   
   .tab-system .nav li button,
   .vission-mission-tab .nav li button,
   .team-category-tabs .nav li button {
      padding: 10px 20px;
      font-size: 14px;
      min-width: 100px;
   }
}

@media (max-width: 480px) {
   .tab-system .nav,
   .vission-mission-tab .nav,
   .team-category-tabs .nav {
      /*flex-direction: column;*/
      align-items: center;
      gap: 8px;
   }
   
   .tab-system .nav li button,
   .vission-mission-tab .nav li button,
   .team-category-tabs .nav li button {
      width: 100%;
      max-width: 200px;
   }
}

/*
|--------------------------------------------------------------------------
| Legal Information Section
|--------------------------------------------------------------------------
*/
.legal-info-container {
   background: #ffffff;
   border: 1px solid #e9ecef;
   border-radius: 8px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   margin: 30px 0;
   overflow: hidden;
}

.legal-info-header {
   background: var(--oxpins-base);
   padding: 15px 20px;
   text-align: center;
}

.legal-info-header h5 {
   margin: 0;
   color: #ffffff;

   font-weight: 600;
   text-transform: uppercase;
}

.legal-info-content {
   padding: 20px;
}

.legal-info-table {
   width: 100%;
   border-collapse: collapse;
   margin: 0;
}

.legal-info-table tbody tr {
   border-bottom: 1px solid #f1f3f4;
   transition: background-color 0.2s ease;
}

.legal-info-table tbody tr:last-child {
   border-bottom: none;
}

.legal-info-table tbody tr:hover {
   background-color: #f8f9fa;
}

.legal-info-table td {
   padding: 12px 15px;
   vertical-align: middle;
   font-size: 14px;
}

.legal-info-table td:first-child {
   font-weight: 600;
   color: var(--oxpins-black);
   width: 35%;
   background-color: #f8f9fa;
}

.legal-info-table td:last-child {
   color: #495057;
}

/*
|--------------------------------------------------------------------------
| Status indicators
|--------------------------------------------------------------------------
*/
.status-indicator {
   display: inline-block;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   margin-left: 8px;
   vertical-align: middle;
}

.status-active {
   background: #28a745;
}

.status-pending {
   background: #ffc107;
}

.status-inactive {
   background: #6c757d;
}

/*
|--------------------------------------------------------------------------
| Responsive Legal Info
|--------------------------------------------------------------------------
*/
@media (max-width: 768px) {
   .legal-info-container {
      margin: 20px 0;
   }

   .legal-info-header {
      padding: 12px 15px;
   }

   .legal-info-header h5 {
      font-size: 16px;
   }

   .legal-info-content {
      padding: 15px;
   }

   .legal-info-table td {
      padding: 10px 12px;
      font-size: 13px;
   }

   .legal-info-table td:first-child {
      width: 30%;
   }
}

/*
|--------------------------------------------------------------------------
| Gallery Page Title Below Image
|--------------------------------------------------------------------------
*/
.gallery-page__title-below {
   padding: 15px 0;
   text-align: center;
}

.gallery-page__title-below .gallery-page__title {
   margin: 0;
   font-size: 16px;
   font-weight: 600;
   color: var(--oxpins-black);
}

.gallery-page__title-below .gallery-page__title a {
   color: var(--oxpins-black);
   text-decoration: none;
   transition: color 0.3s ease;
}

.gallery-page__title-below .gallery-page__title a:hover {
   color: var(--oxpins-base);
}

/*
|--------------------------------------------------------------------------
| Gallery Page Card Styling
|--------------------------------------------------------------------------
*/
.gallery-page__single {
   background: #ffffff;
   border: 2px solid #e9ecef;
   border-radius: 12px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   overflow: hidden;
   height: 100%;
}

.gallery-page__single:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   border-color: var(--oxpins-base);
}

.gallery-page__single .gallery-page__img {
   position: relative;
   overflow: hidden;
   border-radius: 10px 10px 0 0;
}

.gallery-page__single .gallery-page__img img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.gallery-page__single:hover .gallery-page__img img {
   transform: scale(1.05);
}

.gallery-page__single:hover .gallery-page__content {
   opacity: 1;
}

.gallery-page__single .gallery-page__title-below {
   padding: 20px;
   background: #ffffff;
   border-top: 3px solid var(--oxpins-base);
}

.gallery-page__single .gallery-page__title-below .gallery-page__title {
   font-size: 18px;
   font-weight: 700;
   color: var(--oxpins-black);
   margin: 0;
}

.gallery-page__single .gallery-page__title-below .gallery-page__title a {
   color: var(--oxpins-black);
   text-decoration: none;
   transition: color 0.3s ease;
}

.gallery-page__single .gallery-page__title-below .gallery-page__title a:hover {
   color: var(--oxpins-base);
}

/* Responsive Gallery Cards */
@media (max-width: 768px) {
   .gallery-page__single .gallery-page__img img {
      height: 200px;
   }
   
   .gallery-page__single .gallery-page__title-below {
      padding: 15px;
   }
   
   .gallery-page__single .gallery-page__title-below .gallery-page__title {
      font-size: 16px;
   }
}

span.select2-selection.select2-selection--single {
    border-radius: 15px;
}