.elementor-9 .elementor-element.elementor-element-b001ca4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-9 .elementor-element.elementor-element-8d67965{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-9 .elementor-element.elementor-element-5f9b1da{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-9 .elementor-element.elementor-element-f52b685{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-9 .elementor-element.elementor-element-6fd959e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-19073d3 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

.overview-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.overview-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* Image Side Styling */
.overview-image-side {
    flex: 1;
    min-width: 400px;
    position: relative;
}

.image-container {
    position: relative;
    z-index: 1;
}

.image-container img {
    width: 100%;
    border-radius: 40px 100px 40px 100px; /* Unique shape */
    box-shadow: 0 30px 60px rgba(18, 80, 131, 0.15);
    transition: 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #58a952; /* Green */
    color: white;
    padding: 25px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(88, 169, 82, 0.3);
    animation: floating 3s ease-in-out infinite;
}

.experience-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Content Side Styling */
.overview-content-side {
    flex: 1.2;
    min-width: 320px;
}

.sub-heading {
    color: #58a952;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-size: 3.5rem;
    color: #125083; /* Blue */
    font-weight: 800;
    margin: 0;
}

.title-line {
    width: 70px;
    height: 5px;
    background: #58a952;
    margin: 15px 0 35px;
    border-radius: 10px;
}

.content-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.highlight-text {
    color: #125083 !important;
    font-weight: 600;
    font-size: 1.2rem !important;
}

/* Mini Stats */
.stats-mini {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8faff;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(18, 80, 131, 0.1);
}

.stat-item i {
    color: #58a952;
    font-size: 1.2rem;
}

.stat-item span {
    font-weight: 600;
    color: #125083;
}

/* Animations */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .overview-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .overview-image-side {
        min-width: 100%;
        margin-bottom: 50px;
    }
    .title-line {
        margin: 15px auto 35px;
    }
    .stats-mini {
        justify-content: center;
        flex-wrap: wrap;
    }
    .main-title {
        font-size: 2.5rem;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-c72b671 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

.management-faculty-section {
    padding: 100px 0;
    background: #fdfdfd;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.section-header { margin-bottom: 50px; }

.sub-title {
    color: #58a952;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.title {
    font-size: 2.8rem;
    color: #125083;
    font-weight: 800;
    margin: 10px 0;
}

.header-line {
    width: 70px;
    height: 4px;
    background: #58a952;
    margin: 0 auto;
    border-radius: 10px;
}

.management-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
    flex-wrap: wrap;
    justify-content: center;
}

.management-card {
    flex: 1;
    min-width: 350px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(18, 80, 131, 0.08);
    transition: 0.4s;
    border-bottom: 5px solid #58a952;
    text-align: center; 
}

.management-card:hover { transform: translateY(-10px); }

.card-img-box { 
    position: relative; 
    padding-top: 30px; 
}

.card-img-box img { 
    width: 200px; 
    height: 200px;
    object-fit: cover;
    margin: 0 auto; 
    border-radius: 50%; 
    border: 5px solid #f0f7f2;
}

.card-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.designation {
    background: #125083;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.card-content { padding: 30px; }

.card-content h3 {
    color: #125083;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

.faculty-wrapper {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(18, 80, 131, 0.05);
}

.row { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.faculty-image, .faculty-text { flex: 1; min-width: 320px; }

.img-frame img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 15px 15px 0px #f0f7f2;
}

.faculty-text .header-line { margin: 15px 0 30px 0; }
.faculty-info { color: #555; line-height: 1.8; font-size: 1.05rem; }

@media (max-width: 991px) {
    .title { font-size: 2.2rem; }
    .faculty-wrapper { padding: 30px; }
    .row { flex-direction: column-reverse; text-align: center; }
    .faculty-text .header-line { margin: 15px auto 30px auto; }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-9f75ac3 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

.management-faculty-section {
    padding: 100px 0;
    background: #fdfdfd;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.section-header { margin-bottom: 50px; }

.sub-title {
    color: #58a952;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.title {
    font-size: 2.8rem;
    color: #125083;
    font-weight: 800;
    margin: 10px 0;
}

.header-line {
    width: 70px;
    height: 4px;
    background: #58a952;
    margin: 0 auto;
    border-radius: 10px;
}

.management-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
    flex-wrap: wrap;
    justify-content: center;
}

.management-card {
    flex: 1;
    min-width: 350px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(18, 80, 131, 0.08);
    transition: 0.4s;
    border-bottom: 5px solid #58a952;
    text-align: center; /* Center content */
}

.management-card:hover { transform: translateY(-10px); }

/* --- IMAGE SMALL KELI AAHE --- */
.card-img-box { 
    position: relative; 
    padding-top: 30px; /* Space from top */
}

.card-img-box img { 
    width: 200px; /* Image size small keli */
    height: 200px;
    object-fit: cover;
    margin: 0 auto; 
    border-radius: 50%; /* Circle shape */
    border: 5px solid #f0f7f2;
}

/* --- DESIGNATION CENTER LA GETLI --- */
.card-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.designation {
    background: #125083;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.card-content { padding: 30px; }

.card-content h3 {
    color: #125083;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
}

.faculty-wrapper {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(18, 80, 131, 0.05);
}

.row { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.faculty-image, .faculty-text { flex: 1; min-width: 320px; }

.img-frame img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 15px 15px 0px #f0f7f2;
}

.faculty-text .header-line { margin: 15px 0 30px 0; }
.faculty-info p { color: #555; line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; }

@media (max-width: 991px) {
    .title { font-size: 2.2rem; }
    .faculty-wrapper { padding: 30px; }
    .row { flex-direction: column-reverse; text-align: center; }
    .faculty-text .header-line { margin: 15px auto 30px auto; }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-634c9e9 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

.mission-vision-section {
    padding: 80px 0;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-vision-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.mv-card {
    flex: 1;
    min-width: 350px;
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    z-index: 1;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(18, 80, 131, 0.15);
}

/* Icon Styling */
.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.mission .mv-icon {
    background: rgba(18, 80, 131, 0.1);
    color: #125083; /* Blue */
}

.vision .mv-icon {
    background: rgba(88, 169, 82, 0.1);
    color: #58a952; /* Green */
}

/* Text Content */
.mv-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.mission .mv-title { color: #125083; }
.vision .mv-title { color: #58a952; }

.mv-line {
    width: 50px;
    height: 5px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.mission .mv-line { background: #125083; }
.vision .mv-line { background: #58a952; }

.mv-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Background Decorative Shapes */
.mv-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
    transition: 0.4s;
}

.mission .mv-shape { background: #125083; }
.vision .mv-shape { background: #58a952; }

.mv-card:hover .mv-shape {
    transform: scale(2);
    opacity: 0.08;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-card {
        padding: 40px 30px;
    }
    .mv-title {
        font-size: 1.7rem;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-bd259e2 */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

:root {
    --school-blue: #125083; /* Logo Blue */
    --school-green: #58a952; /* Logo Green */
    --card-shadow: 0 10px 30px rgba(18, 80, 131, 0.1);
}

.values-section-premium {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.text-center { text-align: center; }

/* Header Styling */
.section-header { margin-bottom: 60px; }
.section-header .title {
    font-size: 2.8rem;
    color: var(--school-blue);
    font-weight: 800;
    margin-bottom: 10px;
}
.header-line {
    display: flex;
    justify-content: center;
    gap: 5px;
}
.line-blue { width: 50px; height: 5px; background: var(--school-blue); border-radius: 10px; }
.line-green { width: 30px; height: 5px; background: var(--school-green); border-radius: 10px; }

/* Grid Layout */
.values-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.values-grid-bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 800px; /* Centering control */
    margin: 0 auto;
}

/* Card Design */
.value-card-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    border-top: 5px solid transparent;
    flex: 1;
}

.value-card-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 80, 131, 0.15);
}

.values-grid-top .value-card-box:nth-child(odd) { border-top-color: var(--school-blue); }
.values-grid-top .value-card-box:nth-child(even) { border-top-color: var(--school-green); }
.values-grid-bottom .value-card-box:first-child { border-top-color: var(--school-green); }
.values-grid-bottom .value-card-box:last-child { border-top-color: var(--school-blue); }

/* Icon Styling */
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.blue-bg { background: var(--school-blue); }
.green-bg { background: var(--school-green); }

.value-card-box h3 {
    font-size: 1.3rem;
    color: var(--school-blue);
    font-weight: 700;
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .values-grid-top, .values-grid-bottom {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    .values-grid-bottom { max-width: 100%; }
    .title { font-size: 2.2rem; }
}/* End custom CSS */