/*
|--------------------------------------------------------------------------
| 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;
	background: #fff;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
	display: none;
	z-index: 10000 !important;
	min-width: 200px;
}

.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 Section Separator - Like FAQ Section */
.partners-section__tagline-top {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.partners-section__tagline-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--oxpins-primary);
    border-radius: 2px;
}

/* News Section Separator - Like FAQ Section */
.news-section__tagline-top {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.news-section__tagline-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--oxpins-primary);
    border-radius: 2px;
}

/* Campaign Section Separator - Like FAQ Section */
.campaign-section__tagline-top {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.campaign-section__tagline-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--oxpins-primary);
    border-radius: 2px;
}

/*
|--------------------------------------------------------------------------
| About Section - Remove Border Line Above Photo
|--------------------------------------------------------------------------
*/

.about-one__img-border {
    display: none !important;
}

/* About Section Separator - Like FAQ Section */
.about-section__tagline-top {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.about-section__tagline-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--oxpins-primary);
    border-radius: 2px;
}

/* Activity Section Separator - Like FAQ Section */
.activity-section__tagline-top {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.activity-section__tagline-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--oxpins-primary);
    border-radius: 2px;
}

/*
|--------------------------------------------------------------------------
| Our Activity Section with Auto Scroll
|--------------------------------------------------------------------------
*/

.our-activity-section {
    position: relative;
    display: block;
    padding: 20px 0;
    margin: 20px auto;
    max-width: 1200px;
    width: calc(100% - 40px);
    background: var(--oxpins-primary);
    overflow: hidden;
    border-radius: 20px;
}

/* Activity Tabs */
.activity-tabs-wrapper {
    margin: 20px 0 10px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.activity-tabs {
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.activity-tab-btn {
    padding: 12px 30px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-tab-btn i {
    font-size: 18px;
}

.activity-tab-btn:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.activity-tab-btn.active {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.activity-tab-content {
    display: none;
}

.activity-tab-content.active {
    display: block;
}

.activity-item-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.activity-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.activity-item-link:hover .activity-item {
    transform: translateY(-10px);
}

/* Event Tabs */
.event-tabs-wrapper {
    margin: 20px 0 30px;
    padding: 0;
    display: flex;
    justify-content: center;
}

.event-tabs {
    display: flex;
    gap: 15px;
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-tab-btn {
    padding: 12px 30px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-tab-btn i {
    font-size: 18px;
}

.event-tab-btn:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.event-tab-btn.active {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.event-tab-content {
    display: none;
}

.event-tab-content.active {
    display: block;
}

.activity-scroll-wrapper {
    margin: 50px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.activity-scroll-wrapper-full {
    width: 100%;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 20px;
}

.activity-scroll-content {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: activity-scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes activity-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.activity-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 180px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    padding: 10px;
    margin: 0;
    background: transparent;
    border-radius: 15px;
    border: none;
    box-shadow: none;
}

.activity-item:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.activity-icon-box {
    width: 128px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.activity-item:hover .activity-icon-box {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.activity-icon {
    width: 128px;
    height: 128px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.activity-item:hover .activity-icon {
    transform: scale(1.1);
}

.activity-icon-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 50px;
}

.activity-name {
    margin: 0;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.activity-item:hover .activity-name {
    color: #ffffff;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .activity-item {
        min-width: 150px;
        padding: 15px;
    }
    
    .activity-icon-box {
        width: 128px;
        height: 128px;
    }
    
    .activity-icon {
        width: 128px;
        height: 128px;
    }
    
    .activity-icon-placeholder {
        width: 90px;
        height: 90px;
        font-size: 45px;
    }
    
    .activity-name {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .our-activity-section {
        padding: 60px 0;
    }
    
    .activity-scroll-content {
        gap: 25px;
    }
    
    .activity-item {
        min-width: 120px;
        padding: 12px;
    }
    
    .activity-icon-box {
        width: 100px;
        height: 100px;
    }
    
    .activity-icon {
        width: 100px;
        height: 100px;
    }
    
    .activity-icon-placeholder {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .activity-name {
        font-size: 13px;
    }
}

/*
|--------------------------------------------------------------------------
| About Section Video Circle with Animated Play Button
|--------------------------------------------------------------------------
*/

.about-video-circle {
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 150px !important;
    width: 150px !important;
}

.about-video-circle:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.2);
}

.about-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(241, 241, 241, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.about-video-circle:hover .about-video-overlay {
    background: rgba(241, 241, 241, 0.3);
}

.about-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
    padding: 0;
    animation: play-button-pulse 2s ease-in-out infinite;
}

.about-video-play-btn:hover {
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.7);
    animation: play-button-bounce 0.6s ease-in-out infinite;
}

@keyframes play-button-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4), 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4), 0 0 0 10px rgba(255, 0, 0, 0);
    }
}

@keyframes play-button-bounce {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.15);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.25);
    }
}

.about-video-play-btn .play-icon {
    color: #ffffff;
    font-size: 24px;
    margin-left: 4px;
    z-index: 2;
    position: relative;
    animation: play-icon-rotate 3s linear infinite;
}

@keyframes play-icon-rotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.about-video-play-btn:hover .play-icon {
    animation: play-icon-pulse 0.5s ease-in-out infinite;
}

@keyframes play-icon-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.about-video-play-btn .play-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: play-ripple 2s ease-out infinite;
    z-index: 1;
}

.about-video-play-btn .play-ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: play-ripple 2s ease-out infinite 0.5s;
}

.about-video-play-btn .play-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: play-ripple 2s ease-out infinite 1s;
}

@keyframes play-ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.about-video-play-btn:hover .play-ripple {
    animation-duration: 1s;
}

.about-video-play-btn:hover .play-ripple::before {
    animation-duration: 1s;
}

.about-video-play-btn:hover .play-ripple::after {
    animation-duration: 1s;
}

@media (max-width: 768px) {
    .about-video-circle {
        height: 120px !important;
        width: 120px !important;
    }
    
    .about-video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .about-video-play-btn .play-icon {
        font-size: 20px;
    }
    
    .about-video-play-btn .play-ripple,
    .about-video-play-btn .play-ripple::before,
    .about-video-play-btn .play-ripple::after {
        width: 60px;
        height: 60px;
    }
}

/* Partners Section Tagline */
.partners-section__tagline {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .partners-section__tagline {
        font-size: 14px;
        margin-top: 0;
        padding: 0 15px;
    }
}

/* ============================================
   Partners Section - Main Container
   ============================================ */
.partners-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 50%, #e9ecef 100%);
    padding: 50px 0;
    margin: 40px 0;
    overflow: hidden;
}

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

/* Partners Section - Adjust spacing after removing title */
.partners-section .section-title {
    margin-bottom: 15px;
    padding-top: 5px;
}

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

@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.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    margin: 0 18px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.partners-section .partner-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.partners-section .partner-link {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.partners-section .partner-logo {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    padding: 10px;
}

.partners-section .partner-logo::before,
.partners-section .partner-logo::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.partners-section .partner-item::before,
.partners-section .partner-item::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.partners-section .partner-item:hover .partner-logo {
    border-color: var(--oxpins-base);
    box-shadow: 0 6px 20px rgba(0, 113, 93, 0.2);
    background: rgba(255, 255, 255, 1);
    transform: scale(1.02);
}

.partners-section .partner-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    background: transparent !important;
}

.partners-section .partner-item:hover .partner-img {
    filter: none !important;
    transform: scale(1.05);
}

.partners-section .partner-img::before,
.partners-section .partner-img::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    opacity: 0 !important;
}

.partners-section .partner-name {
    display: none !important;
}

/* News Section - Add Grey Border to Posts */
.news-one__single {
    border: 1px solid #e0e0e0 !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-one__single:hover {
    border-color: #ccc !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-one__content-box {
    border: none !important;
}

/* ============================================
   Partners Section - Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .partners-section {
        padding: 45px 0;
        margin: 35px 0;
    }
    
    .partners-section .partner-item {
        margin: 0 15px;
        padding: 8px;
    }
    
    .partners-section .partner-logo {
        width: 160px;
        height: 100px;
        padding: 8px;
    }
}

@media (max-width: 992px) {
    .partners-section {
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .partners-section .marquee-wrapper {
        margin: 15px 0 20px 0;
        padding: 8px 0;
    }
    
    .partners-section .marquee-text {
        gap: 25px;
        padding-left: 12px;
    }
    
    .partners-section .partner-item {
        margin: 0 12px;
        padding: 8px;
    }
    
    .partners-section .partner-logo {
        width: 140px;
        height: 100px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 35px 0;
        margin: 25px 0;
    }
    
    .partners-section .section-title {
        margin-bottom: 12px;
    }
    
    .partners-section .marquee-wrapper {
        margin: 15px 0 20px 0;
        padding: 8px 0;
    }
    
    .partners-section .marquee-text {
        gap: 20px;
        padding-left: 10px;
    }
    
    .partners-section .partner-item {
        margin: 0 10px;
        padding: 6px;
    }
    
    .partners-section .partner-logo {
        width: 120px;
        height: 80px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 30px 0;
        margin: 20px 0;
    }
    
    .partners-section .section-title {
        margin-bottom: 10px;
    }
    
    .partners-section .marquee-wrapper {
        margin: 12px 0 18px 0;
        padding: 6px 0;
    }
    
    .partners-section .marquee-text {
        gap: 15px;
        padding-left: 8px;
    }
    
    .partners-section .partner-item {
        margin: 0 8px;
        padding: 6px;
    }
    
    .partners-section .partner-logo {
        width: 100px;
        height: 70px;
        padding: 6px;
    }
}

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

.gallery-carousel {
    margin: 0 auto;
}

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

/*
|--------------------------------------------------------------------------
| Chatbot Float Button
|--------------------------------------------------------------------------
*/

.chatbot-float {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    z-index: 99999 !important;
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.chatbot-float-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    font-size: 28px !important;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4) !important;
    transition: all 0.3s ease;
    animation: chatbot-pulse 2s infinite;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 99999 !important;
}

.chatbot-float-btn:hover {
    background: linear-gradient(135deg, #5568d3 0%, #653a8f 100%);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

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

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

@keyframes chatbot-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/*
|--------------------------------------------------------------------------
| Responsive Chatbot Float Button
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
    .chatbot-float {
        bottom: 20px;
        left: 15px;
    }
    
    .chatbot-float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        box-shadow: 0 3px 15px rgba(102, 126, 234, 0.3);
    }
    
    .chatbot-float-btn:hover {
        transform: scale(1.05);
    }
}

/*
|--------------------------------------------------------------------------
| 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;
}

/*
|--------------------------------------------------------------------------
| Mobile Header Actions CSS
|--------------------------------------------------------------------------
*/

/* Mobile Header Actions Container */
.mobile-header-actions {
    gap: 6px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Mobile Cart Button */
.mobile-cart-wrapper {
    display: inline-block;
}

.mobile-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 6px;
    color: var(--oxpins-base);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

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

.mobile-cart-btn i {
    font-size: 14px;
}

.mobile-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #dc3545;
    color: #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    border: 1.5px solid #ffffff;
}

/* Mobile Translate Button */
.mobile-translate-btn {
    display: inline-block;
    position: relative;
}

.mobile-translate-wrapper {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.mobile-translate-wrapper:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.mobile-translate-wrapper i {
    font-size: 14px;
    margin: 0;
}

/* Mobile Translate Container */
#translate-container-mobile {
    position: fixed;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 10001 !important;
    min-width: 200px;
    max-width: 90vw;
}

#translate-container-mobile .goog-te-banner-frame,
#translate-container-mobile .goog-te-menu-frame {
    max-width: 100%;
}

@media (max-width: 767px) {
    #translate-container-mobile {
        right: 10px !important;
        left: auto !important;
    }
}

/* Mobile Toggle Button in Actions */
.mobile-toggle-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 6px;
    color: var(--oxpins-base);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

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

.mobile-toggle-btn i {
    font-size: 14px;
}

/* Mobile Toggle Button - Position with other actions */
@media (max-width: 767px) {
    /* Reduce padding in wrapper to bring elements closer */
    .main-menu__wrapper-inner {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    
    /* Restructure right section for mobile */
    .main-menu__right {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        width: auto;
        flex-shrink: 0;
    }
    
    .main-menu__left {
        flex: 1;
        min-width: 0;
    }
    
    .main-menu__logo {
        max-width: 100%;
    }
    
    .main-menu__logo img {
        max-width: 100%;
        height: auto;
    }
    
    .main-menu__right-top {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0;
        width: auto;
    }
    
    .main-menu__right-top-right {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: 0;
    }
    
    .main-menu__right-bottom {
        display: none;
    }
    
    /* Hide the menu list in mobile header */
    .main-menu__main-menu-box .main-menu__list {
        display: none;
    }
    
    /* Reduce gap between logo and buttons */
    .main-menu__wrapper-inner {
        justify-content: space-between;
        gap: 10px;
    }
}

/*
|--------------------------------------------------------------------------
| Banner Description Font Size and Color Override
|--------------------------------------------------------------------------
*/

.main-slider__title {
    font-size: 15px !important;
    color: #000000 !important;
    line-height: 22px !important;
    font-weight: 400 !important;
}

@media (min-width: 768px) and (max-width: 991px) {
    .main-slider__title {
        font-size: 15px !important;
        color: #000000 !important;
        font-weight: 400 !important;
    }
}

@media (max-width: 767px) {
    .main-slider__title {
        font-size: 14px !important;
        color: #000000 !important;
        font-weight: 400 !important;
    }
}

/* Hide desktop cart in mobile */
@media (max-width: 767px) {
    .topbar-cart-wrapper.d-md-block {
        display: none !important;
    }
    
    .translate-btn-header.d-md-block {
        display: none !important;
    }
    
    .main-menu__right-top-address.d-md-block {
        display: none !important;
    }
    
    .main-menu__right-top-left.d-md-block {
        display: none !important;
    }
}

/* Ensure proper spacing on larger mobile devices */
@media (min-width: 576px) and (max-width: 767px) {
    .mobile-header-actions {
        gap: 8px;
    }
    
    .mobile-cart-btn,
    .mobile-translate-wrapper,
    .mobile-toggle-btn {
        width: 35px;
        height: 35px;
    }
    
    .mobile-cart-btn i,
    .mobile-translate-wrapper i,
    .mobile-toggle-btn i {
        font-size: 16px;
    }
}

/*
|--------------------------------------------------------------------------
|| Stats Section with Map
|--------------------------------------------------------------------------
*/

.stats-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stats-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 600px;
    justify-content: space-between;
}

.stats-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 15px;
}

.stats-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.stats-card:hover::before {
    opacity: 0.35;
}

.stats-card:hover .stats-card__number {
    color: #ffffff;
    transform: scale(1.1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stats-card:hover .stats-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.stats-card:hover .stats-card__label {
    color: #ffffff;
    transform: translateX(5px);
}

.stats-card:hover .stats-card__subtext {
    color: rgba(255, 255, 255, 0.9);
}

.stats-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stats-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.stats-card__icon i {
    font-size: 40px;
    color: #ffffff;
}

/* Card 1 - States (Darker Purple) */
.stats-card-1 .stats-card__icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.stats-card-1::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Card 2 - Members (Blue - Changed from Purple) */
.stats-card-2 .stats-card__icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.stats-card-2::before {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Card 3 - Branches (Darker Orange) */
.stats-card-3 .stats-card__icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stats-card-3::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Card 4 - Blood Donors (Darker Red) */
.stats-card-4 .stats-card__icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.stats-card-4::before {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Card 5 - Volunteers (Darker Teal) */
.stats-card-5 .stats-card__icon {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.stats-card-5::before {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.stats-card__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.stats-card__number {
    font-size: 48px;
    font-weight: 900;
    color: #cbd5e0;
    margin: 0 0 5px 0;
    line-height: 1;
    transition: all 0.3s ease;
}

.stats-card__label {
    font-size: 18px;
    font-weight: 700 !important;
    color: var(--oxpins-black);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.stats-card__subtext {
    font-size: 12px;
    font-weight: 600 !important;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    line-height: 1.4;
    transition: all 0.3s ease;
}

/* New Redesigned Map Section */
.india-map-wrapper-new {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-container-new {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.map-container-new:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.map-header-new {
    background: linear-gradient(135deg, var(--oxpins-base, #00715d) 0%, var(--oxpins-primary, #00715d) 100%);
    padding: 20px 25px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.map-title-new {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-title-new i {
    font-size: 24px;
    opacity: 0.9;
}

.map-content-new {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.map-scroll-wrapper {
    width: 100%;
    height: 100%;
    overflow: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.map-scroll-wrapper:active {
    cursor: grabbing;
}

.map-iframe-new {
    width: 100%;
    height: 450px;
    border: none;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: block;
}

/* Hide Google Maps controls with better overlays */
.map-content-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0.95), transparent);
    pointer-events: none;
    z-index: 10;
}

.map-content-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(248, 249, 250, 0.98), transparent);
    pointer-events: none;
    z-index: 10;
}

/* Additional overlay for top-left controls */
.map-scroll-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 90px;
    background: rgba(248, 249, 250, 0.95);
    pointer-events: none;
    z-index: 11;
    border-radius: 0 0 15px 0;
}

/* Old map styles - keeping for backward compatibility */
.india-map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    padding: 10px;
}

#india-map-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
}

#india-map-scrollable {
    width: 100%;
    height: 100%;
    overflow: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

#india-map-scrollable:active {
    cursor: grabbing;
}

#india-map-scrollable iframe {
    width: 100%;
    height: 500px;
    border: none;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/*
|--------------------------------------------------------------------------
|| Feature Panels (New 3-Panel Design)
|--------------------------------------------------------------------------
*/

.feature-one-new {
    padding: 80px 0;
    background: transparent;
}

.feature-panel {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-panel-1,
.feature-panel-2,
.feature-panel-3 {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 35px rgba(37, 99, 235, 0.25),
        0 8px 20px rgba(37, 99, 235, 0.2),
        0 3px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}

.feature-panel-1:hover,
.feature-panel-2:hover,
.feature-panel-3:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    transform: translateY(-8px) translateZ(20px) rotateX(2deg);
    box-shadow: 
        0 20px 45px rgba(220, 38, 38, 0.35),
        0 12px 30px rgba(220, 38, 38, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.feature-panel__icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: #ffffff;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: all 0.4s ease;
    transform: translateZ(10px);
}

.feature-panel-1 .feature-panel__icon,
.feature-panel-2 .feature-panel__icon,
.feature-panel-3 .feature-panel__icon {
    color: #2563eb;
    border: 3px solid rgba(37, 99, 235, 0.3);
}

.feature-panel-1:hover .feature-panel__icon,
.feature-panel-2:hover .feature-panel__icon,
.feature-panel-3:hover .feature-panel__icon {
    color: #dc2626;
    border: 3px solid rgba(220, 38, 38, 0.3);
}

.feature-panel-4,
.feature-panel-5,
.feature-panel-6 {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 35px rgba(37, 99, 235, 0.25),
        0 8px 20px rgba(37, 99, 235, 0.2),
        0 3px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
}

.feature-panel-4:hover,
.feature-panel-5:hover,
.feature-panel-6:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    transform: translateY(-8px) translateZ(20px) rotateX(2deg);
    box-shadow: 
        0 20px 45px rgba(220, 38, 38, 0.35),
        0 12px 30px rgba(220, 38, 38, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.feature-panel-4 .feature-panel__icon,
.feature-panel-5 .feature-panel__icon,
.feature-panel-6 .feature-panel__icon {
    color: #2563eb;
    border: 3px solid rgba(37, 99, 235, 0.3);
}

.feature-panel-4:hover .feature-panel__icon,
.feature-panel-5:hover .feature-panel__icon,
.feature-panel-6:hover .feature-panel__icon {
    color: #dc2626;
    border: 3px solid rgba(220, 38, 38, 0.3);
}

.feature-panel__icon i {
    font-size: 40px;
}

.feature-panel__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-panel__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.feature-panel__title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-panel__title a:hover {
    color: var(--oxpins-base);
}

.feature-panel__btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ff6b9d;
    color: #ffffff;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(255, 107, 157, 0.3);
}

.feature-panel__btn:hover {
    background: #ff4d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    color: #ffffff;
}

.feature-panel__number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 10px;
    text-align: left;
    letter-spacing: 1px;
    line-height: 1.2;
}

.feature-panel__phone {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 10px;
    text-decoration: none;
    text-align: left;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.feature-panel__phone:hover {
    color: #ffd700;
    transform: scale(1.05);
}

.feature-panel__title span {
    color: #ffffff;
}

/* 3D Icon hover effect for all panels */
.feature-panel:hover .feature-panel__icon {
    transform: translateZ(25px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.9),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .feature-one-new {
        padding: 60px 0;
    }
    
    .feature-panel {
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .feature-panel__icon {
        width: 90px;
        height: 90px;
    }
    
    .feature-panel__icon i {
        font-size: 35px;
    }
    
    .feature-panel__title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .feature-one-new {
        padding: 40px 0;
    }
    
    .feature-panel {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-panel__icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-panel__icon i {
        font-size: 30px;
    }
    
    .feature-panel__content {
        align-items: center;
    }
    
    .feature-panel__title {
        font-size: 16px;
        text-align: center;
    }
    
    .feature-panel__btn {
        padding: 8px 20px;
        font-size: 11px;
        align-self: center;
    }
}

/*
|--------------------------------------------------------------------------
|| Member Counter Section (Taxi Meter Style)
|--------------------------------------------------------------------------
*/

.member-counter-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.counter-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.counter-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.counter-card-today,
.counter-card-total {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.counter-card-today:hover,
.counter-card-total:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.counter-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px 0;
}

.counter-card__number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.counter-digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 45px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.counter-card-today .counter-digit,
.counter-card-total .counter-digit {
    color: #2563eb;
    border: 2px solid rgba(37, 99, 235, 0.4);
    background: #ffffff;
    transition: all 0.4s ease;
}

.counter-card-today:hover .counter-digit,
.counter-card-total:hover .counter-digit {
    color: #dc2626;
    border: 2px solid rgba(220, 38, 38, 0.4);
    background: #ffffff;
}

.counter-digit.active {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .member-counter-section {
        padding: 35px 0;
    }
    
    .counter-card {
        margin-bottom: 25px;
        padding: 22px 18px;
        max-width: 100%;
    }
    
    .counter-card__title {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .counter-digit {
        width: 35px;
        height: 42px;
        font-size: 22px;
    }
    
    .counter-card__number {
        gap: 4px;
    }
}

@media (max-width: 767px) {
    .member-counter-section {
        padding: 30px 0;
    }
    
    .counter-card {
        padding: 20px 15px;
    }
    
    .counter-card__title {
        font-size: 12px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .counter-card__number {
        gap: 4px;
    }
    
    .counter-digit {
        width: 32px;
        height: 38px;
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .counter-card {
        padding: 18px 12px;
    }
    
    .counter-card__title {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .counter-digit {
        width: 28px;
        height: 34px;
        font-size: 18px;
    }
    
    .counter-card__number {
        gap: 3px;
    }
}

/* Responsive Stats Section */
@media (max-width: 991px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-cards-wrapper {
        height: auto;
    }
    
    .stats-card {
        padding: 25px;
        gap: 20px;
        flex: none;
    }
    
    .stats-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .stats-card__icon i {
        font-size: 35px;
    }
    
    .stats-card__number {
        font-size: 40px;
    }
    
    .stats-card__label {
        font-size: 16px;
        font-weight: 700 !important;
    }
    
    .stats-card__subtext {
        font-weight: 600 !important;
    }
    
    .india-map-wrapper {
        margin-top: 40px;
    }
    
    .india-map-wrapper-new {
        margin-top: 40px;
    }
    
    .map-container-new {
        height: 450px;
    }
    
    .map-iframe-new {
        height: 400px;
    }
    
    .map-header-new {
        padding: 18px 20px;
    }
    
    .map-title-new {
        font-size: 18px;
    }
}

/* India Presence Image */
.india-presence-image-wrapper {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.india-presence-image-wrapper:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.india-presence-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .india-presence-image-wrapper {
        margin-top: 20px;
        border-radius: 15px;
    }
    
    .india-presence-image {
        border-radius: 15px;
    }
}

/* Campaign Carousel Navigation - Removed */
.campaign-carousel-page .campaign-carousel.owl-theme .owl-nav {
    display: none !important;
}

.campaign-carousel-page .campaign-carousel.owl-theme .owl-dots {
    display: none !important;
}

@media (max-width: 768px) {
    .campaign-carousel-page .campaign-carousel.owl-theme .owl-nav {
        padding: 0 10px;
    }
    
    .campaign-carousel-page .campaign-carousel.owl-theme .owl-nav .owl-prev,
    .campaign-carousel-page .campaign-carousel.owl-theme .owl-nav .owl-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .campaign-carousel-page .campaign-carousel.owl-theme .owl-nav .owl-prev {
        left: -20px;
    }
    
    .campaign-carousel-page .campaign-carousel.owl-theme .owl-nav .owl-next {
        right: -20px;
    }
}

/* Our Fields of Work Section */
.fields-of-work-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    border: none;
    border-radius: 0;
    margin: 0;
    overflow: hidden;
}

.fields-of-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 93, 0.3), transparent);
}

.fields-of-work-title {
    font-size: 42px;
    font-weight: 700;
    color: #dc2626;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
    position: relative;
}

.fields-of-work-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.field-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 30px 25px;
    border: 2px dotted #00715d;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 113, 93, 0.05) 0%, rgba(247, 115, 33, 0.05) 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1),
                0 4px 10px rgba(0, 113, 93, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: perspective(1000px) rotateX(2deg) translateZ(0);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

/* Different soft background colors for each card */
.field-item-equality {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.06) 100%) !important;
    border-color: rgba(59, 130, 246, 0.5) !important;
}

.field-item-freedom {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.06) 100%) !important;
    border-color: rgba(16, 185, 129, 0.5) !important;
}

.field-item-exploitation {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.06) 100%) !important;
    border-color: rgba(245, 158, 11, 0.5) !important;
}

.field-item-religion {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.06) 100%) !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
}

.field-item-cultural {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(219, 39, 119, 0.06) 100%) !important;
    border-color: rgba(236, 72, 153, 0.5) !important;
}

.field-item-remedies {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.06) 100%) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
}

.field-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 20px;
}

.field-item:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-15px) translateZ(20px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(0, 113, 93, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: #005a4a;
}

.field-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2),
                0 5px 15px rgba(0, 113, 93, 0.3),
                inset 0 2px 5px rgba(255, 255, 255, 0.3),
                inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    transform: perspective(500px) translateZ(10px);
    position: relative;
}

.field-icon i {
    font-size: 50px;
    color: #ffffff;
}

.field-icon-equality {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.field-icon-freedom {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.field-icon-exploitation {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.field-icon-religion {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.field-icon-cultural {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.field-icon-remedies {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.field-item:hover .field-icon {
    transform: perspective(500px) translateZ(25px) scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3),
                0 8px 20px rgba(0, 113, 93, 0.4),
                inset 0 2px 5px rgba(255, 255, 255, 0.4),
                inset 0 -2px 5px rgba(0, 0, 0, 0.15);
}

.field-label {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: all 0.3s ease;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.field-label-equality {
    color: #3b82f6;
}

.field-label-freedom {
    color: #10b981;
}

.field-label-exploitation {
    color: #f59e0b;
}

.field-label-religion {
    color: #8b5cf6;
}

.field-label-cultural {
    color: #ec4899;
}

.field-label-remedies {
    color: #ef4444;
}

.field-article {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-item-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
    display: block;
}

.field-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.field-item:hover .field-label {
    transform: scale(1.05);
}

/* Responsive Fields of Work Section */
@media (max-width: 1200px) {
    .fields-of-work-wrapper {
        gap: 30px;
    }
    
    .field-icon {
        width: 100px;
        height: 100px;
    }
    
    .field-icon i {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .fields-of-work-section {
        padding: 60px 15px;
        border: none;
        border-radius: 0;
        margin: 0;
    }
    
    .fields-of-work-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .fields-of-work-wrapper {
        gap: 20px;
        flex-wrap: nowrap;
        padding: 0 10px;
    }
    
    .field-item {
        flex: 1;
        min-width: 0;
        padding: 25px 15px;
        border: 2px dotted #00715d;
        border-radius: 15px;
        background: linear-gradient(135deg, rgba(0, 113, 93, 0.05) 0%, rgba(247, 115, 33, 0.05) 100%);
        transform: perspective(1000px) rotateX(1deg) translateZ(0);
        height: 100%;
        min-height: 250px;
    }
    
    .field-item:hover {
        transform: perspective(1000px) rotateX(0deg) translateY(-12px) translateZ(15px) scale(1.01);
    }
    
    .field-label {
        min-height: 45px;
    }
    
    .field-icon {
        width: 80px;
        height: 80px;
    }
    
    .field-icon i {
        font-size: 30px;
    }
    
    .field-label {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .fields-of-work-section {
        padding: 50px 10px;
        border: none;
        border-radius: 0;
        margin: 0;
    }
    
    .fields-of-work-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .fields-of-work-wrapper {
        gap: 15px;
        flex-wrap: nowrap;
        padding: 0 5px;
    }
    
    .field-item {
        flex: 1;
        min-width: 0;
        padding: 20px 12px;
        border: 2px dotted #00715d;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(0, 113, 93, 0.05) 0%, rgba(247, 115, 33, 0.05) 100%);
        transform: perspective(1000px) rotateX(1deg) translateZ(0);
        height: 100%;
        min-height: 220px;
    }
    
    .field-item:hover {
        transform: perspective(1000px) rotateX(0deg) translateY(-10px) translateZ(12px) scale(1.01);
    }
    
    .field-label {
        min-height: 40px;
        font-size: 14px;
    }
    
    .field-icon {
        width: 70px;
        height: 70px;
    }
    
    .field-icon i {
        font-size: 25px;
    }
    
    .field-label {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .fields-of-work-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .fields-of-work-wrapper {
        gap: 12px;
        flex-wrap: nowrap;
        padding: 0;
    }
    
    .field-item {
        flex: 1;
        min-width: 0;
        padding: 18px 10px;
        border: 2px dotted #00715d;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(0, 113, 93, 0.05) 0%, rgba(247, 115, 33, 0.05) 100%);
        transform: perspective(1000px) rotateX(0.5deg) translateZ(0);
        height: 100%;
        min-height: 200px;
    }
    
    .field-item:hover {
        transform: perspective(1000px) rotateX(0deg) translateY(-8px) translateZ(10px) scale(1.01);
    }
    
    .field-label {
        min-height: 35px;
        font-size: 12px;
    }
    
    .field-icon {
        width: 60px;
        height: 60px;
    }
    
    .field-icon i {
        font-size: 22px;
    }
    
    .field-label {
        font-size: 10px;
    }
}

@media (max-width: 767px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-cards-wrapper {
        gap: 15px;
        height: auto;
    }
    
    .stats-card {
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
        flex: none;
    }
    
    .stats-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .stats-card__icon i {
        font-size: 30px;
    }
    
    .stats-card__number {
        font-size: 36px;
    }
    
    .stats-card__label {
        font-size: 14px;
        font-weight: 700 !important;
    }
    
    .stats-card__subtext {
        font-size: 11px;
        font-weight: 600 !important;
    }
    
    .india-map-wrapper-new {
        margin-top: 30px;
    }
    
    .map-container-new {
        height: 400px;
        border-radius: 15px;
    }
    
    .map-header-new {
        padding: 15px 18px;
    }
    
    .map-title-new {
        font-size: 16px;
    }
    
    .map-title-new i {
        font-size: 20px;
    }
    
    .map-iframe-new {
        height: 350px;
    }
    
    .map-scroll-wrapper::before {
        width: 280px;
        height: 70px;
    }
}

/* Top Bar Header Styles */
.top-bar-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0 !important;
}

/* Remove gap between topbar and main menu */
.main-header {
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    z-index: 9999 !important;
}

.top-bar-header {
    position: relative;
    z-index: 9999 !important;
}

.main-menu {
    position: relative;
    z-index: 9999 !important;
}

.stricky-header {
    z-index: 9999 !important;
}

.stricky-header.stricky-fixed {
    z-index: 9999 !important;
}

.site-footer {
    position: relative;
    z-index: 1 !important;
}

.main-menu {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.main-menu__wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-phone,
.top-bar-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.top-bar-phone i,
.top-bar-email i {
    font-size: 14px;
    color: #ffffff;
}

.top-bar-phone a,
.top-bar-email a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-phone a:hover,
.top-bar-email a:hover {
    color: #fbbf24;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Top Bar Search Box */
.top-bar-search-box {
    flex-shrink: 0;
}

.top-bar-search-form {
    margin: 0;
    padding: 0;
}

.top-bar-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.top-bar-search-input {
    width: 250px;
    height: 40px;
    padding: 0 45px 0 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1.5px solid transparent;
    border-radius: 30px;
    font-size: 13px;
    color: #1f2937;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-bar-search-input::placeholder {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.top-bar-search-input:focus {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-color: #2563eb;
    box-shadow: 
        0 8px 25px rgba(37, 99, 235, 0.2),
        0 4px 12px rgba(37, 99, 235, 0.15),
        0 0 0 4px rgba(37, 99, 235, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.01);
}

.top-bar-search-input:hover {
    border-color: #cbd5e1;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.top-bar-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    padding: 0;
    box-shadow: 
        0 4px 12px rgba(37, 99, 235, 0.3),
        0 2px 6px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.top-bar-search-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-50%) scale(1.15) rotate(5deg);
    box-shadow: 
        0 6px 20px rgba(37, 99, 235, 0.4),
        0 3px 10px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.top-bar-search-btn:active {
    transform: translateY(-50%) scale(1.05) rotate(0deg);
}

.top-bar-search-btn i {
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.top-bar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-nav a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-bar-nav a:hover {
    color: #fbbf24;
    transform: translateY(-1px);
}

.top-bar-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.top-bar-btn i {
    font-size: 14px;
    display: inline-block;
    margin-right: 0;
    line-height: 1;
    vertical-align: middle;
}

.top-bar-btn-cart {
    background: #ffffff;
    color: #1e3a8a;
    border: none;
}

.top-bar-btn-cart:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    color: #1e3a8a;
}

.top-bar-cart-badge {
    background: #dc2626;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: -5px;
    right: -5px;
}

.top-bar-btn-donations {
    background: #dc2626;
    color: #ffffff;
    border: none;
}

.top-bar-btn-donations:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    color: #ffffff;
}

.top-bar-btn-branches {
    background: #3b82f6;
    color: #ffffff;
    border: none;
}

.top-bar-btn-branches:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.top-bar-btn-complaints {
    background: #9333ea;
    color: #ffffff;
    border: none;
}

.top-bar-btn-complaints:hover {
    background: #7e22ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
    color: #ffffff;
}

/* Logo Size Adjustment */
.main-menu__logo img {
    max-height: 55px !important;
    max-width: 280px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Logo Space Adjustment - More space for logo */
.main-menu__left {
    margin-right: 120px !important;
}

/* Main Menu Text - Shift to right */
.main-menu__main-menu-box {
    margin-left: 30px !important;
}

/* Main Menu Height Adjustment */
.main-menu__wrapper {
    padding-top: 0 !important;
    padding-bottom: 10px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.main-menu__wrapper-inner {
    min-height: 60px !important;
    align-items: center !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.main-menu__right-bottom {
    padding: 10px 0 !important;
    min-height: 35px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Join HRCI Button - Remove Margins */
.main-menu__main-menu-content-box {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.main-menu__search-cat-btn-box {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.main-menu__btn-box {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.main-menu__btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Top Bar Translate */
.top-bar-translate {
    position: relative;
}

.top-bar-translate-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

.top-bar-translate-wrapper:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.top-bar-translate-wrapper i {
    font-size: 14px;
    color: #ffffff;
}

#translate-container-topbar {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 10000 !important;
    min-width: 200px;
}

#translate-container-topbar.show {
    display: block;
}

/* Responsive */
@media (max-width: 1199px) {
    .top-bar-nav {
        gap: 15px;
    }
    
    .top-bar-nav a {
        font-size: 13px;
    }
    
    .top-bar-btn {
        padding: 7px 16px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .top-bar-header {
        padding: 8px 0;
    }
    
    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: space-between;
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-search-box {
        width: 100%;
    }
    
    .top-bar-search-input {
        width: 100%;
    }
    
    .top-bar-nav {
        gap: 12px;
    }
    
    .top-bar-nav a {
        font-size: 12px;
    }
    
    .top-bar-buttons {
        gap: 8px;
        width: 100%;
        justify-content: space-between;
    }
    
    .top-bar-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .top-bar-contact {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .top-bar-phone,
    .top-bar-email {
        font-size: 12px;
    }
    
    .top-bar-nav {
        display: none;
    }
    
    .top-bar-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .top-bar-btn {
        width: 100%;
        justify-content: center;
    }
}