@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/* ==================== COMMON ELEMENTS ==================== */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B84110 0%, #EDB600 100%);
    border-radius: 2px;
}

/* ==================== VISION & MISSION SECTION ==================== */
.vm-section {
    background: #FFF4EA;
}

.vm-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.vm-section,
.mission-vision {
    padding-top: 2px;
}

/* Vision Card */
.vm-vision {
    position: relative;
    background: #034B9F;
}

.vm-vision .vm-card-inner {
    position: relative;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.vm-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.vm-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vm-vision:hover .vm-image {
    transform: scale(1.05);
}

.vm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(243, 78, 18, 0.693) 0%, rgba(3, 75, 159, 0.95) 100%);
}

.vm-vision .vm-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.vm-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.vm-badge-line {
    width: 40px;
    height: 3px;
    background: #EDB600;
    border-radius: 2px;
}

.vm-vision .vm-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vm-vision .vm-text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
}

/* Mission Card */
.vm-mission {
    background: #FFFFFF;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.vm-header-line {
    width: 5px;
    height: 40px;
    background: linear-gradient(180deg, #B84110 0%, #EDB600 100%);
    border-radius: 3px;
}

.vm-mission .vm-title {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #B84110;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vm-mission-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.vm-mission-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #FAFAFA;
    border-radius: 10px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.vm-mission-item:hover {
    background: #FFF4EA;
    border-left-color: #EDB600;
    transform: translateX(5px);
}

.vm-mission-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #034B9F 0%, #0563B8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(3, 75, 159, 0.25);
    transition: transform 0.3s ease;
}

.vm-mission-item:hover .vm-mission-icon {
    transform: scale(1.1);
}

.vm-mission-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.vm-mission-content {
    flex: 1;
    display: flex;
    align-items: center;
}

/* ==================== IMAGE CARD COMPONENT ==================== */
.obj-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.obj-image-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.obj-image-card:hover img {
    transform: scale(1.03);
}

.obj-image-accent {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #EDB600 0%, #B84110 100%);
    border-radius: 12px;
    z-index: -1;
}

.obj-image-accent-right {
    left: auto;
    right: -10px;
    bottom: -10px;
}

/* ==================== OBJECTIVES SECTION ==================== */


.objectives-list {
    padding-left: 0;
}

.objective-row {
    position: relative;
    padding-left: 26px;          /* bullet space */
    margin-bottom: 18px;         /* points ke beech gap */
}

/* text ko normal & readable banao */
.objective-row .text {
    font-size: 20px;             /* text bada */
    line-height: 1.7;            /* breathing space */
    color: #333333;
}

/* simple black bullet */
.objective-marker {
    position: absolute;
    left: 0;
    top: 10px;
}

.marker-dot {
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    display: block;
}

/* line completely remove */
.marker-line {
    display: none !important;
}

/* hover effects remove (clean look) */
.objective-row:hover {
    padding-left: 26px;
}

.objective-row:hover .text {
    color: #333333;
}

.objective-row:hover .marker-dot {
    transform: none;
}


/* ==================== VALUES SECTION ==================== */
.values-section {
    background: #FFF4EA;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 10px;
    background: #FAFAFA;
    border-radius: 10px;
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #EDB600;
    transform: translateX(8px);
}

.value-icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #034B9F 0%, #0563B8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(3, 75, 159, 0.25);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon-wrap {
    transform: rotate(5deg) scale(1.05);
}

.value-icon-wrap img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.value-content {
    flex: 1;
}

.value-content .subhead {
    font-size: 26px;
    font-weight: 600;
}

/* ==================== VALUES SECTION HEIGHT FIX (FINAL) ==================== */
.values-row {
    align-items: stretch;
}

.values-row > div {
    display: flex;
}

.values-row .obj-image-card {
    height: 100%;
    width: 100%;
}

.values-row .obj-image-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* ==================== POLICY SECTION ==================== */
.policy-section {
    position: relative;
   
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.policy-item:hover {
    border-left-color: #034B9F;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.policy-number-wrap {
    flex-shrink: 0;
}

.policy-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #034B9F 0%, #0563B8 100%);
    color: #FFFFFF;
    border-radius: 50%;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(3, 75, 159, 0.3);
    transition: transform 0.3s ease;
}

.policy-item:hover .policy-num {
    transform: scale(1.1);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991.98px) {
    .vm-vision .vm-card-inner {
        min-height: 380px;
    }
    
    .vm-mission {
        padding: 35px;
    }
    
    .obj-image-accent {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 767.98px) {
    .vm-vision .vm-card-inner {
        min-height: 320px;
    }
    
    .vm-vision .vm-title {
        font-size: 32px;
    }
    
    .vm-vision .vm-text {
        font-size: 18px;
    }
    
    .vm-mission {
        padding: 30px 25px;
    }
    
    .vm-mission .vm-title {
        font-size: 28px;
    }
    
    .vm-mission-item {
        padding: 15px;
        gap: 15px;
    }
    
    .vm-mission-icon {
        width: 45px;
        height: 45px;
    }
    
    .vm-mission-icon img {
        width: 20px;
        height: 20px;
    }
    
    .objectives-list {
        padding-left: 25px;
    }
    
    .objective-marker {
        left: -25px;
    }
    
    .marker-dot {
        width: 12px;
        height: 12px;
    }
    
    .marker-line {
        height: 40px;
    }
    
    .value-item {
        padding: 20px;
        gap: 15px;
    }
    
    .value-icon-wrap {
        width: 50px;
        height: 50px;
    }
    
    .value-icon-wrap img {
        width: 24px;
        height: 280px;
    }
    
    .value-content .subhead {
        font-size: 18px;
    }
    
    .policy-item {
        padding: 20px;
        gap: 15px;
    }
    
    .policy-num {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .obj-image-accent {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 575.98px) {
    .vm-vision .vm-card-inner {
        min-height: 280px;
    }
    
    .vm-vision .vm-content {
        padding: 30px 25px;
    }
    
    .vm-vision .vm-title {
        font-size: 28px;
    }
    
    .vm-vision .vm-text {
        font-size: 16px;
    }
    
    .vm-badge-line {
        width: 30px;
    }
    
    .vm-mission {
        padding: 25px 20px;
    }
    
    .vm-mission .vm-title {
        font-size: 24px;
    }
    
    .vm-header-line {
        height: 30px;
    }
    
    .vm-mission-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .value-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .policy-item {
        flex-direction: column;
        gap: 12px;
    }
}