@charset "UTF-8";

.module_title {
    display: none
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6, p {
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 0;
    z-index: 1000;
}

.cookie-content {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

.cookie-text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.65px;
    flex: 1;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 6px 16px;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #755da0;
    color: #ffffff;
}

.cookie-btn.decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #b098db;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 89px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-container {
    position: relative;
    height: 60px;
    width: auto;
}

.logo-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 60px;
    width: auto;
}

.utmy-logo {
    animation: logoFadeUTMy 6s infinite;
}

.tsukuba-logo {
    animation: logoFadeTsukuba 6s infinite;
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    background: #886db9;
    height: 89px;
    padding: 0 40px;
    margin-right: -20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
}

.hamburger-line {
    width: 17px;
    height: 2px;
    background: #856caf;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #efe4ec;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 77px;
    padding: 0 26px;
    background: #ffffff;
}

.mobile-logo-container {
    position: relative;
    height: 53px;
    width: 230px;
}

.mobile-logo img {
    position: absolute;
    top: 0;
    left: 0;
    height: 53px;
    width: 230px;
    object-fit: contain;
}

.mobile-utmy-logo {
    animation: logoFadeUTMy 6s infinite;
}

.mobile-tsukuba-logo {
    animation: logoFadeTsukuba 6s infinite;
    object-fit: contain;
}

.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    padding: 51px 26px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-item {
    position: relative;
    width: 100%;
    max-width: 338px;
}

.mobile-nav-item.active {
    background: #856caf;
    height: 37px;
    display: flex;
    align-items: center;
    padding-left: 3px;
}

.mobile-nav-item.active .mobile-nav-link {
    color: #ffffff;
}

.mobile-nav-item.active .mobile-nav-underline {
    width: calc(100% - 14px);
    opacity: 1;
}

.mobile-nav-item:hover .mobile-nav-underline {
    width: calc(100% - 14px);
    opacity: 1;
}

.mobile-nav-item:hover .mobile-nav-link {
    color: #7154a0;
}

.mobile-nav-link {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 3.6px;
    color: #856caf;
    text-decoration: none;
    display: block;
    padding: 10px 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mobile-nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #856caf;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
}

/* Logo Animation Keyframes */
@keyframes logoFadeUTMy {
    0% { opacity: 1; }
    30% { opacity: 1; }
    45% { opacity: 0; }
    55% { opacity: 0; }
    70% { opacity: 0; }
    85% { opacity: 1; }
    100% { opacity: 1; }
}

@keyframes logoFadeTsukuba {
    0% { opacity: 0; }
    30% { opacity: 0; }
    45% { opacity: 1; }
    55% { opacity: 1; }
    70% { opacity: 1; }
    85% { opacity: 0; }
    100% { opacity: 0; }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Header Responsive */

/* Large Tablets/Small Desktops */
@media (max-width: 1200px) {
    .desktop-nav {
        padding: 0 30px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* Tablets/iPads */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .desktop-nav {
        padding: 0 20px;
        margin-right: -30px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 0 12px;
    }
    
    /* Reduce logo size on iPad to prevent overlap */
    .logo-container {
        height: 45px;
        max-width: 200px;
    }
    
    .logo-img {
        height: 45px;
        max-width: 200px;
    }
    
    .tsukuba-logo {
        height: 45px;
        max-width: 200px;
    }
}

/* Mobile Only */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    .nav-container {
        height: 77px;
        padding: 12px 26px;
    }
    
    .logo-img {
        height: 53px;
        width: 230px;
        object-fit: contain;
    }
    
    .logo-container {
        height: 53px;
        width: 230px;
    }
}

/* Hide mobile overlay on larger screens */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .desktop-nav {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 860px;
    background: url('images/home-banner.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
}

/* Events & News Section */
.events-news {
    display: flex;
    min-height: 500px;
    width: 100%;
}

.container {
    display: flex;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.events-side {
    flex: 1;
    background: #856caf;
    padding: 60px 40px;
    color: #ffffff;
}

.news-side {
    flex: 1;
    background: #efe4ec;
    padding: 60px 40px;
    border-left: 1px solid #856caf;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.section-title.events-title {
    color: #efe4ec;
    font-size: 48px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
}

.section-title.news-title {
    color: #856caf;
    font-size: 48px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.event-list {
    margin-bottom: 50px;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin-bottom: 0;
    gap: 2px;

    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-item {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.event-item:hover .date-num,
.event-item:hover .date-month {
    color: #efe4ec;
    transition: color 0.3s ease;
}

.event-item:hover .event-content a,
.event-item:hover .event-content p {
    color: #efe4ec;
    transition: color 0.3s ease;
}


.event-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.event-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    min-width: 60px;
    height: 89px;
    background: transparent;
    border: none;
    flex-shrink: 0;
}

.date-num {
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.date-month {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.event-content {
    flex: 1;
    margin-right: 0;
    min-width: 0;
    height: 59px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-content a {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2.1px;
    margin-bottom: 0;
    line-height: normal;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.event-content p {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2.1px;
    line-height: normal;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 19px 0;
    border-bottom: 1px solid #856caf;
    background: transparent;
    transition: none;
    margin-bottom: 0;

    cursor: pointer;
    transition: background-color 0.3s ease;
}

.news-item:hover {
    background-color: rgba(133, 108, 175, 0.05);
}

.news-item:hover .news-content a,
.news-item:hover .news-content p {
    color: #5c4488;
    transition: color 0.3s ease;
}

.news-item:first-child {
    border-top: 1px solid #856caf;
}

.news-item:last-child {
    border-bottom: 1px solid #856caf;
}

.news-image {
    width: 80px;
    height: 81px;
    border-radius: 20px;
    overflow: hidden;
    margin-right: 28px;
    border: none;
    flex-shrink: 0;
    background-size: 101.25% 100%;
    background-position: top center;
    background-repeat: no-repeat;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-content a {
    font-size: 20px;
    font-weight: 500;
    color: #856CAF;
    letter-spacing: 3px;
    margin-bottom: 0;
    line-height: normal;
    font-family: 'Inter', sans-serif;
}

.news-content p {
    font-size: 20px;
    font-weight: 500;
    color: #856CAF;
    letter-spacing: 3px;
    line-height: normal;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.show-more-btn {
    background: #ffffff;
    color: #886db9;
    border: none;
    border-radius: 55px;
    padding: 12px 24px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    width: fit-content;
    height: 47px;
    line-height: 1;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

/* Events & News Responsive */
@media (min-width: 1441px) {
    .events-side,
    .news-side {
        padding: 60px 80px;
    }
}

@media (max-width: 1024px) {
    .events-news {
        flex-direction: column;
    }
    
    .events-side,
    .news-side {
        width: 100%;
        padding: 40px 30px;
    }
    
    .news-side {
        border-left: none;
        border-top: 1px solid #856caf;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .section-title.events-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .section-title.news-title {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .event-date {
        min-width: 55px;
        height: 80px;
        margin-right: 0;
    }
    
    .date-num {
        font-size: 22px;
    }
    
    .event-content {
        height: 54px;
    }
    
    .event-content a {
        font-size: 13px;
        letter-spacing: 1.9px;
    }
    
    .event-content p {
        font-size: 13px;
        letter-spacing: 1.9px;
    }
    
    .news-image {
        width: 70px;
        height: 71px;
        margin-right: 24px;
    }
    
    .news-content a {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .news-content p {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .show-more-btn {
        font-size: 18px;
        min-width: 190px;
        height: 44px;
    }
}

@media (max-width: 992px) {
    .events-side,
    .news-side {
        padding: 50px 30px;
    }
    
    .section-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .event-item,
    .news-item {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .events-news {
        min-height: auto;
    }
    
    .events-side,
    .news-side {
        padding: 30px 20px;
    }
    
    .container {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }
    
    .event-item {
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 2px;
    }
    
    .event-date {
        margin-right: 0;
        min-width: 50px;
        height: 70px;
        margin-right: 15px;
    }
    
    .date-num {
        font-size: 20px;
    }
    
    .date-month {
        font-size: 12px;
    }
    
    .event-content {
        margin-right: 0;
        text-align: left;
        height: 50px;
    }
    
    .event-content a {
        font-size: 13px;
        letter-spacing: 1.8px;
    }
    
    .event-content p {
        font-size: 13px;
        letter-spacing: 1.8px;
    }
    
    .news-item {
        padding: 15px 0;
        flex-direction: row;
        align-items: center;
    }
    
    .news-image {
        width: 60px;
        height: 61px;
        margin-right: 20px;
        border-radius: 12px;
    }
    
    .news-content a {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .news-content p {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .show-more-btn {
        padding: 10px 20px;
        font-size: 16px;
        margin: 30px auto 0;
        min-width: 180px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .events-side,
    .news-side {
        padding: 30px 15px;
    }
    
    /* Events at 480px */
    .section-title.events-title {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .event-item {
        height: 70px;
        gap: 12px;
    }
    
    .event-date {
        min-width: 50px;
    }
    
    .date-num {
        font-size: 20px;
    }
    
    .date-month {
        font-size: 12px;
    }
    
    .event-content a,
    .event-content p {
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    /* News at 480px */
    .section-title.news-title {
        font-size: 28px;
        letter-spacing: 3px;
    }
    
    .news-item {
        padding: 15px 0;
        gap: 12px;
    }
    
    .news-image {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    
    .news-content a,
    .news-content p {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/* Social Media Section */
.social-section {
    background: #725d96;
    padding: 20px 0;
    height: 79px;
    display: flex;
    align-items: center;
}

.social-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.social-x {
    display: flex;
    align-items: center;
}

.x-img {
    height: 48px;
    width: auto;
}

.youtube-logo {
    display: flex;
    align-items: center;
}

.youtube-img {
    height: 37px;
    width: auto;
}

/* Social Media Responsive */
@media (max-width: 768px) {
    .social-section {
        height: auto;
        padding: 15px 0;
    }
    
    .social-content {
        gap: 80px;
        padding: 0 20px;
    }
    
    .x-img {
        height: 36px;
    }
    
    .youtube-img {
        height: 28px;
    }
}

/* Who We Are Section */
.who-we-are {
    background: #efe4ec;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.who-we-are .geometric-mask {
    position: absolute;
    left: 0%;
    top: -5%;
    width: 182px;
    height: 303px;
    z-index: 1;
    opacity: 1;
    transform: rotate(0deg);
}

.who-we-are .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.who-we-are-content {
    max-width: 465px;
    text-align: center;
}

.who-we-are-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin-bottom: 71px;
}

.section-title.purple {
    color: #725d96;
    font-size: 48px;
    line-height: 100%;
    font-weight: 700;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    line-height: normal;
}

.decorative-line {
    width: 431px;
    height: 2px;
    background: #725d96;
    margin: 0;
}

.section-description {
    max-width: 465px;
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    color: #755da0;
    text-align: justify;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    height: 125px;
    display: flex;
    align-items: flex-start;
}

/* Who We Are Responsive */
@media (max-width: 1200px) {
    .section-title.purple {
        text-align: center;
    }
    
    .decorative-line.purple {
        margin: 0 auto 40px;
    }
    
    .section-description.purple {
        margin: 0 auto 40px;
    }
    
    .who-we-are-content {
        max-width: 400px;
    }
    
    .decorative-line {
        width: 350px;
    }
    
    .who-we-are .geometric-mask {
        width: 140px;
        height: 230px;
    }
}

@media (max-width: 768px) {
    .section-title.purple {
        font-size: 36px;
    }
    
    .who-we-are-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .who-we-are-header {
        margin-bottom: 50px;
    }
    
    .decorative-line {
        width: 280px;
    }
    
    .section-description {
        height: auto;
        text-align: center;
    }
    
    .who-we-are .geometric-mask {
        width: 120px;
        height: 200px;
    }
}

/* About UTMy Section */
.about-utmy {
    background: #856caf;
    padding: 0;
    min-height: 517px;
}

.about-content {
    display: flex;
    align-items: stretch;
    min-height: 517px;
}

.about-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    max-width: 50%;
}

.about-background-svg {
    position: absolute;
    right: -50px;
    bottom: -30px;
    width: 217px;
    height: 208px;
    z-index: 1;
}

.about-text-content {
    max-width: 485px;
    position: relative;
    z-index: 2;
}

.section-title.white {
    color: #ffffff;
    text-align: left;
    font-size: 48px;
    line-height: 100%;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    line-height: normal;
}

.decorative-line.white {
    background: #ffffff;
    width: 100%;
    max-width: 485px;
    height: 2px;
    margin: 0 0 40px 0;
}

.section-description.white {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: justify;
    margin: 0 0 40px 0;
}

.cta-btn {
    background: #ffffff;
    color: #886db9;
    border: none;
    border-radius: 55px;
    padding: 12px 30px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: fit-content;
    text-align: center;
    display: block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

.about-image {
    flex: 1;
    position: relative;
    min-height: 517px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
}


/* About UTMy Responsive */
@media (max-width: 1200px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .about-text {
        flex: none;
        width: 100%;
        max-width: 600px;
        text-align: center;
        padding: 60px 40px;
    }
    
    .about-text-content {
        max-width: 100%;
    }
    
    .section-title.white {
        text-align: center;
        font-size: 40px;
    }
    
    .decorative-line.white {
        width: 400px;
        margin: 0 auto 40px;
    }
    
    .about-image {
        min-height: 300px;
        width: 100%;
    }
    
    .about-background-svg {
        right: 50px;
        width: 180px;
        height: 172px;
        bottom: -20px;
    }
}

/* iPad Specific */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column-reverse;
        align-items: center;
        min-height: auto;
    }
    
    .about-text {
        width: 100%;
        max-width: 700px;
        padding: 50px 60px;
        text-align: center;
    }
    
    .about-text-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .section-title.white {
        font-size: 42px;
        text-align: center;
    }
    
    .decorative-line.white {
        width: 450px;
        margin: 0 auto 35px;
    }
    
    .section-description.white {
        text-align: center;
        margin: 0 0 35px 0;
    }
    
    .cta-btn {
        margin: 0 auto;
        display: block;
    }
    
    .about-image {
        min-height: 350px;
        width: 100%;
    }
    
    .about-background-svg {
        right: 60px;
        width: 190px;
        height: 180px;
        bottom: -15px;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column-reverse;
        min-height: auto;
    }
    
    .about-text {
        max-width: 100%;
        padding: 60px 40px;
    }
    
    .about-background-svg {
        right: 20px;
        bottom: 20px;
    }
    
    .about-image {
        min-height: 400px;
        width: 100%;
    }
    
    .section-title.white {
        font-size: 40px;
    }
    
    .decorative-line.white {
        width: 350px;
    }
    
    .about-background-svg {
        right: 40px;
        width: 160px;
        height: 153px;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
    }
    .about-text {
        padding: 40px 20px;
    }
    
    .about-text-content {
        max-width: 100%;
    }
    
    .section-title.white {
        font-size: 36px;
        text-align: center;
    }
    
    .decorative-line.white {
        width: 280px;
        margin: 0 auto 30px;
    }
    
    .section-description.white {
        text-align: center;
        margin: 0 0 30px 0;
        font-size: 14px;
        line-height: 24px;
    }
    
    .cta-btn {
        font-size: 18px;
        padding: 10px 25px;
        min-width: 140px;
    }
    
    .about-background-svg {
        right: 0px;
        width: 120px;
        height: 115px;
        top: 70%;
        width: 150px;
        height: 140px;
        right: 10px;
        bottom: 10px;
    }
    
    .about-image {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .section-title.white {
        font-size: 28px;
    }
    
    .decorative-line.white {
        max-width: 100%;
    }
    
    .about-text-content {
        max-width: 100%;
    }
    
    .about-background-svg {
        width: 120px;
        height: 110px;
        right: 5px;
        bottom: 5px;
    }
}

/* Human Resource Development Section */
.human-resource {
    background: #ffffff;
    padding: 0;
    min-height: 472px;
}

.hr-content {
    display: flex;
    align-items: stretch;
    min-height: 472px;
    max-width: 1920px;
    margin: 0 auto;
}

.hr-image-container {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hr-text-container {
    flex: 1;
    background: #efe4ec;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 60px;
}

.hr-background-svg {
    position: absolute;
    left: -107px;
    top: 50%;
    transform: translateY(-50%);
    width: 214px;
    height: 249px;
    z-index: -1;
}

.hr-text-content {
    position: relative;
    z-index: 1;
    max-width: 430px;
    width: 100%;
}

.hr-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #5a4086;
    text-align: right;
    margin: 0 0 20px 0;
}

.hr-line {
    width: 100%;
    height: 2px;
    background: #725d96;
    margin: 0 0 40px auto;
}

.hr-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #856caf;
    text-align: justify;
    margin: 0 0 40px 0;
}

.hr-btn {
    background: #ffffff;
    border: none;
    border-radius: 55px;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #886db9;
    cursor: pointer;
    width: fit-content;
    display: block;
    margin-left: auto;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.hr-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

/* Human Resource Development Responsive continued */
@media (max-width: 1200px) {
    .hr-text-container {
        padding: 40px;
    }
    
    .hr-title {
        font-size: 28px;
    }
    
    .hr-background-svg {
        width: 180px;
        height: 210px;
        left: -90px;
    }
 }

 /* iPad Responsive - Use mobile-style SVG positioning */
 @media (max-width: 1024px) {
    .hr-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .hr-image-container {
        min-height: 350px;
    }
    
    .hr-text-container {
        padding: 50px 40px;
        justify-content: center;
    }
    
    .hr-background-svg {
        width: 170px;
        height: 200px;
        left: 20%;
        top: 25%;
        transform: translateX(-50%);
        z-index: 1;
    }
    
    .hr-text-content {
        text-align: center;
        max-width: 500px;
    }
    
    .hr-title {
        text-align: center;
        font-size: 30px;
    }
    
    .hr-line {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }
    
    .hr-description {
        text-align: center;
    }
    
    .hr-btn {
        margin-left: auto;
        margin-right: auto;
    }
 }
 
 @media (max-width: 992px) {
    .hr-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .hr-image-container {
        min-height: 400px;
    }
    
    .hr-text-container {
        padding: 60px 40px;
    }
    
    .hr-background-svg {
        left: 0%;
        top: 20%;
        transform: translateX(-50%);
    }
    
    .hr-text-content {
        text-align: center;
    }
    
    .hr-title {
        text-align: center;
    }
    
    .hr-line {
        margin-left: auto;
        margin-right: auto;
        max-width: 380px;
    }
    
    .hr-description {
        text-align: center;
    }
    
    .hr-btn {
        margin-left: auto;
        margin-right: auto;
    }
 }
 
 @media (max-width: 768px) {
    .hr-image-container {
        min-height: 300px;
    }
    
    .hr-text-container {
        padding: 40px 20px;
        justify-content: center;
    }
    
    .hr-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .hr-line {
        margin-bottom: 30px;
    }
    
    .hr-description {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 30px;
    }
    
    .hr-btn {
        font-size: 18px;
        padding: 10px 25px;
    }
    
    .hr-background-svg {
        width: 150px;
        height: 180px;
        top: -90px;
    }
 }
 
 @media (max-width: 480px) {
    .hr-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .hr-image-container {
        width: 100%;
        height: auto;
        min-height: auto;
    }
    
    .hr-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .hr-text-container {
        padding: 40px 20px;
        justify-content: center;
        position: relative;
    }
    
    .hr-background-svg {
        width: 150px;
        height: 175px;
        left: 0%;
        top: 30%;
        transform: translateX(-50%);
        z-index: 1;
    }
    
    .hr-text-content {
        max-width: 100%;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .hr-title {
        font-size: 24px;
        text-align: center;
        color: #5a4086;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hr-line {
        width: 80%;
        max-width: 300px;
        margin: 0 auto 30px auto;
        background: #725d96;
    }
    
    .hr-description {
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        color: #856caf;
        margin-bottom: 30px;
    }
    
    .hr-btn {
        font-size: 18px;
        padding: 10px 30px;
        min-width: 140px;
        margin: 0 auto;
        display: block;
    }
}
 
/* Campus Life Section */
 .campus-life {
    position: relative;
    height: 670px;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 
 .campus-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
 }
 
 .campus-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
 }
 
 .campus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
 }
 
 .campus-life .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100%;
    padding: 0 60px 80px 60px;
 }
 
 .campus-content {
    text-align: center;
    max-width: 800px;
 }
 
 .campus-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 40px 0;
    line-height: normal;
 }
 
 .campus-subtitle-container {
    display: inline-block;
    background: #856caf;
    padding: 20px 40px;
    border-radius: 0;
 }
 
 .campus-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: normal;
 }
 
 /* Campus Life Responsive */
 @media (max-width: 1200px) {
    .campus-life {
        height: 600px;
    }
    
    .campus-life .container {
        padding: 0 40px 60px 40px;
    }
    
    .campus-title {
        font-size: 42px;
        margin-bottom: 35px;
    }
    
    .campus-subtitle {
        font-size: 42px;
    }
    
    .campus-subtitle-container {
        padding: 18px 35px;
    }
 }
 
 @media (max-width: 768px) {
    .campus-life {
        height: 500px;
    }
    
    .campus-life .container {
        padding: 40px 30px;
        align-items: center;
        justify-content: center;
    }
    
    .campus-content {
        text-align: center;
    }
    
    .campus-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .campus-subtitle {
        font-size: 28px;
    }
    
    .campus-subtitle-container {
        padding: 15px 25px;
    }
 }
 
 @media (max-width: 480px) {
    .campus-life {
        height: 400px;
    }
    
    .campus-life .container {
        padding: 40px 20px;
        align-items: center;
        justify-content: end;
    }
    
    .campus-content {
        text-align: center;
    }
    
    .campus-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .campus-subtitle {
        font-size: 20px;
    }
    
    .campus-subtitle-container {
        padding: 12px 20px;
    }
 }
 
 /* Applying Section */
.applying {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 578px;
    margin: 0 auto;
    overflow: hidden;
}

.applying-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #efe4ec;
    z-index: 1;
}

.applying-svg-background {
    position: absolute;
    top: 14px;
    left: calc(50% + 327px);
    transform: translateX(-50%);
    width: 786px;
    height: 529px;
    z-index: 2;
}

.applying-svg-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.applying-image {
    position: absolute;
    top: 67px;
    left: 63.264%;
    right: 17.014%;
    aspect-ratio: 2895/4096;
    z-index: 3;
}

.applying-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.applying-content {
    position: absolute;
    top: 165px;
    left: 147px;
    width: 464px;
    z-index: 4;
}

.applying-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #725d96;
    margin: 0 0 40px 0;
    line-height: normal;
    width: 464px;
}

.applying-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #755da0;
    text-align: justify;
    margin: 0 0 40px 0;
    width: 464px;
    height: 125px;
}

.applying-btn {
    position: absolute;
    top: 296px;
    left: 285px;
    width: 157px;
    height: 38px;
    background: #ffffff;
    border: none;
    border-radius: 55px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #886db9;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.applying-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.3);
}

/* Applying Section Responsive */
@media (max-width: 1200px) {
    .applying {
        max-width: 100%;
        height: 500px;
    }
    
    .applying-content {
        left: 80px;
        width: 400px;
        top: 120px;
    }
    
    .applying-title {
        font-size: 42px;
        width: 400px;
    }
    
    .applying-description {
        width: 400px;
        height: auto;
    }
    
    .applying-btn {
        top: 250px;
        left: 220px;
    }
    
    .applying-svg-background {
        width: 600px;
        height: 400px;
        left: calc(50% + 250px);
        top: 50px;
    }
    
    .applying-image {
        top: 80px;
        left: 60%;
        right: 10%;
    }
}

/* iPad/Tablet Responsive */
@media (max-width: 992px) {
    .applying {
        height: 800px;
        max-width: 100%;
    }
    
    .applying-content {
        position: relative;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 600px;
        text-align: center;
    }
    
    .applying-title {
        font-size: 40px;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .applying-description {
        width: 100%;
        height: auto;
        text-align: center;
        margin: 0 0 40px 0;
    }
    
    .applying-btn {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
        font-size: 18px;
        width: 180px;
        height: 44px;
    }
    
    .applying-image {
        position: absolute;
        top: 400px;
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
        width: 350px;
        height: auto;
        aspect-ratio: 2895/4096;
    }
    
    .applying-svg-background {
        position: absolute;
        top: 450px;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        height: 350px;
        opacity: 0.5;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .applying {
        height: auto;
        min-height: 750px;
        padding: 60px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .applying-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        max-width: 400px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .applying-title {
        font-size: 32px;
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }
    
    .applying-description {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 40px;
        width: 100%;
        height: auto;
        text-align: center;
    }
    
    .applying-btn {
        position: relative;
        font-size: 18px;
        width: 180px;
        height: 44px;
        margin: 0 auto;
    }
    
    .applying-image {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 280px;
        margin: 0 auto;
        z-index: 3;
    }
    
    .applying-svg-background {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 400px;
        height: 300px;
        opacity: 0.3;
        z-index: 1;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .applying {
        min-height: 700px;
        padding: 40px 0;
        flex-direction: column-reverse;
    }
    
    .applying-content {
        width: 85%;
        max-width: 350px;
        margin-bottom: 50px;
    }
    
    .applying-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .applying-description {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 30px;
    }
    
    .applying-btn {
        font-size: 16px;
        width: 160px;
        height: 40px;
    }
    
    .applying-image {
        width: 220px;
        left: 0;
    }
    
    .applying-svg-background {
        width: 350px;
        height: 250px;
        bottom: 30px;
    }
}
 
 /* Footer */
 .footer {
    background: #f5f2f5;
    height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 
 .footer-container {
    max-width: 1440px;
    width: 100%;
    padding: 0 162px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
 }
 
 .footer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1096px;
 }
 
 .footer-logo {
    flex-shrink: 0;
 }
 
 .footer-logo img {
    width: 318.94px;
    height: 74px;
    object-fit: contain;
 }
 
 .footer-emblem {
    flex-shrink: 0;
 }
 
 .footer-emblem img {
    width: 220px;
    height: 68.384px;
    object-fit: contain;
 }
 
 .footer-line {
    width: 100%;
    max-width: 1096px;
    height: 2px;
    background: #6a4aa2;
    border: none;
    margin: 0;
 }
 
 .footer-nav {
    text-align: center;
    max-width: 770px;
    line-height: 26px;
 }
 
 .footer-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6a4aa2;
    text-decoration: none;
    margin: 0 6px;
    transition: opacity 0.3s ease;
 }
 
 .footer-nav-link:hover {
    opacity: 0.7;
 }
 
 .footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6a4aa2;
    text-align: center;
    margin: 0;
    max-width: 1106px;
    line-height: normal;
 }
 
 .copyright-line {
    display: inline;
 }
 
 .copyright-line:first-child::after {
    content: " ";
 }
 
 /* Footer Responsive */
 @media (max-width: 1200px) {
    .footer-container {
        padding: 0 80px;
    }
    
    .footer-logo img {
        width: 280px;
        height: 65px;
    }
    
    .footer-emblem img {
        width: 190px;
        height: 60px;
    }
 }
 
 @media (max-width: 992px) {
    .footer {
        height: auto;
        padding: 60px 0;
    }
    
    .footer-container {
        padding: 0 40px;
        gap: 30px;
    }
    
    .footer-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo img {
        width: 250px;
        height: 58px;
    }
    
    .footer-emblem img {
        width: 170px;
        height: 54px;
    }
    
    .footer-nav {
        max-width: 100%;
    }
    
    .footer-nav-link {
        display: inline-block;
        margin: 4px 8px;
    }
 }
 
 @media (max-width: 768px) {
    .footer {
        height: 588px;
        padding: 0;
    }
    
    .footer-container {
        padding: 25px 0;
        max-width: 393px;
        gap: 14px;
    }
    
    .footer-header {
        flex-direction: column;
        gap: 25px;
        max-width: 220px;
        align-items: center;
    }
    
    .footer-logo img {
        width: 205px;
        height: 74px;
    }
    
    .footer-emblem img {
        width: 220px;
        height: 68.384px;
    }
    
    .footer-line {
        max-width: 360px;
        width: 360px;
    }
    
    .footer-nav {
        max-width: 405px;
        line-height: 26px;
        height: 172px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    
    .footer-nav-link {
        font-size: 14px;
        margin: 0;
        display: block;
        text-align: center;
        line-height: 26px;
    }
    
         .footer-copyright {
        font-size: 14px;
        max-width: 434px;
        line-height: normal;
        height: 27px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .copyright-line {
        display: block;
        text-align: center;
    }
    
    .copyright-line:first-child::after {
        content: "";
    }
 }
 
 @media (max-width: 480px) {
    .footer {
        height: 588px;
    }
    
    .footer-container {
        max-width: 393px;
        padding: 25px 20px;
    }
    
    .footer-header {
        max-width: 220px;
    }
    
    .footer-logo img {
        width: 205px;
        height: 74px;
    }
    
    .footer-emblem img {
        width: 220px;
        height: 68.384px;
    }
    
    .footer-line {
        width: 360px;
        max-width: 360px;
    }
    
    .footer-nav {
        max-width: 405px;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
    
         .footer-copyright {
        font-size: 14px;
        max-width: 434px;
    }
    
    .copyright-line {
        display: block;
        text-align: center;
    }
    
    .copyright-line:first-child::after {
        content: "";
    }
 }

 .animate-from-right {
    opacity: 0;
    transform: translateX(100px);
    transition: none;
}

/* Initial state for elements that will animate from left */
.animate-from-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: none;
}

/* Animation keyframes */
@keyframes fadeInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes that get added by JavaScript */
.animate-from-right.animate {
    animation: fadeInFromRight 1.2s ease-out forwards;
}

.animate-from-left.animate {
    animation: fadeInFromLeft 1.2s ease-out forwards;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 89px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-container {
    height: 60px;
    width: 280px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    background: #886db9;
    height: 89px;
    padding: 0 40px;
    margin-right: -20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

/* Active page underline for desktop */
.nav-link.active::after {
    width: calc(100% - 40px);
}

.nav-link:hover::after {
    width: calc(100% - 40px);
}

.nav-link--w-icon.active::after {
    width: calc(100% - 60px) !important;
}

.nav-link--w-icon:hover::after {
    width: calc(100% - 60px) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
}

.hamburger-line {
    width: 17px;
    height: 2px;
    background: #856caf;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #efe4ec;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 77px;
    padding: 0 26px;
    background: #ffffff;
}

.mobile-logo-container {
    height: 53px;
    width: 230px;
}

.mobile-logo img {
    height: 53px;
    width: 230px;
    object-fit: contain;
}

.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    padding: 51px 26px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-item {
    position: relative;
    width: 100%;
    max-width: 338px;
}

.mobile-nav-item.active {
    background: #856caf;
    height: 37px;
    display: flex;
    align-items: center;
    padding-left: 3px;
}

.mobile-nav-item.active .mobile-nav-link {
    color: #ffffff;
    padding: 0 3px;
    line-height: 37px;
}

.mobile-nav-item:not(.active):hover .mobile-nav-underline {
    width: calc(100% - 6px);
    opacity: 1;
}

.mobile-nav-item:not(.active):hover .mobile-nav-link {
    color: #7154a0;
}

.mobile-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 3.6px;
    color: #856caf;
    text-decoration: none;
    display: block;
    padding: 5px 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mobile-nav-underline {
    position: absolute;
    bottom: 0;
    left: 3px;
    width: 0;
    height: 3px;
    background: #856caf;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
}

/* Mobile Utility and Language Links */
.mobile-nav-divider {
    border: 0;
    height: 1px;
    background-color: #d1c5de;
    margin: 25px 0;
    max-width: 338px;
}

.mobile-utility-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 338px;
    margin-top: 30px;
}

.mobile-utility-nav a,
.mobile-utility-nav span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #7154a0;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-utility-nav a:hover {
    color: #5c4488;
}

.mobile-language-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.mobile-language-list a,
.mobile-language-list span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #7154a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-language-list a:hover {
    color: #5c4488;
}

.mobile-language-list .active span {
    font-weight: 700;
    border-bottom: 2px solid #7154a0;
    padding-bottom: 2px;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Header Responsive */
@media (max-width: 768px) {
    .nav-container {
        height: 77px;
        padding: 12px 26px;
    }
    
    .logo-container {
        height: 53px;
        width: 230px;
    }

    .logo-img {
        height: 53px;
        width: 230px;
        object-fit: contain;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Desktop Nav */

.nav, nav ul {
    list-style: none;
}

.nav li {
    position: relative;
}

.nav li:hover > .nav__submenu {
    max-height: 500px;
    opacity: 1;
}

.nav__submenu {
    position: absolute;
    z-index: 10;
    max-height: 0;
    min-width: 180px;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    top: 100%;
    left: 10px;
    padding: 0;
    background: #fff;
    border: 2px solid #886db9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.nav__submenu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 600;
    color: #886db9;
}

.nav__submenu li a:hover {
    background: #efe4ec;
}

/* Submenu Accordion  */
.accordion__header i {
    font-size: 20px;
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 16px;
}

.accordion__content a {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    color: #856caf;
}

.accordion__content a:hover {
    color: #007BFF;
}

.accordion__item.active .accordion__content {
    max-height: 300px;
}