
            /*==================================================
    HERO SECTION STYLES
==================================================*/

.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh; /* Adjust height as needed */
    background: url('./img/about/anamika.png') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

/* Semi-transparent dark overlay for high text contrast */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 30, 20, 0.65); /* Subtle dark green-tinted overlay */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

/* Badge Top Accent */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffb74d;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-badge i {
    margin-right: 6px;
}

/* Main Heading */
.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* Subheading */
.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #81c784; /* Soft green highlight */
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Description */
.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: #f0f0f0;
    margin-bottom: 35px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Action Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: #2e7d32;
    color: #ffffff !important;
    border: 2px solid #2e7d32;
    border-radius: 4px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: #1b5e20;
    border-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-donate-custom {
    background: #f04e30;
    color: #ffffff !important;
    border: 2px solid #f04e30;
    border-radius: 4px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-donate-custom:hover {
    background: #ffffff;
    color: #f04e30 !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-description {
        font-size: 15px;
    }
    .hero-section {
        min-height: 70vh;
        padding: 60px 0;
    }
}

/*==================================================
    ORGANIZATION DETAILS SECTION
==================================================*/

.org-details-section {
    background-color: #f8f9fa;
}

.info-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    border-top: 4px solid #2e7d32; /* Primary Theme Green */
}

.info-card-header {
    background: #f1f8e9;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.info-card-header i {
    font-size: 28px;
    color: #2e7d32;
}

.info-card-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.info-card-body {
    padding: 25px;
}

/* Detail List Styling */
.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 15px;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list strong {
    color: #444;
}

.detail-list span {
    color: #2e7d32;
    font-weight: 600;
    text-align: right;
}

/* Check List Styling */
.check-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.check-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-list li i {
    color: #2e7d32;
    margin-top: 3px;
}

/* Office Boxes */
.office-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.office-box:hover {
    transform: translateY(-5px);
}

.office-box.active {
    border-color: #2e7d32;
    background: #ffffff;
}

.office-box .icon {
    font-size: 36px;
    color: #2e7d32;
    margin-bottom: 15px;
    display: inline-block;
}

.office-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.office-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.office-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.office-contact i {
    color: #f04e30;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .detail-list li {
        flex-direction: column;
        gap: 2px;
    }
    .detail-list span {
        text-align: left;
    }
}

/*==================================================
    ABOUT & ORG DETAILS STYLES
==================================================*/

.about-org-section {
    background-color: #f8f9fa;
}

.org-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    border-top: 4px solid #2e7d32;
    overflow: hidden;
}

.org-card-header {
    background: #f1f8e9;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.org-card-header i {
    font-size: 24px;
    color: #2e7d32;
}

.org-card-header h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #222;
}

.org-card-body {
    padding: 22px 25px;
}

/* Info List */
.org-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.org-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 14px;
}

.org-info-list li:last-child {
    border-bottom: none;
}

.org-info-list strong {
    color: #444;
}

.org-info-list span {
    color: #2e7d32;
    font-weight: 600;
    text-align: right;
}

/* Objectives Bullet List */
.org-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.org-bullet-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.org-bullet-list li i {
    color: #2e7d32;
    margin-top: 3px;
    font-size: 16px;
}

/* Experience Banner */
.exp-banner {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-left: 5px solid #ff9800;
}

.exp-tag {
    color: #ff9800;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.exp-title {
    font-size: 20px;
    margin: 5px 0 10px;
    font-weight: 700;
}

.exp-text {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.exp-item {
    background: #fdfbf7;
    border: 1px solid #f3e5f5;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.exp-item i {
    color: #2e7d32;
    margin-right: 8px;
}

/* Office Cards */
.office-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
}

.office-card.highlight {
    border-color: #2e7d32;
}

.office-card .icon-wrap {
    width: 50px;
    height: 50px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.office-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.office-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-details {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #ddd;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.contact-details i {
    color: #f04e30;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .org-info-list li {
        flex-direction: column;
        gap: 2px;
    }
    .org-info-list span {
        text-align: left;
    }
}


/*==================================================
    PHOTO GALLERY SLIDER STYLES
==================================================*/

.gallery-slider-section {
    background-color: #ffffff;
}

.gallery-slide-item {
    padding: 5px;
}

.gallery-img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.gallery-img-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* Hover Zoom Effect */
.gallery-img-box:hover img {
    transform: scale(1.1);
}

/* Overlay Styling */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.85); /* Theme Primary Green Overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.gallery-img-box:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.gallery-img-box:hover .gallery-info {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gallery-info h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.btn-sm {
    padding: 6px 15px;
    font-size: 12px;
    background: #ffffff;
    color: #2e7d32 !important;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-sm:hover {
    background: #222222;
    color: #ffffff !important;
}

/* Navigation Arrow Controls */
#gallery-carousel .owl-nav {
    margin-top: 25px;
    text-align: center;
}

#gallery-carousel .owl-prev,
#gallery-carousel .owl-next {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background: #2e7d32 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    margin: 0 6px;
    transition: all 0.3s ease;
}

#gallery-carousel .owl-prev:hover,
#gallery-carousel .owl-next:hover {
    background: #ff9800 !important;
}

@media (max-width: 768px) {
    .gallery-img-box img {
        height: 220px;
    }
}

/*==================================================
    MEDIA GALLERY SLIDER STYLES
==================================================*/

.media-gallery-section {
    background-color: #f8f9fa;
}

/* Distinct Media Tag Accent Color */
.media-tag {
    background: #d9534f !important; /* Crimson Accent for Media/News */
}

/* Navigation Arrow Controls for Media Slider */
#media-gallery-carousel .owl-nav {
    margin-top: 25px;
    text-align: center;
}

#media-gallery-carousel .owl-prev,
#media-gallery-carousel .owl-next {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background: #2e7d32 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    margin: 0 6px;
    transition: all 0.3s ease;
}

#media-gallery-carousel .owl-prev:hover,
#media-gallery-carousel .owl-next:hover {
    background: #d9534f !important;
}