/* 
    #40b968 main color
*/

/* Zone 1: Image Section */
.image-section {
    padding: 30px 0;
}

.image-wrapper-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.image-wrapper-logo img {
    width: 50%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.image-wrapper-logo img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(64, 185, 104, 0.25);
}

.image-wrapper-full {
    margin-bottom: 30px;
}

.image-wrapper-full img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.image-wrapper-full img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(64, 185, 104, 0.2);
}

@media (max-width: 768px) {
    .image-wrapper-logo img {
        width: 80%;
        border-radius: 15px;
    }
    
    .image-wrapper-full img {
        border-radius: 10px;
    }
}

/* Header Section */
.section-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(64, 185, 104, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(64, 185, 104, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.header-content {
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(64, 185, 104, 0.3);
}

.section-label i {
    margin-right: 5px;
}

.header-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Content Section */
.section-content {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Introduction Section */
.intro-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.halal-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(64, 185, 104, 0.3);
}

.halal-icon i {
    font-size: 4rem;
    color: white;
}

.intro-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
    text-align: justify;
}

/* Section Title */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #40b968;
}

/* Steps Section */
.steps-section {
    margin-bottom: 50px;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(64, 185, 104, 0.2);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(64, 185, 104, 0.1) 0%, rgba(45, 138, 77, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: #40b968;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Documents Section */
.documents-section {
    margin-bottom: 50px;
}

.document-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.document-card:hover {
    box-shadow: 0 4px 20px rgba(64, 185, 104, 0.15);
}

.document-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.document-title i {
    color: #40b968;
}

.document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    line-height: 1.6;
}

.document-list li:last-child {
    border-bottom: none;
}

.document-list li i {
    color: #40b968;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Forms Section */
.forms-section {
    margin-bottom: 50px;
}

.form-download-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(64, 185, 104, 0.2);
}

.form-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.15) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-icon i {
    font-size: 1.8rem;
    color: #dc3545;
}

.form-icon-word {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(53, 120, 220, 0.1) 0%, rgba(53, 120, 220, 0.15) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-icon-word i {
    font-size: 1.8rem;
    color: #3578dc;
}

.form-info {
    flex: 1;
}

.form-name {
    font-size: 1rem;
     color: #333;
    margin-bottom: 5px;
    min-height:  80px;
    display: flex;
    align-items: center;
}

.form-size {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 0;
}

.form-download-icon {
    width: 40px;
    height: 40px;
    background: #40b968;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-download-icon i {
    font-size: 1.3rem;
    color: white;
}

.form-download-card:hover .form-download-icon {
    background: #2d8a4d;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(64, 185, 104, 0.3);
}

.contact-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1rem;
}

/* =====================
   Committee Section
   ===================== */
.committee-section {
    margin-top: 50px;
    padding: 50px 0;
    background: white;
    border-radius: 15px;
}

.lead {
    font-family: 'nt' !important;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Committee Card Styles */
.committee-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.committee-card.president-card {
    box-shadow: 0 8px 30px rgba(64, 185, 104, 0.2);
    border: 2px solid rgba(64, 185, 104, 0.3);
}

.committee-card.president-card:hover {
    box-shadow: 0 15px 50px rgba(64, 185, 104, 0.3);
}

.committee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(64, 185, 104, 0.2);
}

.committee-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.committee-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.committee-card:hover .committee-image {
    transform: scale(1.1);
}

.committee-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 10;
    font-family: 'nt-b' !important;
}

.committee-badge.president {
    background: linear-gradient(135deg, #ff6b6b 0%, #c92a2a 100%);
}

.committee-badge.secretary {
    background: linear-gradient(135deg, #fab005 0%, #f08c00 100%);
}

.committee-badge.member {
    background: linear-gradient(135deg, #40b968 0%, #2d8a4d 100%);
}

.committee-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.committee-name {
    font-family: 'nt-b' !important;
    color: #333;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.committee-position {
    font-family: 'nt' !important;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    min-height: 50px;
}

.committee-contact {
    font-family: 'nt' !important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
    margin-top: auto;
}

.committee-contact i {
    color: #40b968;
    font-size: 1rem;
}

.committee-contact small {
    color: #868e96;
    font-size: 0.85rem;
}

.contact-box .btn-primary {
    background: white;
    color: #40b968;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-box .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-box .btn-primary i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .section-header {
        padding: 40px 0;
    }
    
    .section-content {
        padding: 40px 0;
    }
    
    .intro-section {
        padding: 30px 20px;
    }
    
    .halal-icon {
        width: 100px;
        height: 100px;
    }
    
    .halal-icon i {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-header {
        padding: 30px 0;
    }
    
    .section-content {
        padding: 30px 0;
    }
    
    .intro-section {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .intro-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .step-card {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
    
    .contact-box {
        padding: 25px 20px;
        text-align: center;
    }
    
    .contact-box .btn-primary {
        margin-top: 15px;
        width: 100%;
    }
}

.img1 {
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}
.img1:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(64, 185, 104, 0.2);
}