
/* certificate section */
/* NGO Darpan Certificate Section */
.ngo-darpan-section {
  color: #000;
}

.ngo-darpan-section h2,
.ngo-darpan-section h3,
.ngo-darpan-section h4,
.ngo-darpan-section p,
.ngo-darpan-section span {
  color: #000;   /* force black */
  opacity: 1 !important; /* cancel any fade */
}
/* Scope only inside NGO Darpan section */
.ngo-darpan-section .mini-cert-badge {
  background: #fff7e6; /* light yellow bg */
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #444 !important;   /* 🔥 force text visible */
}

/* Icon and text separated */
.ngo-darpan-section .mini-cert-icon {
  font-size: 1.2rem;
}

.ngo-darpan-section .mini-cert-text {
  color: #444 !important;   /* 🔥 fix white text problem */
}

/* Highlight items */
.ngo-darpan-section .highlight-text {
  color: #222 !important;
  font-weight: 500;
}

/* Certificate details */
.ngo-darpan-section .detail-label,
.ngo-darpan-section .detail-value {
  color: #333;
}
.ngo-darpan-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.ngo-darpan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="govPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ff9933" opacity="0.1"/><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="35" cy="35" r="1.5" fill="%23138808" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23govPattern)"/></svg>');
    pointer-events: none;
}

/* Government Recognition Header */
.recognition-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.recognition-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 25px 40px;
   
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: fit-content;
    margin: 0 auto 20px;
}

.flag-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.recognition-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.recognition-underline {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

.underline-segment {
    width: 80px;
    height: 4px;
    border-radius: 2px;
}

.underline-segment.orange {
    background: #ff9933;
}

.underline-segment.white {
    background: #ffffff;
    border: 1px solid #ddd;
}

.underline-segment.green {
    background: #138808;
}

/* Main Content Grid */
.darpan-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* Left Side - Areas of Work */
.areas-work-section {
    position: relative;
}

.work-content-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.work-content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.15);
}

.work-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #007bff 0%, #28a745 50%, #ffc107 100%);
}

/* Work Icon Container */
.work-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.work-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.icon-symbol {
    font-size: 1.8rem;
    color: white;
}

.icon-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    border-color: rgba(0, 123, 255, 0.3);
    animation-delay: 0s;
}

.ring-2 {
    width: 90px;
    height: 90px;
    border-color: rgba(40, 167, 69, 0.3);
    animation-delay: 0.5s;
}

.ring-3 {
    width: 100px;
    height: 100px;
    border-color: rgba(255, 193, 7, 0.3);
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Work Text Content */
.work-text-content {
    text-align: center;
}

.work-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.work-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Work Highlights */
.work-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.highlight-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #495057;
}

/* Work CTA Button */
.work-cta {
    margin-top: 30px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.view-more-btn:hover::before {
    left: 100%;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.5);
    color: white;
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-text {
    flex: 1;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-more-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Right Side - Certificate Section */
.certificate-section {
    position: relative;
}

.certificate-header {
    text-align: center;
    margin-bottom: 40px;
}

.cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    border: 2px solid #007bff;
    max-width: fit-content;
    margin: 0 auto 20px;
}

.cert-icon {
    font-size: 1.8rem;
    color: #007bff;
}

.cert-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.cert-description {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Certificate Container */
.certificate-container {
    position: relative;
    margin-bottom: 40px;
}

.certificate-frame {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid #f1f3f4;
    position: relative;
    overflow: hidden;
}

.certificate-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #ff9933 0%, #ffffff 50%, #138808 100%);
}

.certificate-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.certificate-image-wrapper:hover {
    transform: scale(1.02);
}

.certificate-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.certificate-image-wrapper:hover .certificate-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.overlay-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Certificate Details */
.certificate-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.detail-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 5px;
}

.detail-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

.status-active {
    color: #28a745 !important;
    position: relative;
}

.status-active::before {
    content: '●';
    color: #28a745;
    margin-right: 5px;
}

/* Verification Badge */
.verification-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    z-index: 10;
}

.verification-icon {
    font-size: 1.2rem;
    font-weight: bold;
    background: white;
    color: #28a745;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.verification-text {
    display: flex;
    flex-direction: column;
}

.verification-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
}

.verification-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1;
}

/* Additional Certifications */
.additional-certs {
    text-align: center;
}

.additional-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mini-cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #856404;
    transition: all 0.3s ease;
}

.mini-cert-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.mini-cert-icon {
    font-size: 1rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.trust-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trust-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.trust-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .darpan-content-grid {
        gap: 40px;
    }
    
    .work-content-card,
    .certificate-frame {
        padding: 40px;
    }
    
    .recognition-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 1024px) {
    .darpan-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .certificate-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .ngo-darpan-section {
        padding: 60px 0;
    }
    
    .recognition-badge {
        flex-direction: column;
        gap: 15px;
        padding: 20px 25px;
    }
    
    .recognition-title {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .flag-icon {
        font-size: 1.5rem;
    }
    
    .work-content-card,
    .certificate-frame {
        padding: 30px;
    }
    
    .work-highlights {
        gap: 8px;
    }
    
    .highlight-item {
        padding: 10px 15px;
    }
    
    .cert-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
    }
    
    .verification-badge {
        position: static;
        margin: 20px auto 0;
        max-width: fit-content;
    }
}

@media (max-width: 480px) {
    .ngo-darpan-section {
        padding: 40px 0;
    }
    
    .recognition-badge {
        padding: 15px 20px;
        margin: 0 auto 15px;
    }
    
    .recognition-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .underline-segment {
        width: 50px;
        height: 3px;
    }
    
    .work-content-card,
    .certificate-frame {
        padding: 20px;
        border-radius: 20px;
    }
    
    .work-title {
        font-size: 1.4rem;
    }
    
    .work-description {
        font-size: 1rem;
    }
    
    .view-more-btn {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
    
    .cert-title {
        font-size: 1.3rem;
    }
    
    .cert-description {
        font-size: 0.95rem;
    }
    
    .trust-item {
        padding: 20px 10px;
    }
    
    .trust-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        padding: 12px;
    }
    
    .additional-title {
        font-size: 1.1rem;
    }
    
    .mini-cert-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}



/* Applies margin-top: 20px on mobile devices */
@media (max-width: 768px) {
  .mobile-margin-top {
    margin-top: 30px !important;
  }
  /* Applies a general margin of -20px */
.negative-margin {
 
 margin-top: -130px !important;
}
}




/* video css */
/* Video Highlights Section */
.video-highlights-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.video-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23007bff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Video Content Layout */
.video-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Video Component (Left Side) */
.video-component {
    position: relative;
}

.video-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Video Title Section */
.video-title-section {
    padding: 25px 30px;
    background: white;
}

.video-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Description Component (Right Side) */
.description-component {
    position: relative;
}

.description-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.description-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
}

.description-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #28a745);
    border-radius: 2px;
}

/* Event Description */
.event-description {
    margin-bottom: 30px;
}

.main-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 500;
}

.secondary-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

/* Event Highlights */
.event-highlights {
    margin-bottom: 30px;
}

.highlights-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 1rem;
    color: #495057;
    transition: all 0.3s ease;
}

.highlights-list li:hover {
    color: #007bff;
    transform: translateX(5px);
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlight-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

/* Event Statistics */
.event-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Description CTA */
.description-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

.btn-icon {
    font-size: 1.1rem;
}

/* Video Controls Section */
.video-controls-section {
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.video-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #495057;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.action-btn .btn-icon {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-content-wrapper {
        gap: 40px;
    }
    
    .description-content {
        padding: 30px;
        position: static;
    }
    
    .event-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .video-highlights-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .video-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .description-content {
        padding: 25px;
    }
    
    .description-title {
        font-size: 1.6rem;
    }
    
    .event-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .description-cta {
        flex-direction: column;
    }
    
    .cta-button {
        flex: none;
    }
    
    .video-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .video-highlights-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .video-container {
        border-radius: 15px;
    }
    
    .description-content {
        padding: 20px;
        border-radius: 15px;
    }
    
    .video-title-section {
        padding: 20px;
    }
    
    .video-title {
        font-size: 1.2rem;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .highlights-list li {
        padding: 10px 0;
        font-size: 0.95rem;
    }
    
    .main-description,
    .secondary-description {
        font-size: 0.95rem;
    }
}

/* Loading States */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: none;
}

.video-loading.active {
    display: block;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility Improvements */
.video-component:focus-within {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

.main-video:focus {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .video-container,
    .description-content {
        border: 2px solid #000;
    }
    
    .cta-button,
    .action-btn {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .video-container:hover,
    .cta-button:hover,
    .action-btn:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .video-highlights-section {
        background: white !important;
        box-shadow: none !important;
    }
    
    .video-component {
        display: none;
    }
    
    .video-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .video-controls-section,
    .description-cta {
        display: none;
    }
}

/* Scope to NGO Darpan section */
.ngo-darpan-section .certificate-details {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.ngo-darpan-section .detail-item {
  background: #f5f7fa;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
}

/* Labels */
.ngo-darpan-section .detail-label {
  display: block;
  font-size: 0.9rem;
  color: #555 !important;   /* 🔥 override white */
  margin-bottom: 4px;
}

/* Values */
.ngo-darpan-section .detail-value {
  font-weight: 700;
  font-size: 1rem;
  color: #222 !important;   /* 🔥 keep bold black */
}

/* Active status special */
.ngo-darpan-section .detail-value.status-active {
  color: #28a745 !important;   /* green */
  font-weight: 700;
}
/* Scoped fix only for Trust Section text */
/* Force black text ONLY inside trust-indicators section */
/* .trust-indicators .trust-item .trust-content .trust-title,
.trust-indicators .trust-item .trust-content .trust-subtitle {
  color: #000 !important;
} */

/* Scoped override for trust block (conservative) */
/* .ngo-darpan-section .trust-item .trust-title,
.ngo-darpan-section .trust-item .trust-subtitle {
  color: #000 !important;
  opacity: 1 !important;
  text-shadow: none !important;
} */

/* Strong reset for any inherited visual effects */
.ngo-darpan-section .trust-indicators,
.ngo-darpan-section .trust-indicators * {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  -webkit-text-fill-color: initial !important;
  text-shadow: none !important;
}

/* Force black text for labels + subtitles */
.ngo-darpan-section .trust-item .trust-title,
.ngo-darpan-section .trust-item .trust-subtitle {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important; /* for WebKit-based overrides */
}

/* Fix broken styles ONLY inside Video Highlights */
.video-highlights-section .section-header,
.video-highlights-section .section-title,
.video-highlights-section .section-subtitle {
  position: relative !important;
  z-index: 2 !important;
  color: #263238 !important;         /* dark readable text */
  opacity: 1 !important;
  -webkit-text-fill-color: #263238 !important; /* cancel transparent text */
  background: none !important;       /* remove unwanted background-clip effect */
  text-shadow: none !important;
  mix-blend-mode: normal !important; /* cancel blending overlays */
  filter: none !important;           /* remove blur/fade */
}

/* optional underline fix */
.video-highlights-section .title-underline {
  background-color: #2196f3 !important; /* keep blue/green underline visible */
  height: 3px;
  width: 60px;
  margin: 10px auto;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}
/* Remove unwanted green overlay in Video Highlights */
.video-highlights-section .section-header,
.video-highlights-section .section-header::before,
.video-highlights-section .section-header::after,
.video-highlights-section::before,
.video-highlights-section::after {
  background: none !important;
  background-image: none !important;
}
/* 🎯 Scoped CSS for Event Highlights inside Video Highlights Section */
.video-highlights-section .event-highlights {
  margin-top: 25px;
}

.video-highlights-section .event-highlights .highlights-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e293b; /* dark grey */
}

.video-highlights-section .event-highlights .highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-highlights-section .event-highlights .highlights-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333; /* ensure black text */
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.video-highlights-section .event-highlights .highlights-list li:last-child {
  border-bottom: none; /* remove line on last item */
}

.video-highlights-section .event-highlights .highlight-icon {
  font-size: 20px;
  flex-shrink: 0; /* prevents emoji from shrinking */
}

/* 🎯 Scoped CSS for Event Stats */
.video-highlights-section .event-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
  background: #f8fafc; /* light background */
  border-radius: 12px;
  padding: 20px;
}

.video-highlights-section .event-stats .stat-item {
  text-align: center;
}

.video-highlights-section .event-stats .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #007bff; /* blue for numbers */
}

.video-highlights-section .event-stats .stat-label {
  font-size: 14px;
  color: #555;
}
/* Force black text for Event Highlights */
.video-highlights-section .event-highlights .highlights-list li span {
  color: #000 !important; /* enforce black text */
  font-weight: 400;
}

/* Keep icons natural (emoji style) */
.video-highlights-section .event-highlights .highlight-icon {
  font-size: 20px;
  flex-shrink: 0;
  color: inherit;
}

/* Force subtitle under Video Highlights to be black */
.video-highlights-section .section-subtitle {
  color: #000 !important;
}


/* CTA Section */
.csr-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 15px;
    color: white;
    margin-bottom: 30px;
}

.csr-cta h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.csr-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* CSR Buttons */
.csr-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.csr-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.3);
       color: #fff !important;
}

.secondary-btn {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%);
    color: white;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #5a2d91 0%, #4c1d7a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(111, 66, 193, 0.3);
       color: #fff !important;
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.csr-btn:hover .btn-arrow {
    transform: translateX(5px);
 
}

/* Responsive Design */
@media (max-width: 768px) {
    .csr-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-content {
        flex-direction: column;
        text-align: center;
    }
    
    .csr-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .csr-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .highlight-box,
    .mission-content,
    .csr-cta {
        padding: 20px;
    }
    
    .lead-text {
        font-size: 1rem;
    }
}

/* CSR Buttons Wrapper */
.csr-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

/* General Button Styles */
.csr-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Icon inside button */
.csr-btn .btn-icon {
  font-size: 20px;       /* emoji size */
  margin-right: 10px;    /* spacing between icon & text */
  display: inline-flex;
  align-items: center;
}

/* Arrow styling */
.csr-btn .btn-arrow {
  margin-left: 10px;
  font-size: 18px;
  opacity: 0.7;
  transition: margin-left 0.3s ease;
}

.csr-btn:hover .btn-arrow {
  margin-left: 15px; /* arrow slides when hover */
}

/* Primary button (blue) */
.primary-btn {
  background: linear-gradient(90deg, #007bff, #0056d2);
}

/* Secondary button (purple) */
.secondary-btn {
  background: linear-gradient(90deg, #7b2ff7, #5712c9);
}

/* Remove unwanted gap between award section and foundation recognition section
.ngo-darpan-section  {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.crs-impact-section{
  margin-top: 0 !important;
  padding-top: 0 !important;
} */
/* Remove unwanted gap between guests and ngo section */
/* .guests-section {
  margin-bottom: 15px;    small controlled gap 
  padding-bottom: 15px;
}

.ngo-darpan-section {
  margin-top: 0;         /* remove large gap 
  padding-top: 10px;     /* add small breathing space 
}

/* Responsive adjustments 
@media (min-width: 768px) {
  .guests-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .ngo-darpan-section {
    padding-top: 15px;
  }
}

@media (min-width: 1024px) {
  .guests-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .ngo-darpan-section {
    padding-top: 20px;
  }
} */
/* Tighter spacing between guests-section and ngo-darpan-section */
.guests-section {
  margin-bottom: 8px;   /* very small gap */
  padding-bottom: 8px;
}

.ngo-darpan-section {
  margin-top: 0;
  padding-top: 5px;     /* minimal breathing space */
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .guests-section {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .ngo-darpan-section {
    padding-top: 8px;
  }
}

@media (min-width: 1024px) {
  .guests-section {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .ngo-darpan-section {
    padding-top: 10px;
  }
}

