@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
    color: #444;
    line-height: 1.6;
}
.nav-links a {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}
.main-headline {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: #003366; 
    word-spacing: 5px;
}
p, .why-ymps-text {
    text-transform: none;
    font-size: 15px;
    color: #666;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-section {
    height: 80vh;
    background: url('../img/1.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-left: 8%;
}
.hero-title {
    color: #850b09;
    font-size: 48px;
    font-weight: 800;
    max-width: 600px;
}
.why-choose {
    background-color: #BDD3DE;
    padding: 80px 0;
}
.small-title {
    color: #631312;
    font-size: 14px;
    margin-bottom: 5px;
}
.main-heading {
    color: #000000;
    font-size: 32px;
    margin-bottom: 40px;
}
.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
}
.find-btn {
    display: inline-block;
    background-color: #67C1E1;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}
.side-img {
    width: 100%;
}
.video-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}
.quote-text {
    font-style: italic;
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}
.player-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    background: #000;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
}
.player-wrapper iframe {
    display: block;
    width: 100%;
    height: 641px;
}
@media (max-width: 992px) {
    .why-grid { grid-template-columns: 1fr; }
    .player-wrapper iframe { height: 400px; }
}
.notes-section {
    width: 100%;
    background-color: #B28FBA;
}
.tab-header {
    background-color: #BDD3DE;
    padding: 15px 0;
}
.tab-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
}
.tab-list li {
    color: #4B164C;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}
.tab-list li.active, .tab-list li:hover {
    border-bottom: 2px solid #4B164C;
}
.tab-content-container {
    padding: 80px 0;
}
.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.tab-image img {
    width: 100%;
    height: auto;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}
.tab-title {
    font-family: 'Georgia', serif;
    font-size: 36px;
    color: #111;
    margin-bottom: 25px;
}
.tab-description {
    font-size: 18px;
    line-height: 1.6;
    color: #fff; 
    margin-bottom: 30px;
}
.tab-description strong {
    color: #fff;
    font-weight: 900;
}
.view-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #555;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid white;
    transition: 0.3s;
}
.view-btn:hover {
    background-color: #333;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .tab-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .tab-list {
        flex-wrap: wrap;
        gap: 15px;
    }
}
.edify-section {
    background-color: #B28FBA;
    padding: 80px 0;
    width: 100%;
}
.edify-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.edify-text {
    flex: 1;
}
.edify-title {
    font-family: 'Georgia', serif;
    font-size: 38px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}
.edify-description {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}
.edify-image-container {
    flex: 1.2;
    position: relative;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
}
.edify-img {
    width: 100%;
    display: block;
    border-radius: 4px;
}
.image-overlay-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    text-align: center;
    border-radius: 2px;
}
.image-overlay-box p {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #631312; 
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.overlay-footer {
    display: block;
    font-weight: bold;
    color: #631312;
    font-size: 14px;
    letter-spacing: 1px;
}
@media (max-width: 992px) {
    .edify-grid {
        flex-direction: column;
        text-align: center;
    }
}
.principal-section {
    background-color: #B28FBA;
    padding: 80px 0;
    width: 100%;
}
.principal-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.principal-image {
    flex: 1.2;
}
.p-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.2);
}
.principal-text {
    flex: 1;
}
.principal-title {
    font-family: 'Georgia', serif;
    font-size: 38px;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
}
.principal-para {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 35px;
}
.view-btn-white {
    display: inline-block;
    padding: 12px 35px;
    background-color: #ffffff;
    color: #4B164C; 
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid #ffffff;
}
.view-btn-white:hover {
    background-color: transparent;
    color: #ffffff;
}
@media (max-width: 992px) {
    .principal-grid {
        flex-direction: column;
        text-align: center;
    }
}
.history-section {
    background-color: #B28FBA;
    padding: 80px 0;
    width: 100%;
}
.history-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.history-text {
    flex: 1;
}
.history-title {
    font-family: 'Georgia', serif;
    font-size: 38px;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
}
.history-para {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 35px;
}
.history-image {
    flex: 1.2;
}
.h-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.2);
}
@media (max-width: 992px) {
    .history-grid {
        flex-direction: column-reverse; 
        text-align: center;
    }
}
html {
    scroll-behavior: smooth;
}
.tab-list li a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.tab-list li {
    padding: 10px 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}
.tab-list li:hover {
    border-bottom: 2px solid #4B164C;
}
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .nav ul li {
        margin-left: 0;
        padding: 0 10px;
    }
    .hero-section {
        height: 60vh;
        padding-left: 5%;
        justify-content: center;
    }
    .hero-title {
        font-size: 32px;
        text-align: center;
    }
    .why-grid, .tab-grid, .edify-grid, .principal-grid, .history-grid, .footer-grid {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .player-wrapper {
        position: relative;
        padding-bottom: 56.25%; 
        height: 0;
        overflow: hidden;
    }
    .player-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .side-img, .tab-image img, .edify-img, .p-img, .h-img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .edify-grid, .history-grid {
        flex-direction: column-reverse;
    }
}
@media (max-width: 600px) {
    .main-heading {
        font-size: 24px;
    }
    .tab-title, .edify-title, .principal-title, .history-title {
        font-size: 28px;
    }
    .quote-text {
        font-size: 18px;
    }
}
.nav ul li .dropdown-menu {
    display: none !important; 
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #fff !important;
    min-width: 200px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2) !important;
}
.nav ul li .dropdown-menu.show-dropdown {
    display: flex !important;
}
.nav ul li .dropdown-menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #eee !important;
}
.nav ul li .dropdown-menu li a {
    display: block !important;
    padding: 12px 20px !important;
    text-align: left !important;
    width: 100% !important;
    color: #631312 !important;
    white-space: nowrap !important;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.flex-box {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 0;
}
.vision, .mission {
    flex: 1;
}
.years-list {
    display: flex;
    flex-direction: column;
    width: 200px;
}
.year-btn {
    padding: 15px;
    border: 1px solid #ccc;
    background: #fff;
    margin-bottom: 5px;
    text-align: left;
}
.year-btn.active {
    border-left: 5px solid #631312;
}
.about-page-body .about-intro {
    padding: 80px 0 40px 0;
}
.about-page-body .breadcrumbs {
    margin-bottom: 10px;
    color: #888;
    font-size: 14px;
}
.about-page-body .about-intro h2 {
    font-size: 34px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.about-page-body .title-line {
    width: 50px;
    height: 2px;
    background-color: #631312;
    border: none;
    margin-bottom: 35px;
}
.about-page-body .about-intro p {
    line-height: 1.9; 
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}
.about-page-body .flex-box {
    display: flex;
    justify-content: space-between;
    gap: 80px; 
    padding: 60px 0;
    border-top: 1px solid #eee;
}
.about-page-body .vision, 
.about-page-body .mission {
    flex: 1;
}
.about-page-body .vision h3, 
.about-page-body .mission h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}
.about-page-body .mission ul {
    list-style: disc;
    padding-left: 20px;
}
.about-page-body .mission ul li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
    display: list-item !important; 
}
.about-page-body .history {
    padding: 80px 0;
    background-color: #fcfcfc !important;
}
.about-page-body .history h2 {
    text-align: center;
    margin-bottom: 50px;
}
.about-page-body .timeline-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.about-page-body .vision-mission {
    background-color: #F1F1F2; 
    padding: 80px 0;
    margin-top: 40px;
}
.about-page-body .flex-box {
    display: flex;
    justify-content: space-between;
    gap: 60px; 
}
.about-page-body .vision h3, 
.about-page-body .mission h3 {
    font-family: 'Georgia', serif; 
    font-size: 32px;
    font-weight: 500;
    color: #444;
    margin-bottom: 25px;
}
.about-page-body .vision p, 
.about-page-body .mission ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}
.about-page-body .mission ul {
    list-style: none; 
    padding: 0;
}
.about-page-body .mission ul li {
    position: relative;
    padding-bottom: 5px;
}
@media (max-width: 768px) {
    .about-page-body .flex-box {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }
}
.history-section-new {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/AKS_9888-scaled-1024x678.jpg'); /* Building image inga podunga */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    padding: 100px 0;
    color: white;
}
.history-main-title {
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 10px;
    text-align: left;
}
.timeline-wrapper {
    display: flex;
    gap: 0; 
    margin-top: 40px;
    align-items: flex-start;
}
.years-sidebar {
    display: flex;
    flex-direction: column;
    width: 200px;
}
.year-item {
    background: white;
    color: #555;
    border: 1px solid #ddd;
    padding: 20px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}
.year-item i {
    color: #888;
}
.year-item.active {
    background: #f9f9f9;
    font-weight: bold;
    color: #333;
    border-right: none; 
}
.history-content-box {
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(10px); 
    padding: 40px;
    flex: 1;
    border: 1px solid rgba(255,255,255,0.2);
    min-height: 250px;
}
.history-content-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
    .timeline-wrapper {
        flex-direction: column;
    }
    .years-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }
    .year-item {
        white-space: nowrap;
    }
}
.messages-container {
    padding: 60px 10%;
    background-color: #fff;
}
.message-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; 
    margin-bottom: 120px;
    width: 100%;
}
.message-row.reverse {
    flex-direction: row-reverse !important;
}
.message-text {
    flex: 1;
    max-width: 600px;
}
@media (max-width: 992px) {
    .message-row, .message-row.reverse {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }
    .message-image {
        width: 100%;
    }
}
.message-text h2 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    color: #444;
    text-transform: uppercase;
}
.name-sub {
    font-size: 24px;
    color: #666;
    margin-top: 5px;
}
.short-line {
    width: 60px;
    border: 1px solid #333;
    margin: 15px 0;
}
.message-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}
.message-image {
    position: relative;
    width: 400px;
    height: 450px;
}
.abstract-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: url('../img/lines-pattern.png'); 
    background-size: cover;
    z-index: 1;
}
.left-bg {
    left: 0;
    right: auto;
}
.profile-img {
    position: absolute;
    top: 50px;
    left: 0;
    width: 280px;
    height: 350px;
    object-fit: cover;
    border: 10px solid #e0dbce; 
    z-index: 2;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.1);
}
.message-row.reverse .profile-img {
    right: 0;
    left: auto;
}
.more-info-btn {
    background: #555;
    color: white;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
}
.message-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 120px;
    width: 100%;
}
.message-row.reverse {
    flex-direction: row-reverse !important;
}
.message-row .abstract-bg {
    right: 0;
    left: auto;
}
.message-row .profile-img {
    left: 0;
    right: auto;
}
.message-row.reverse .abstract-bg {
    left: 0 !important;
    right: auto !important;
}
.message-row.reverse .profile-img {
    right: 0 !important;
    left: auto !important;
}
.message-row.reverse .message-text {
    text-align: left;
}
@media (max-width: 992px) {
    .message-row, .message-row.reverse {
        flex-direction: column !important;
        text-align: center;
    }
    .message-image {
        width: 100%;
        height: 400px;
    }
    .abstract-bg { display: none; }
    .profile-img { 
        position: relative !important; 
        top: 0 !important;
        margin: 0 auto;
    }
}
.visual-bg-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.header-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    display: block;
}
@media screen and (max-width: 768px) {
    .visual-bg-wrapper {
        height: 180px !important;
    }
    .header-visual {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }
}