:root {
    --primary-color: #165829;
    --secondary-color: #B1DCBD;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    /* new */
    --accent-color: #2ECC71;
    --dark-color: #1a1a1a;
    --light-color: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --danger-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, #165829 0%, #0F4C3A 100%);
    --gradient-secondary: linear-gradient(135deg, #B1DCBD 0%, #D4AF37 100%);
}
.col-lg-6 {
    flex: 0 0 46%;
}

.heading-font {
    font-family: "Inter", sans-serif;
}

/* Modern Header */
.modern-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modern-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background:
        linear-gradient(277.33deg, rgba(21, 125, 90, 0) 23.21%, #19322B 70.19%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'),
        url('../images/login_bg.png');

    background-repeat: no-repeat, repeat, no-repeat;
    background-size: cover, auto, cover;
    background-position: center, center, center;
}

.header-content {
    position: relative;
    z-index: 10;
    color: white;
}

.header-content {
    position: relative;
    z-index: 10;
    color: white;
}

.header-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 2rem;
}


.header-title {
    font-size: clamp(2rem, 4vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 3rem;
}



@media (max-width: 768px) {

    .header-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem); 
        line-height: 1.25;
        margin-bottom: 1rem;
        text-align: center;
    }

    .header-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-align: center;
        padding: 0 10px; /
    }
}

.cta-button {
    background: #FFF8F81A;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
 

}
.cta-button:hover {
    color: white;
    box-shadow: -9.49px 9.49px 9.49px 0px #FFFFFF1A inset;
    box-shadow: 9.49px -9.49px 9.49px 0px #C2BCBC1A inset;
    backdrop-filter: blur(18.972116470336914px);
    box-shadow: 0px 4px 4px 0px #00000040;
    
}

/* Content Sections */
.content-section {
    padding: 20px 0;
}
/* Description Card */
.description-card {
    background: linear-gradient(145deg, var(--warm-white) 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px var(--shadow-light),
        0 0 0 1px rgba(177, 220, 189, 0.1);
    border: 1px solid rgba(177, 220, 189, 0.2);
    position: relative;
    overflow: hidden;
}

.description-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}
/* date */
.important-dates-section {
    position: relative;
    background: url('../images/arabesque.png');
    background-size: cover;
    padding: 20px 20px;
    text-align: center;
    z-index: 1;
}

.important-dates-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(244, 246, 245, 0.85); 
    z-index: -1;
}

.important-dates-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 750px;
    margin: 12px auto;
    background: #e9eceb;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    overflow: hidden;
}

.label {
    /* background: linear-gradient(135deg, #cfe8d3, #b7dcbf); */
    background: linear-gradient(89.05deg, #E8F5E8 0.82%, #E0FFE0 97.12%);

    padding: 18px 18px;
    font-weight: 600;
    color: #2f4f2f;
    border-radius: 12px;
    min-width: 280px;
    text-align: left;
}

.value {
    flex: 1;
    padding: 14px 18px;
    text-align: left;
    font-weight: 500;
    color: #333;
    justify-content: center;
}

/* .value small {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
} */
.value small {
    display: block;
    font-size: 11px;
    /* margin-top: 2px; */
    line-height: 1;
}
@media (max-width: 768px) {

    .important-dates-section {
        padding: 20px 15px;
    }

    .important-dates-section h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .date-row {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        margin: 10px 0;
        border-radius: 10px;
    }

    .label {
        width: 100%;
        min-width: 100%;
        border-radius: 10px 10px 0 0;
        padding: 12px 14px;
        font-size: 14px;
    }

    .value {
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
    }

    .value small {
        font-size: 11px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {

    .important-dates-section {
        padding: 20px 12px;
    }

    .important-dates-section h2 {
        font-size: 20px;
    }

    .label {
        font-size: 13.5px;
        padding: 10px 12px;
    }

    .value {
        font-size: 13.5px;
        padding: 10px 12px;
    }

    .value small {
        font-size: 10px;
    }
}
/* SECTION BACKGROUND */
.overview-section {
    position: relative;
    background: #F6FBF6;
    padding: 70px 20px 80px;
    overflow: hidden;

    /* 👇 SLANTED TOP */
    clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
}

/* CARD */
.overview-card {
    max-width: 650px;
    margin: auto;
    padding: 40px 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.4);

    text-align: left;
}

/* TITLE */
.overview-card h2 {
    text-align: center;
    color: #2d6a4f;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* TEXT */
.overview-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #5f6f73;
    margin-bottom: 16px;
    text-align: justify;
}

/* DROP CAP */
.dropcap {
    float: left;
    font-size: 56px;
    font-weight: 700;
    color: #2d6a4f;
    line-height: 1;
    margin-right: 6px;
}
/* details section */
.details-section {
    position: relative;
    background: url('../images/details-bg.png') center/cover no-repeat;
    padding: 100px 20px 80px;
    text-align: center;
    color: #fff;
}

/* .details-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(41.92% 109.16% at 55.82% 50.92%, rgba(21, 125, 90, 0) 0%, #19322B 100%);

} */

.details-content {
    position: relative;
    z-index: 1;
}

.details-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color:#fff;
}

.subtitle {
    font-size: 14px;
    color: #dfe7e4;
    margin-bottom: 50px;
    line-height: 1.6;
}

.info-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.info-card {
    width: 250px;
    padding: 25px 20px;
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    transition: 0.3s ease;
    box-shadow: -19.11px 19.11px 19.11px 0px #FFFFFF1A inset;
    box-shadow: 19.11px -19.11px 19.11px 0px #C2C2C21A inset;

    backdrop-filter: blur(38.22509765625px);

    box-shadow: 0px 0px 7.2px 0px #00000040;

}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.icon {
    font-size: 15px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 13px;
    color: #cfd8d5;
    margin-bottom: 8px;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

/* Section background */
.objectives-section {
    padding: 30px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2b2b2b;
}


.objectives-list {
    max-width: 850px;
    margin: auto;
}

.objective-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 22px 25px 22px 70px;
    border-radius: 14px;
    background: #F8FAF9;
    box-shadow: 
        6px 6px 12px rgba(0,0,0,0.06),
        -6px -6px 12px rgba(255,255,255,0.9);

    transition: all 0.3s ease;
    
}


.objective-item:hover {
    background: #fff;
    box-shadow: 
        inset 4px 4px 10px rgba(0,0,0,0.05),
        inset -4px -4px 10px rgba(255,255,255,0.9);
}

.number-circle {
    position: absolute;
    left: -18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #4a4a4a;
    background: #E8F5E8;
    box-shadow:
    0 0 0 4px #ffffff, 
    4px 4px 8px rgba(0,0,0,0.08),
    -4px -4px 8px rgb(255, 255, 254);
   
    transition: all 0.3s ease;
}


.objective-item:hover .number-circle {
    background: #165829;
    color:#fff;
}

.objective-item p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.objective-item strong {
    color: #222;
}

.outcomes-section {
    padding: 20px 0;
    background: #fff;
    text-align: center;
}
@media (max-width: 768px) {
    .objectives-section {
        padding: 20px 10px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .objectives-list {
        max-width: 100%;
        padding: 0 15px;
    }
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 14px;
    color: #666;
}

.outcomes-list {
    max-width: 850px;
    margin: auto;
}

.outcome-item {
    position: relative;
    padding: 22px 25px;
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: left;
    transition: all 0.35s ease;
    
}
.outcome-item:hover {
    transform: scale(1.03); /* slight zoom */
    z-index: 2;

    /* stronger color (fill effect) */
    filter: brightness(0.97) saturate(1.05);
}

.badge {
    position: absolute;
    top: -10px;     
    left: 15px;
    background: #ffffff;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.outcome-item h4 {
    font-size: 16px;
    font-weight: 600;
    
    margin-left: 45px; 
    margin-bottom: 8px;
    color: #222;
}

.outcome-item h4 span {
    display: inline-block;
    width: 35px;
    height: 2px;
    margin-left: 8px;
    background: #3a7d5c;
    vertical-align: middle;
}


.outcome-item p {
    font-size: 14px;
    color: #555;
    margin-left: 45px;
    line-height: 1.6;
    margin-bottom: 0;
}


/* .blue { background: #E9F7FF;box-shadow: 0px 0px 9.9px 0px #7ED0FFC7;
}
.peach { background: #FFF2E5;
    box-shadow: 0px 0px 6px 0px #FFDC92;
}
.cyan { background: #E1FDFF;
    box-shadow: 0px 0px 13.8px 0px #98F9FF;
}
.sand { background: #FDF5E4;
    box-shadow: 0px 0px 14.1px 0px #FFDE97;
}
.green { background: #E8FFE8;
    box-shadow: 0px 0px 13.9px 0px #C1FFC1;
}
.purple { background: #F7EFFF;
    box-shadow: 0px 0px 11.1px 0px #E5CBFF;
}
.olive { background: #FEFFEF;
    box-shadow: 0px 0px 11.8px 0px #F6FAC5;
}
.pink { background: #FFF8F5;
    box-shadow: 0px 0px 13.7px 0px #FFCEB9;
} */

.blue { 
    background: #E3F2FD;
    box-shadow: 0px 0px 9.9px 0px #ACACAC85;
}

.peach { 
    background: #FFF3E0;
    box-shadow: 0px 0px 9.9px 0px #ACACAC85;
}

.cyan { 
    background: #F3E5F5;
    box-shadow: 0px 0px 9.9px 0px #ACACAC85;
}

.sand { 
    background: #E8F5E9;
    box-shadow: 0px 0px 9.9px 0px #ACACAC85;
}

.green { 
    background: #F2F8E8;
    box-shadow: 0px 0px 9.9px 0px #ACACAC85;
}

.purple { 
    background: #F7EFFF;
    box-shadow: 0px 0px 9.9px 0px #ACACAC85;
}

.olive { 
    background: #FFFDE7;
    box-shadow: 0px 0px 9.9px 0px #ACACAC85;
}

.pink { 
    background: #F0EBE9;
    box-shadow: 0px 0px 9.9px 0px #ACACAC85;
}
.participants-section {
    padding: 20px 0;
    background: #fff;
    text-align: center;
}

.participants-section .section-subtitle {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.05rem;
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

@media (max-width: 992px) {
    .participants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 576px) {
    .participants-grid {
        grid-template-columns: 1fr;
    }
}
.participant-card {
    background: linear-gradient(116.01deg, #FFFFFF 2.58%, #F5FFF5 98.68%);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    border-top: 4px solid #2f6f4f;
    box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.08);
    
    position: relative;
    overflow: hidden;

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Softer light sweep */
.participant-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );

    transform: skewX(-20deg);
    transition: all 0.8s ease;
}


.participant-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(47, 111, 79, 0.15);
}

.participant-card:hover::before {
    left: 120%;
}

.participant-card * {
    position: relative;
    z-index: 2;
}

.themes-section {
    padding: 20px 20px;
    background: #f9fafb;
}

.themes-section .container {
    max-width: 850px;
    margin: 0 auto;
}



.theme-card {
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: all 0.3s ease;
}

.theme-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.theme-label {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.theme-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.theme-card.green {
    border-left: 5px solid #22c55e;
}

.theme-card.green .theme-label {
    background: #dcfce7;
    color: #15803d;
}

.subthemes {
    padding-top: 10px;
    
}
.theme-card.green .subthemes .sub_theme {
    color: #15803d;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    letter-spacing: 7%;
    text-transform: uppercase;
    
}

.theme-card.orange {
    border-left: 5px solid #f59e0b;
}

.theme-card.orange .theme-label {
    background: #fef3c7;
    color: #b45309;
}

.theme-card.orange .subthemes .sub_theme {
    color: #b45309;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    letter-spacing: 7%;
    text-transform: uppercase;

}
/* 
.subthemes span {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
} */

.subthemes ul {
    padding-left: 62px;
    margin: 0;
}

.subthemes li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #444;
}

/* .theme-card:hover {
    transform: translateY(-4px);
} */

.theme-card.green:hover {
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.25);
}

.theme-card.orange:hover {
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
}
@media (max-width: 768px) {

    .themes-section {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .theme-card {
        padding: 18px 16px;
        margin-bottom: 18px;
    }

    .theme-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .theme-label {
        font-size: 12px;
        padding: 5px 12px;
    }

    .theme-card h3 {
        font-size: 17px;
        line-height: 1.4;
    }

    .subthemes span {
        font-size: 11px;
        padding: 4px 10px;
    }

    .subthemes ul {
        padding-left: 20px; 
    }

    .subthemes li {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {

    .themes-section {
        padding: 20px 12px;
    }

    .theme-card {
        padding: 16px 14px;
        border-left-width: 4px;
    }

    .theme-card h3 {
        font-size: 16px;
    }

    .subthemes li {
        font-size: 13.5px;
    }
}