@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --font-family: 'Poppins', sans-serif;
    --primary: #0d6efd;
    --secondary: #28a745;
    --dark: #0f172a;
    --accent: #ffd700;
}

body {
    font-family: var(--font-family);
}

/* Header */
.page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/service-header.jpg') center 25%/cover; */
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

/* Registration section start */
.registration-row {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin: -40px 0 40px;
}

.reg-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    border-top: 4px solid var(--accent);
}

.reg-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

/* Registration section end */

/* Aim & Activities section start */
.section-title {
    font-family: var(--font-family);
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 40px;
    font-weight: 700;
}

.aims-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.aim-card {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.aim-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--primary);
}

.aim-card span {
    background: #f0f7ff;
    color: var(--primary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
}

.activities {
    padding: 60px 0;
}

.activities-title {
    font-family: var(--font-family);
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 40px;
    font-weight: 600;
}

.activities-content {
    margin-bottom: 40px;
}

.activities-content p {
    line-height: 1.8;
    color: #475569;
    margin-bottom: 15px;
}

.activities-content span {
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin: 10px 0;
}

.activities-list {
    margin: 30px 0;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.list-num {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    min-width: 25px;
}

.list-text {
    line-height: 1.8;
    color: #475569;
}

.list-text span {
    font-weight: 600;
    color: var(--dark);
}

/* Aim & Activities section end */

/* Our Departments section start */
.department {
    padding: 30px;
}

.dept-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dept-box {
    flex: 1;
    min-width: 250px;
    background: #eff6ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.dept-icon-box {
    width: 100%;
    height: 160px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.dept-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Our Departments section end */

/*table section start */
.impact-report {
    padding: 30px;
}

.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

th {
    background: var(--primary);
    color: white;
    padding: 15px;
}

td {
    padding: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.final-total {
    background: #e2e8f0;
    font-weight: bold;
}

/*table section end */

/* Responsive Design */
/* Extra large devices (large desktops, 1920px and up) */
@media (min-width: 1920px) {
    
}

/* Large devices (desktops, 1366px) */
@media (max-width: 1366px) {
    
}

/* Tablets devices (tablets, 768px) */
@media (max-width: 768px) {
    
}

/* Mobiles devices (large mobiles, 480px) */
@media (max-width: 480px) {
    .registration-row {
        flex-direction: column;
        margin-top: 0;
        padding: 0 15px;
    }

    .reg-box {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* small devices (small mobiles, 364px) */
@media (max-width: 364px) {
    
}