body {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header Structure - Unified Layout */
.header-container {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 1rem 2rem;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Top Row */
.top-row {
    padding: 1rem 2rem 0.5rem 2rem;
}


.search-container {
    position: relative;
}

.search-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 8px 40px 8px 16px;
    width: 250px;
    font-size: 14px;
}

.search-box:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.1);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.btn-contribute {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
    transition: all 0.2s;
}

.btn-contribute:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

.btn-volunteer {
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-volunteer:hover {
    background-color: #3367d6;
    transform: translateY(-1px);
}

.language-switcher {
    border-left: 1px solid #dee2e6;
    padding-left: 16px;
    margin-left: 16px;
}

.language-switcher span {
    margin: 0 4px;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.language-switcher span.active {
    color: #333;
    font-weight: 700;
}

/* Bottom Row - Navigation */
.nav-row {
    padding: 0.5rem 2rem 1rem 2rem;
}

.main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2.5rem;
    position: relative;
}

.main-nav li {
    position: relative;
}

.main-nav li:hover .megamenu {
    display: block;
}

.main-nav a {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    color: #1E3364;
    text-decoration: none;
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.36px;
    text-align: right;
    transition: all 0.2s;
    position: relative;
}

.main-nav a:hover {
    color: #ff9800;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #ff9800;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-nav a:hover::before {
    transform: scaleX(1);
}


.dropdown-arrow::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 8px;
    margin-left: 6px;
    background-image: url('../../resources/vector2.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Megamenu */
.megamenu {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 1000;
    display: none;
    padding: 3rem 2rem;
    width: 100vw;
}

.megamenu.show {
    display: block;
}

.megamenu-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

/* Left Menu */
.megamenu-menu {
    border-right: 1px solid #e9ecef;
    padding-right: 3rem;
    min-width: 200px;
    flex-shrink: 0;
}

.megamenu-menu a {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.megamenu-menu a:hover {
    color: #1E3364;
    padding-left: 8px;
    font-weight: 600;
}

/* Right Cards */
.megamenu-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.megamenu-cards .calling-full-image {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 300px;
}

.megamenu-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.calling-full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    position: relative;
    aspect-ratio: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    text-decoration: none;
    color: inherit;
}

.category-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: white;
}

.card-arrow {
    background-color: #4285f4;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* Video Section */
.video-section {
    width: 100%;
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
}

.video-container {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    z-index: 10;
}

.text-overlay {
    width: 529px;
    height: 375px;
    flex-shrink: 0;
    aspect-ratio: 529/375;
    background: url('../../resources/elevate_empower.png') 50% / cover no-repeat;
}

.btn-explore {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Onest', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-explore:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Purpose Section - Homepage (with dark background image) */
.purpose-section {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    background-image: url('../../resources/JguakF.jpg') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    margin: 0 auto;
    max-width: 100vw;
    overflow: hidden;
}

/* Leadership Purpose Section - White background */
.leadership-purpose-section {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    background: #ffffff !important;
    background-color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    margin: 0 auto;
    max-width: 100vw;
    overflow: hidden;
}

/* Leadership purpose text - Dark text for white background */
.leadership-purpose-section .purpose-text {
    color: #5A5A5A !important;
    text-align: left !important;
    font-family: Onest !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    max-width: 100% !important;
}

.purpose-section::before {
    display: none;
}

.purpose-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.purpose-image {
    width: 404px;
    height: 99px;
    flex-shrink: 0;
    aspect-ratio: 404/99;
    background: url('../../resources/purpose.png') center center / contain no-repeat;
}

.purpose-text {
    color: #FFF !important;
    text-align: center !important;
    font-family: Onest !important;
    font-size: 25px !important;
    font-style: normal !important;
    font-weight: 300 !important;
    line-height: 40px !important; /* 160% */
    margin: 0 !important;
    max-width: 1000px !important;
}

/* Two Column Section */
.two-column-section {
    width: 100%;
    padding: 5rem 2rem 0 2rem;
    background-color: #ffffff;
}

.two-column-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.image-column {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0;
}

.section-image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main-image {
    width: 120%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-left: -10%;
}

.text-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.main-heading {
    width: 753.643px;
    height: 197.017px;
    flex-shrink: 0;
    color: #5A5A5A;
    font-family: Onest;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 115%;
}

.sub-text {
    width: 643px;
    height: auto;
    flex-shrink: 0;
    color: #5A5A5A;
    font-family: Onest;
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin: 0;
    padding: 0;
}

.btn-view-more {
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Onest', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
}

.btn-view-more:hover {
    background-color: #3367d6;
    transform: translateY(-1px);
}

/* Gray Background Section */
.gray-section {
    width: 100%;
    min-height: 800px;
    flex-shrink: 0;
    background: rgba(217, 217, 217, 0.50);
    margin: 0 auto;
    max-width: 100vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
}

.gray-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding-top: 60px;
}

.focus-area-text {
    width: 470.336px;
    height: 86.956px;
    flex-shrink: 0;
    color: #858585;
    text-align: center;
    font-family: Onest;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 115%;
    margin: 0;
    padding: 0;
    margin-bottom: -10px;
}

.focus-area-image {
    width: 706px;
    height: 149px;
    flex-shrink: 0;
    aspect-ratio: 706/149;
    background: url('../../resources/focusarea.png') 50% / cover no-repeat;
    margin: 0;
    padding: 0;
}

.focus-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    align-items: center;
}

.focus-btn {
    width: 208px;
    height: 45px;
    background-color: transparent;
    color: #858585;
    border: 2px solid #858585;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Onest', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-btn:hover {
    color: white;
    transform: translateY(-2px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.education-btn:hover {
    background-image: url('../../resources/educationbg.png');
}

.arts-btn:hover {
    background-image: url('../../resources/artsbg.png');
}

.community-btn:hover {
    background-image: url('../../resources/communitybg.png');
}

.environment-btn:hover {
    background-image: url('../../resources/environmentbg.png');
}

.focus-btn-active {
    color: white;
    border-color: #4285f4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.focus-btn-active:hover {
    border-color: #3367d6;
}

.education-btn.focus-btn-active {
    background-image: url('../../resources/educationbg.png');
}

.arts-btn.focus-btn-active {
    background-image: url('../../resources/artsbg.png');
}

.community-btn.focus-btn-active {
    background-image: url('../../resources/communitybg.png');
}

.environment-btn.focus-btn-active {
    background-image: url('../../resources/environmentbg.png');
}

/* Focus Content Divs */
.focus-content {
    margin-top: 0;
    width: 1200px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.content-div {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 1000px;
    height: 500px;
}

.content-div.active {
    display: flex;
    opacity: 1;
}

.content-left {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.content-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.content-right {
    width: 50%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.2;
}

.content-text {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.content-learn-more {
    background: #0066CC;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.content-learn-more:hover {
    background: #0052A3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Chairman Section */
.chairman-section {
    background: white;
    padding: 80px 0;
    width: 100%;
}

.chairman-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 2rem;
}

.chairman-left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chairman-image {
    width: 120%;
    height: auto;
}

.chairman-right {
    width: 50%;
    padding-left: 20px;
}

.chairman-header {
    margin-bottom: 30px;
}

.chairman-message-header {
    max-width: 100%;
    height: auto;
}

.chairman-quote {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
}

.quote-image {
    width: 60px;
    height: auto;
    display: inline-block;
    vertical-align: bottom;
}

.start-quote {
    margin-right: 10px;
    vertical-align: bottom;
}

.end-quote {
    margin-left: 10px;
    vertical-align: top;
}

.chairman-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: left;
}

.chairman-title {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

/* Blue Info Section */
.blue-info-section {
    background-image: url('../../resources/bluedivnew.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: fit-content;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 0 2rem;
    position: relative;
}

.info-right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 60px;
    padding-right: 20px;
}

.info-bottom {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding-left: 20px;
    padding-bottom: 80px;
}

.info-box {
    width: 400px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.info-header {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Onest', sans-serif;
    margin-bottom: 10px;
}

.info-details {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Onest', sans-serif;
    line-height: 1.4;
    max-width: 200px;
}

.info-box-1 {
    background-image: url('../../resources/info1new.png');
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    transition: background-image 0.3s ease;
}

.info-box-1:hover {
    background-image: url('../../resources/info1_1.png');
}

.info-box-2 {
    background-image: url('../../resources/info2new.png');
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    transition: background-image 0.3s ease;
}

.info-box-2:hover {
    background-image: url('../../resources/info2_2.png');
}

/* News Section */
.news-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    padding: 0 2rem;
}

.news-left {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 2rem;
}

.news-title-images {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.title-image {
    max-height: 120px;
    width: auto;
    align-self: flex-start;
}

.news-description {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #5A5A5A;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.btn-view-more-news {
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Onest', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-view-more-news:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.news-right {
    width: 70%;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.news-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.news-carousel::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 320px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-family: 'Onest', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #4285f4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.news-headline {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1E3364;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    min-height: 50px;
}

.news-excerpt {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #4285f4;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #4285f4;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: #4285f4;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Higher Education Section */
.higher-education-section {
    background-image: url('../../resources/Highereducation.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}

.higher-education-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.education-content-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 24px;
    padding: 3rem 4rem;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 5%;
}

.education-header {
    margin-bottom: 2.5rem;
    text-align: left;
}

.education-header img {
    width: 400px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.education-text {
    font-family: 'Onest', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: left;
    letter-spacing: 0.3px;
}

.btn-apply-now {
    background: linear-gradient(135deg, #4285f4, #3367d6);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Onest', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 18px rgba(66, 133, 244, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-apply-now:hover {
    background: linear-gradient(135deg, #3367d6, #2451cc);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
    text-decoration: none;
}

/* Strategic Partners Section */
.strategic-partners-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-title {
    color: rgba(0, 0, 0, 0.47);
    font-family: Onest;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-bottom: 4rem;
}

.partners-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-scroll-track {
    display: flex;
    gap: 4rem;
    animation: scroll-left 30s linear infinite;
    width: calc(200%);
}

.partner-logo {
    flex: 0 0 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.partner-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    border: none;
    background: white;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Talk to Us Section */
.talk-to-us-section {
    background-image: url('../../resources/talktousbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    width: 100%;
    position: relative;
}


.talk-to-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.talk-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.question-text {
    font-family: 'Onest', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: white;
    margin: 0;
    text-align: left;
    line-height: 1.2;
}

.ttu-header img {
    max-width: 100%;
    height: auto;
}

.talk-right {
    width: 60%;
}

.contact-form {
    background: transparent;
    border-radius: 0;
    padding: 3rem;
    backdrop-filter: none;
    box-shadow: none;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.input-container {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #ff9800;
    border-radius: 12px;
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #ff9800;
    pointer-events: none;
    transition: all 0.3s ease;
    filter: hue-rotate(25deg) saturate(1.2) brightness(0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f57c00;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    display: block;
    color: #000000;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.btn-send-message {
    background: linear-gradient(135deg, #4285f4, #3367d6);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Onest', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
    width: 100%;
}

.btn-send-message:hover {
    background: linear-gradient(135deg, #3367d6, #2451cc);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.4);
}

.btn-send-message:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   LEADERSHIP PAGE STYLES
============================================ */

/* Ensure body has white background */
body {
    background-color: #ffffff !important;
}

/* Leadership Hero Section */
.leadership-hero {
    background-image: url('../../resources/leadershipbg.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.leadership-title-img {
    max-width: 200%;
    height: auto;
    width: 600px;
}

.leadership-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    padding: 100px 0;
}

.leadership-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.leadership-hero .hero-subtitle {
    font-size: 1.25rem;
    color: white;
    opacity: 0.9;
}

.leadership-header-img {
    max-width: 100%;
    height: auto;
}

/* Purpose Section - Additional styles */
.purpose-section {
    padding: 80px 0;
}

section.purpose-section {
    background-image: url('../../resources/JguakF.jpg') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.purpose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.impact-title-img {
    max-width: 60%;
    height: auto;
    margin-top: 0.5rem;
    margin-left: 0;
}

/* Removed conflicting .purpose-text rule - using main rule above */

/* CEO Message Section */
.ceo-message-section {
    padding: 80px 0;
    background: white;
    background-color: #ffffff;
}

.ceo-message-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.ceo-title-img {
    margin-bottom: 2rem;
}

.ceo-title {
    max-width: 100%;
    height: auto;
}

.ceo-message-section .chairman-left {
    margin-left: -20px;
    padding-right: 30px;
}

/* Staff Section */
.staff-section {
    padding: 60px 0 0 0;
    background: white;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.staff-card {
    background: white;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.staff-image {
    margin-bottom: 1rem;
}

.staff-photo {
    width: 180px;
    height: 240px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.staff-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.staff-position {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .staff-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .staff-photo {
        width: 140px;
        height: 180px;
    }

    .staff-card {
        padding: 1rem;
    }
}

/* Board of Trustee Section */
.board-section {
    padding: 80px 0;
    background: white;
}

.board-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.board-member-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.board-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.member-position {
    font-size: 1rem;
    color: #0066cc;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .leadership-hero .hero-title {
        font-size: 2.5rem;
    }

    .purpose-title {
        font-size: 2rem;
    }

    .board-section .section-title {
        font-size: 2rem;
    }

    .board-member-card {
        padding: 1.5rem;
    }
}

/* Footer Section */
.footer-section {
    background-color: #f5f5f5;
    padding: 60px 0 40px 0;
    width: 100%;
    color: #5A5A5A;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.footer-left {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-right {
    width: 80%;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    color: white;
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube:hover {
    background: #ff0000;
}

.social-icon.twitter:hover {
    background: #000000;
}

.social-icon.tiktok:hover {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 20px;
    text-align: center;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-text {
    color: #5A5A5A;
}

.address-info {
    margin-top: 1rem;
}

.address-info p {
    color: #5A5A5A;
    margin: 0;
}

/* Footer Navigation */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    height: 100%;
}

.nav-column {
    display: flex;
    flex-direction: column;
}

.nav-title {
    font-family: 'Onest', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1E3364;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-links li a {
    font-family: 'Onest', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5A5A5A;
    text-decoration: none;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: block;
    padding: 2px 0;
}

.nav-links li a:hover {
    color: #1E3364;
    padding-left: 8px;
    font-weight: 500;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285f4, #3367d6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #3367d6, #2451cc);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4285f4;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    max-width: 350px;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left-color: #22c55e;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.toast-title {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.toast-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.toast-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.toast-message {
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #4285f4, #3367d6);
    transition: width linear;
    border-radius: 0 0 8px 8px;
}

.toast.success .toast-progress {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.toast.error .toast-progress {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.toast.warning .toast-progress {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

/* Lazy Loading */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: #f8f9fa;
}

.lazy-image.loaded {
    opacity: 1;
}

.lazy-image:not(.loaded) {
    min-height: 200px;
    background-image: linear-gradient(90deg, #f0f0f0 25%, transparent 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Hide mobile menu button items on desktop */
.mobile-menu-button-item {
    display: none;
}

/* Cursor Pointer for Clickable Elements */

button,
a,
.btn,
.btn-contribute,
.btn-volunteer,
.btn-explore,
.btn-view-more,
.btn-view-more-news,
.btn-apply-now,
.btn-send-message,
.focus-btn,
.content-learn-more,
.carousel-nav,
.scroll-to-top,
.toast-close,
.main-nav a,
.megamenu-menu a,
.category-card,
.news-card,
.partner-logo,
.social-icon,
.nav-links a,
.language-switcher span,
input[type="submit"],
input[type="button"],
[onclick],
[role="button"] {
    cursor: pointer !important;
}

/* Specific overrides for any elements that might have cursor set elsewhere */
.main-nav li a,
.megamenu-menu a,
.category-card,
.news-card,
.partner-logo,
.social-icon,
.nav-links li a {
    cursor: pointer !important;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .content-section {
        gap: 1rem;
    }

    .search-box {
        width: 200px;
    }

    .main-nav {
        justify-content: center;
        gap: 1.5rem;
    }

    .megamenu-content {
        flex-direction: column;
        gap: 2rem;
    }

    .megamenu-menu {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding-right: 0;
        padding-bottom: 1rem;
        min-width: auto;
    }

    .megamenu-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .overlay-content {
        left: 2%;
        gap: 1rem;
    }

    .text-overlay {
        width: 90%;
        height: auto;
        max-width: 529px;
    }

    .btn-explore {
        padding: 6px 16px;
        font-size: 12px;
    }

    .purpose-section {
        width: 100%;
        height: auto;
        min-height: 60vh;
        padding: 3rem 1rem;
        background-image: url('../../resources/JguakF.jpg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    .purpose-content {
        gap: 2rem;
    }

    .purpose-image {
        width: 90%;
        max-width: 404px;
        height: auto;
        aspect-ratio: 404/99;
    }

    .purpose-text {
        font-size: 20px;
        line-height: 32px;
    }

    .two-column-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .main-heading {
        width: 100%;
        height: auto;
        font-size: 36px;
        line-height: 120%;
    }

    .sub-text {
        width: 100%;
        height: auto;
        font-size: 20px;
        line-height: 32px;
    }

    .section-image {
        width: 100%;
        height: auto;
    }

    .main-image {
        max-height: 300px;
    }

    .btn-view-more {
        padding: 6px 16px;
        font-size: 12px;
    }

    .gray-section {
        width: 100%;
        height: auto;
        min-height: 60vh;
        padding: 3rem 1rem;
    }


    .focus-area-text {
        width: 90%;
        max-width: 470px;
        height: auto;
        font-size: 32px;
        line-height: 120%;
    }

    .gray-content {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .focus-area-image {
        width: 90%;
        max-width: 706px;
        height: auto;
        aspect-ratio: 706/149;
    }

    .focus-buttons {
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
    }

    .focus-btn {
        width: 180px;
        height: 40px;
        font-size: 14px;
    }
}

/* Language switcher improvements */
.language-switcher a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.language-switcher a:hover {
    color: #333 !important;
}
