:root {
    --primary-color: #009441;
    --primary-light: #00b34e;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#main-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#main-nav {
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo-img {
    height: 35px;
    /* Slightly larger height */
    width: auto;
    transition: var(--transition);
}

.scrolled .logo-img {
    /* Add any scrolled effect for the logo if necessary, e.g., a filter or max-height */
    height: 30px;
}

#main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

#main-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    /* Changed from light to dark to be visible on white bg */
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.scrolled #main-nav ul li a {
    color: var(--text-dark);
}

#main-nav ul li a:hover {
    color: var(--primary-light);
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cta-img {
    height: 35px;
    /* Same initial height as the logo */
    width: auto;
    transition: var(--transition);
}

.scrolled .cta-img {
    height: 30px;
    /* Same scrolled height as the logo */
}

/* Hero Section */
#hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    /* Offset for the fixed header */
}

#hero picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.about-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    align-items: stretch;
}

.about-content {
    flex: 1.2;
    padding: 4rem 3rem 4rem 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #444;
    margin-bottom: 3rem;
    text-align: inherit;
    letter-spacing: -0.01em;
}

.about-title {
    color: #8db56d;
    /* Green color matching design */
    margin-bottom: 2rem;
    line-height: 1.2;
    border-left: 6px solid #8db56d;
    padding-left: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    /* Slightly smaller text for fit */
    color: #4a4a4a;
    line-height: 1.8;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Global Image Box Placeholder */
.image-box {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #f5f5f5;
    border: 2px dashed #dcdcdc;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
}

/* Utility Classes for Images */
.fit-cover {
    object-fit: cover;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

/* Decorative Collage Layout for Section 3 */
.collage-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    /* Prevent horizontal scrolling */
    padding: 0 1rem;
}

/* Background floating decorations */
.collage-section::before,
.collage-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.collage-section::before {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.05;
    top: -50px;
    right: -100px;
}

.collage-section::after {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
    opacity: 0.05;
    bottom: -30px;
    left: -50px;
}

.collage-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* Reduced gap to allow deeper overlap */
    position: relative;
}

.collage-block.type-b {
    flex-direction: row-reverse;
}

.collage-text {
    flex: 1;
    z-index: 10;
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

.collage-block.type-a .collage-text {
    margin-right: -10%;
    /* Force overlap with images */
}

.collage-block.type-b .collage-text {
    margin-left: -5%;
    /* Reduced overlap to prevent left cut-off */
    padding-left: 2.5rem;
    /* Ensure text doesn't hit the left edge */
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.collage-images {
    flex: 1.2;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.collage-row {
    display: flex;
    gap: 2rem;
    width: 100%;
    align-items: center;
    /* Set baseline for offsets */
}

.collage-img {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    overflow: hidden;
    color: #444;
}

.collage-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 10 !important;
}

/* Shape 1: Rectangle (Image 3-2) */
.collage-img.shape-1 {
    width: 50%;
    aspect-ratio: 3/4;
    border-radius: 20px;
    z-index: 2;
    transform: translateY(-20px);
}

.collage-img.shape-1:hover {
    transform: translateY(-28px) scale(1.02);
}

/* Shape 2: Large Circle (Image 3-3) */
.collage-img.shape-2 {
    width: 60%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    z-index: 1;
    transform: translateY(20px);
}

.collage-img.shape-2:hover {
    transform: translateY(12px) scale(1.02);
}

/* Shape 3: Tall Asymmetrical Portrait, shifted up */
.collage-img.shape-3 {
    width: 55%;
    aspect-ratio: 3/4;
    border-radius: 120px 20px 20px 20px;
    z-index: 2;
    transform: translateY(-25px);
}

.collage-img.shape-3:hover {
    transform: translateY(-33px) scale(1.02);
}

/* Shape 4: Soft rounded landscape (Image 3-5) */
.collage-img.shape-4 {
    width: 75%;
    aspect-ratio: 4/3;
    border-radius: 30px;
    z-index: 1;
    transform: translateY(40px);
}

.collage-img.shape-4:hover {
    transform: translateY(32px) scale(1.02);
}

/* Green dots behind Image 3-4 */
.collage-bg-decor {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#2cb058 2.5px, transparent 2.5px);
    background-size: 25px 25px;
    opacity: 0.15;
    border-radius: 50%;
    top: -30px;
    left: -40px;
    z-index: 0;
}

/* Orange dots behind Image 3-3 */
.collage-bg-decor-2 {
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(#f59e0b 2.5px, transparent 2.5px);
    background-size: 25px 25px;
    opacity: 0.2;
    border-radius: 50%;
    bottom: -20px;
    right: -30px;
    z-index: 0;
}

@media (min-width: 993px) {
    .text-right-md {
        text-align: right;
    }
}

@media (max-width: 768px) {
    .collage-section {
        gap: 3rem;
        padding: 0 0.5rem;
    }

    .collage-block,
    .collage-block.type-b {
        flex-direction: column;
        gap: 1.5rem;
    }

    .collage-row {
        gap: 1rem;
    }

    .collage-block.type-a .collage-text {
        margin: 0 0 -15% 0;
        padding: 1.5rem;
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    }

    .collage-block.type-b .collage-text {
        margin: -15% 0 0 0;
        padding: 1.5rem;
        background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    }

    .collage-img.shape-1 {
        transform: translateY(-5px);
    }

    .collage-img.shape-1:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .collage-img.shape-2 {
        transform: translateY(5px);
    }

    .collage-img.shape-2:hover {
        transform: translateY(0px) scale(1.02);
    }

    .collage-img.shape-3 {
        transform: translateY(-5px);
    }

    .collage-img.shape-3:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .collage-img.shape-4 {
        transform: translateY(5px);
    }

    .collage-img.shape-4:hover {
        transform: translateY(0px) scale(1.02);
    }

    .collage-bg-decor,
    .collage-bg-decor-2 {
        width: 120px;
        height: 120px;
    }
}

.img-label {
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .about-card {
        flex-direction: column;
        border-radius: 24px;
    }

    .about-content {
        padding: 3rem 2rem 2rem 2rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-image-wrapper {
        margin-top: 0;
        border-top-left-radius: 60px;
        min-height: 300px;
    }
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 1.5rem 0;
    background-color: var(--bg-white);
}

.cta-banner-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-banner-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.cta-banner-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-content .accordion {
    margin-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.about-content .accordion-btn {
    padding: 1.5rem 0;
}

/* Accordion Styles */
.accordion {
    margin-top: 1rem;
    border-top: 1px solid #eaeaea;
}

.reason-content .accordion {
    border-top: none;
    margin-top: 1rem;
}

.reason-content .accordion-btn {
    background-color: #2cb058;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.reason-content .accordion-btn:hover {
    background-color: #25964a;
    color: white;
}

.reason-content .accordion-icon {
    color: white;
}

.accordion-btn {
    background-color: transparent;
    color: var(--primary-color);
    cursor: pointer;
    padding: 1rem 0;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.accordion-btn:hover {
    color: var(--primary-light);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-btn.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

/* When the panel contains a table, allow horizontal scroll */
.reason-content .accordion-panel {
    overflow-x: hidden;
    overflow-y: hidden;
}

.accordion-panel p,
.accordion-panel ul {
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    margin-bottom: 0;
}


/* Reason Section */
.bg-light {
    background-color: #f8fafc;
}

.reason-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.center-title {
    text-align: center;
}

.reason-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.reason-item:nth-child(even) {
    flex-direction: row-reverse;
}

.reason-image-placeholder {
    flex: 4;
    width: 100%;
}

.reason-content {
    flex: 6;
}

.reason-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reason-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.reason-icon {
    width: 45px;
    /* Slightly larger as requested */
    height: auto;
    flex-shrink: 0;
    margin: 0;
}

.reason-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.sub-item-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.sub-item-images {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sub-image {
    flex: 1;
    aspect-ratio: 16/9;
}

.table-container {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    overflow-y: auto;
    max-height: 400px;
    max-width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}

.table-container::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.table-container::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .table-container {
        max-height: 250px;
    }
}

.accordion-panel .table-container {
    width: 100%;
    box-sizing: border-box;
}

.faculty-table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
}

.table-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-left: 0.8rem;
    border-left: 4px solid;
}

.undergraduate-theme .table-title {
    color: var(--primary-color);
    border-left-color: var(--primary-light);
}

.graduate-theme .table-title {
    color: #65a30d;
    border-left-color: #bef264;
}



.feature-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    padding-left: 4rem;
    /* Space for the icon */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card.photo-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem;
}

.feature-photo-wrapper {
    flex: 0 0 160px;
    height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-content {
    flex: 1;
}

@media (max-width: 768px) {
    .feature-card.photo-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .feature-photo-wrapper {
        flex: 0 0 160px;
        width: 160px;
    }

    .feature-card-content p {
        text-align: left;
    }
}

.feature-card-subtitle {
    font-family: var(--font-heading);
    color: #f59e0b;
    /* Amber color to highlight "And More..." */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.feature-card h5 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

.faculty-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background-color: #ffffff;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    overflow: hidden;
}

.faculty-table th,
.faculty-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #1a1a1a;
}

.faculty-table th {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.undergraduate-theme .faculty-table th {
    background-color: var(--primary-color);
}

.graduate-theme .faculty-table th {
    background-color: #65a30d;
}



.faculty-table td {
    color: #475569;
}


@media (max-width: 768px) {
  .feature-card h5 {
    text-align: left;
  }
}

/* Category Column Styling (1st column) */
.faculty-table td:first-child[rowspan] {
    background-color: #ffffff;
    font-weight: 700;
    vertical-align: middle;
}

.undergraduate-theme .faculty-table td:first-child[rowspan] {
    color: #475569;
}

.graduate-theme .faculty-table td:first-child[rowspan] {
    color: #475569;
}



/* Faculty Category (when it is the first td in a sub-row) */
.faculty-table tr td:first-child:not([rowspan]) {
    font-weight: 500;
    color: #475569;
    background-color: #ffffff;
}

/* Faculty Category (when it is the second td in a main row) */
.faculty-table tr td[rowspan]+td {
    font-weight: 500;
    color: #475569;
    background-color: #ffffff;
}

.faculty-table tbody tr:last-child td {
    border-bottom: 1px solid #1a1a1a;
}

.table-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    margin-bottom: 0 !important;
    padding-left: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes mouseScroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Interviews Section */
.interviews-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 60px;
}

.carousel-track {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
}

.carousel-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
    transform: translateX(50px);
    display: flex;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
    z-index: 1;
}

.interview-card {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.student-photo-area {
    width: 300px;
    flex-shrink: 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.student-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.student-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 148, 65, 0.85);
    color: white;
    padding: 1.2rem;
}

.student-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.student-overlay p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.interview-text {
    flex: 1;
}

.interview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.interview-text p:last-child {
    margin-bottom: 0;
}

/* Interview Accordion Styles */
.interview-text .accordion {
    border-top: none;
    margin-top: 0;
}

.interview-read-more {
    display: none;
    /* Hidden by default on desktop */
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

.interview-read-more:hover {
    background-color: var(--primary-color);
    color: white;
}

.interview-read-more:hover .accordion-icon {
    color: white;
}

/* Ensure content is visible on desktop */
@media (min-width: 851px) {
    .interview-text .accordion-panel {
        max-height: none !important;
        overflow: visible !important;
    }
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

#prev-btn {
    left: 0;
}

#next-btn {
    right: 0;
}

.carousel-btn:hover {
    background: var(--primary-light);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn .arrow {
    width: 12px;
    height: 12px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    display: inline-block;
    transition: var(--transition);
}

.arrow.left {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.arrow.right {
    transform: rotate(45deg);
    margin-right: 4px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #dcdcdc;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 3rem;
    }

    .reason-item {
        flex-direction: column !important;
        gap: 2.5rem;
        overflow-x: hidden;
        max-width: 100%;
    }

    .reason-content {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Scale down table text on mobile for better fit */
    .faculty-table {
        font-size: 0.8rem;
    }

    .faculty-table th,
    .faculty-table td {
        padding: 0.6rem 0.5rem;
    }
}

/* Interviews Responsive */
@media (max-width: 850px) {
    .interviews-section {
        padding: 5rem 0;
    }

    .carousel-container {
        padding: 0 10px;
        /* Further reduced padding to keep buttons on edges */
    }

    .interview-card {
        flex-direction: column;
        align-items: center;
        padding: 3rem 2.8rem 2rem;
        /* Wider side padding to avoid button collision */
        gap: 2rem;
        text-align: center;
    }

    .student-photo-area {
        width: 100%;
        max-width: 280px;
    }

    .student-overlay {
        padding: 0.5rem 0.8rem;
    }

    .student-overlay h4 {
        font-size: 0.85rem;
        margin-bottom: 0.1rem;
        letter-spacing: 0;
    }

    .student-overlay p {
        font-size: 0.75rem;
    }

    .interview-text {
        width: 100%;
        text-align: left;
    }

    /* Clamp the first visible paragraph to 3 lines on mobile */
    .interview-text>p:first-of-type {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .interview-text.expanded>p:first-of-type {
        display: block;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    .interview-text p {
        font-size: 0.95rem;
    }

    /* Show read more button on mobile */
    .interview-read-more {
        display: flex;
    }

    .carousel-btn {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: rgba(0, 148, 65, 0.85);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .carousel-btn .arrow {
        width: 8px;
        height: 8px;
        border-width: 2px;
    }

    #prev-btn {
        left: 0;
    }

    #next-btn {
        right: 0;
    }

    .carousel-controls {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        justify-content: center;
        position: relative;
    }

    .logo {
        margin: 0;
        justify-content: center;
    }

    .menu-toggle {
        position: absolute;
        right: 2rem;
    }

    .main-copy {
        font-size: 2.5rem;
    }

    .sub-copy {
        font-size: 1rem;
    }

    .section-title {
        line-height: 1.25;
        margin-bottom: 2rem;
    }

    #main-nav {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }
}

/* Academic Calendar Section */
.calendar-section {
    padding: 5rem 0;
    background-color: #f1fcf5;
    overflow: hidden;
}

.section-intro {
    max-width: 850px;
    margin: 1rem auto 4rem;
    font-size: 1.35rem;
    color: var(--primary-color);
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.calendar-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

/* The Zigzag Path */
.calendar-path {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background: #eef2f1;
    border-radius: 10px;
    z-index: 1;
}

.calendar-item {
    position: relative;
    width: 50%;
    margin-bottom: 3rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.calendar-item.item-left {
    align-self: flex-start;
    padding-right: 80px;
    align-items: flex-end;
    text-align: right;
}

.calendar-item.item-right {
    align-self: flex-end;
    padding-left: 80px;
    align-items: flex-start;
    text-align: left;
}

.month-circle {
    position: absolute;
    top: 0;
    width: 70px;
    height: 70px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.month-circle span {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.item-left .month-circle {
    right: -35px;
}

.item-right .month-circle {
    left: -35px;
}

.calendar-content {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 420px;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.calendar-photo-placeholder {
    width: 140px;
    height: 140px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    overflow: hidden;
    position: absolute;
    z-index: 5;
    transition: var(--transition);
    border-radius: 50% !important;
    /* Global force for circle */
}

.calendar-photo-placeholder img {
    border-radius: 50% !important;
    /* Global force for inner image */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* April (Left side card) - Overlap top-left corner */
.calendar-item:nth-child(2) .calendar-content {
    padding-top: 100px;
    /* Safe zone for top overlap */
}

.calendar-item:nth-child(2) .calendar-photo-placeholder {
    top: -20px;
    left: -30px;
    border-radius: 50% !important;
}

.calendar-decor.cherry-blossom {
    position: absolute;
    top: -40px;
    left: 110px;
    /* Moved further right from -50px */
    width: 100px;
    height: auto;
    z-index: 15;
    /* Above the photo */
    pointer-events: none;
    opacity: 0.9;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    transform: rotate(-15deg);
}

.calendar-decor.cherry-blossom-2 {
    position: absolute;
    top: 120px;
    left: 296px;
    width: 53px;
    height: auto;
    z-index: 15;
    pointer-events: none;
    opacity: 0.95;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    transform: rotate(10deg);
}

.calendar-decor.hydrangea {
    position: absolute;
    bottom: -30px;
    left: 310px;
    width: 110px;
    height: auto;
    z-index: 15;
    pointer-events: none;
    opacity: 0.95;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    transform: rotate(-5deg);
}

.calendar-decor.sunflower {
    position: absolute;
    top: -5px;
    right: -2px;
    width: 75px;
    height: auto;
    z-index: 15;
    pointer-events: none;
    opacity: 0.95;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    transform: rotate(15deg);
}

.calendar-decor.fireworks {
    position: absolute;
    top: -40px;
    left: 252px;
    width: 123px;
    height: auto;
    z-index: 15;
    pointer-events: none;
    opacity: 0.9;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
    transform: rotate(-10deg);
}

.calendar-decor.snow {
    position: absolute;
    top: -20px;
    right: -25px;
    width: 90px;
    height: auto;
    z-index: 15;
    pointer-events: none;
    opacity: 0.9;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.4));
    transform: rotate(5deg);
}

/* June (Left side card) - Overlap top-left corner */
.calendar-item:nth-child(4) .calendar-content {
    padding-top: 100px;
}

.calendar-item:nth-child(4) .calendar-photo-placeholder {
    top: -30px;
    left: -15px;
    border-radius: 50% !important;
}

/* July (Right side card) - No photo, uses default padding */


/* August (Left side card) - Overlap top-right corner */
.calendar-item:nth-child(6) .calendar-content {
    padding-top: 100px;
}

.calendar-item:nth-child(6) .calendar-photo-placeholder {
    top: -20px;
    left: 40px;
    /* Matches user's preferred offset */
    border-radius: 50% !important;
}

/* November (Right side card) - Overlap bottom-right corner */
.calendar-item:nth-child(9) .calendar-content {
    padding-bottom: 100px;
}

.calendar-item:nth-child(9) .calendar-photo-placeholder {
    bottom: -20px;
    right: -30px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-item:nth-child(9) .calendar-photo-placeholder span {
    font-size: 0.8rem;
    text-align: center;
    padding: 10px;
    color: #64748b;
    /* Gray text */
    font-weight: 500;
}

/* January (Right side card) - Overlap top-left corner */
.calendar-item:nth-child(11) .calendar-content {
    padding-top: 100px;
}

.calendar-item:nth-child(11) .calendar-photo-placeholder {
    top: -20px;
    left: 250px;
    /* Moved significantly right to meet user preference */
    border-radius: 50% !important;
}

.calendar-item:nth-child(11) .calendar-photo-placeholder img {
    object-position: left center;
    /* Focus on the left side of the photo */
}

/* February (Left side card) - No photo, uses default padding */


/* March (Right side card) - Organic shape offset to overlap box corner */
.calendar-item:last-child .calendar-content {
    padding-bottom: 110px;
    /* Safe zone for image overlap */
}

.calendar-item:last-child .calendar-photo-placeholder {
    position: absolute;
    bottom: -15px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50% !important;
    z-index: 5;
    background: transparent;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: rotate(0deg);
}

/* Combined force for all images to remain circular */
.calendar-item .calendar-photo-placeholder,
.calendar-item .calendar-photo-placeholder img {
    border-radius: 50% !important;
}

/* Ensure text stays on top in all months with photos */
.calendar-item .calendar-content ul {
    position: relative;
    z-index: 10;
}

/* Desktop-only positioning for March to avoid mobile displacement */
@media (min-width: 1101px) {
    .calendar-item:last-child .calendar-photo-placeholder {
        position: absolute;
    }
}

@media (max-width: 1100px) {
    .calendar-item:last-child .calendar-photo-placeholder {
        bottom: 0;
        right: 0;
        margin: 1.5rem auto 0;
        width: 160px;
        height: 160px;
    }
}

/* Mobile adjustments: ensure photos are in-flow and shapes persist */
@media (max-width: 1100px) {
    .calendar-photo-placeholder {
        width: 140px;
        height: 140px;
        position: relative !important;
        /* Push text down instead of overlapping */
        margin: 0 auto 1.5rem !important;
        /* Move above text and center */
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
    }

    .calendar-item:last-child .calendar-content {
        padding-bottom: 2.5rem;
        /* Reset padding for mobile */
    }

    /* Responsive Decor Adjustments */
    .calendar-decor {
        width: 80px !important;
        /* Scale down all decors for mobile */
        opacity: 0.8 !important;
        z-index: 20 !important;
    }

    /* April Blossom 1 */
    .calendar-decor.cherry-blossom {
        top: 20px !important;
        /* Moved down from -30px */
        left: 65% !important;
        /* Moved right from 50% */
        transform: rotate(-15deg) !important;
        width: 70px !important;
    }

    /* March Blossom 2 */
    .calendar-decor.cherry-blossom-2 {
        top: auto !important;
        bottom: -8px !important;
        left: 9% !important;
        transform: translateX(-50%) rotate(10deg) !important;
        width: 59px !important;
    }

    /* June Hydrangea */
    .calendar-decor.hydrangea {
        bottom: auto !important;
        top: 60px !important;
        /* Moved up from 100px */
        left: 50% !important;
        transform: translateX(-120px) rotate(-5deg) !important;
        width: 80px !important;
    }

    /* July Sunflower */
    .calendar-decor.sunflower {
        top: 69px !important;
        right: 10px !important;
        width: 60px !important;
        transform: rotate(15deg) !important;
    }

    /* September Fireworks */
    .calendar-decor.fireworks {
        top: -23px !important;
        left: 134px !important;
        width: 90px !important;
        transform: rotate(-10deg) !important;
    }

    /* February Snow */
    .calendar-decor.snow {
        top: -15px !important;
        right: 15px !important;
        width: 60px !important;
        transform: rotate(5deg) !important;
    }
}

.calendar-item:hover .calendar-photo-placeholder {
    transform: none;
    /* Removed animation */
    z-index: 10;
}

.calendar-item:hover .calendar-content {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.calendar-item:hover .month-circle {
    background: var(--primary-color);
    transform: scale(1.1);
    border-color: white;
}

.calendar-item:hover .month-circle span {
    color: white;
}

.calendar-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.calendar-content ul {
    list-style: none;
    padding: 0;
}

.calendar-content li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

/* Seasonal Themes */
.calendar-item.spring .calendar-content {
    border-bottom: 8px solid #ffdeeb;
}

.calendar-item.summer .calendar-content {
    border-bottom: 8px solid #fff59d;
}

.calendar-item.autumn .calendar-content {
    border-bottom: 8px solid #ffccbc;
}

.calendar-item.winter .calendar-content {
    border-bottom: 8px solid #b3e5fc;
}

/* Responsive Calendar */
@media (max-width: 850px) {
    .calendar-path {
        left: 40px;
        transform: none;
    }

    .calendar-item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 90px !important;
        padding-right: 0 !important;
        align-items: flex-start !important;
        text-align: left !important;
        margin-bottom: 4rem;
    }

    .month-circle {
        left: 5px !important;
        right: auto !important;
    }

    .calendar-content {
        max-width: 100%;
    }
}

/* Support Section Styles */
.support-section {
    padding: 5rem 0 7rem;
    background-color: #ffffff;
}

.support-intro-wrapper {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.support-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 700;
}

.support-description p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.support-description p:last-child {
    margin-bottom: 0;
}

.support-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    max-width: 800px;
    margin: 0 auto;
}

.support-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: var(--transition);
}

.support-item:hover {
    transform: none;
}

.support-img-wrapper {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
    .support-image-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        max-width: 100%;
    }

    .support-main-title {
        font-size: 2.5rem !important;
    }

    .support-subtitle {
        font-size: 1.5rem;
    }

    .support-img-wrapper {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 600px) {
    .support-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        padding: 0 1rem;
    }

    .support-section {
        padding: 4rem 0 6rem;
    }

    .support-img-wrapper {
        width: 100%;
        max-width: 160px;
        height: auto;
        aspect-ratio: 1/1;
    }
}

/* Alumni Section Styles */
.alumni-section {
    padding: 5rem 0;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 3rem;
    margin-top: 3rem;
}

.alumni-column {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.alumni-accordion-btn {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid #f0f0f0;
    padding: 0 0 1.5rem 0;
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    text-align: left;
}

.alumni-accordion-btn:hover {
    color: var(--primary-light);
}

.alumni-accordion-btn .alumni-icon-img {
    width: 45px;
    height: auto;
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.alumni-accordion-btn .alumni-btn-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-grow: 1;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.alumni-accordion-btn .accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.alumni-accordion-btn.active .accordion-icon {
    transform: rotate(45deg);
}

.company-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem 0 0 0;
}

.company-list li {
    font-size: 0.95rem;
    color: #444;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.company-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 1100px) {
    .alumni-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .alumni-column {
        padding: 2rem 1.5rem;
    }

    .column-title {
        min-height: auto;
    }
}

/* Alumni Comment Styles */
.alumni-comment-wrapper {
    margin-top: 4rem;
    text-align: center;
}

.alumni-comment-img {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.alumni-profile-header {
    max-width: 1000px;
    margin: 4rem auto;
    display: flex;
    align-items: flex-start;
    /* Image starts at the top */
    position: relative;
}

.profile-image-container {
    width: 320px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(15px 15px 30px rgba(0, 0, 0, 0.3));
}

.profile-header-img {
    width: 100%;
    display: block;
    border: none;
}

.profile-info-content {
    flex-grow: 1;
    margin-left: -50px;
    margin-top: 3rem;
    /* Higher position */
    position: relative;
    z-index: 2;
    text-align: left;
}

.profile-title-gradient {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #246a41 0%, #a2d66d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
    display: inline-block;
}

.profile-details-shadow-wrapper {
    filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.2));
    width: 85%;
    position: relative;
    z-index: 2;
}

.profile-details-box {
    background-color: #d8e5d6;
    padding: 1.8rem 5rem 1.8rem 2.5rem;
    position: relative;
    display: block;
    width: 100%;
    /* Slanted right side: top is long, bottom is short */
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
}

.profile-name {
    font-weight: 800;
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.profile-meta {
    font-size: 1.05rem;
    font-weight: 600;
    color: #5a5a5a;
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

.profile-meta:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .alumni-profile-header {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
    }

    .profile-info-content {
        margin-left: 0;
        margin-top: -30px;
        width: 95%;
        /* Increased from 90% */
        text-align: center;
    }

    .profile-details-shadow-wrapper {
        width: 100%;
        /* Increased from 85% */
    }

    .profile-title-gradient {
        font-size: 3.5rem;
    }

    .profile-details-box {
        width: 100%;
        padding: 1.5rem 2.5rem 1.5rem 1.5rem;
        /* Adjusted for slant space */
        clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
        /* Restored slant */
    }
}

.alumni-text-content {
    max-width: 800px;
    margin: 0 auto 0;
    text-align: left;
}

@media (max-width: 768px) {
    .alumni-text-content {
        padding: 0 1.5rem;
    }
}

/* Main CTA Section */
.main-cta-section {
    padding: 6rem 0;
    background-image: url('images/CTA-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.main-cta-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.cta-card {
    background-color: white;
    padding: 3.5rem 5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: var(--font-heading);
    width: 480px;
}

.cta-text-top {
    font-size: 4.8rem;
    font-weight: 900;
    color: #333;
    letter-spacing: -0.02em;
    margin-bottom: 0.1rem;
}

.cta-text-bottom {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    white-space: nowrap;
}

.cta-text-at {
    font-size: 2.8rem;
    font-weight: 900;
    color: #333;
}

.cta-text-univ {
    font-size: 2.8rem;
    font-weight: 900;
    color: #009441;
    letter-spacing: -0.01em;
}

.cta-image-link {
    display: block;
    width: fit-content;
    margin: 0.5rem auto 0;
    transition: var(--transition);
}

.cta-image-link:hover {
    transform: scale(1.05);
}

.cta-main-button-img {
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
    .main-cta-section {
        padding: 4rem 0;
    }

    .cta-card {
        padding: 2.5rem 2rem;
        text-align: center;
    }

    .cta-heading {
        align-items: center;
    }

    .cta-text-top {
        font-size: 2.6rem;
    }

    .cta-text-at,
    .cta-text-univ {
        font-size: 1.8rem;
    }

    .cta-main-button-img {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Community Image & Decor (Ashirai) */
.community-image-container {
    position: relative;
    max-width: 500px;
    margin: 3rem auto 2rem;
    padding: 0;
    /* Removed padding to avoid lateral expansion */
    z-index: 1;
}

.community-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Organic blob shape */
    overflow: hidden;
    aspect-ratio: 4 / 3;
    width: 100%;
}

.community-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.community-image-container:hover .community-img {
    transform: scale(1.05);
}

.community-decor-blob {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: #e2f2d5;
    /* Light green background */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Same organic shape */
    z-index: 1;
}

.community-decor-orange {
    position: absolute;
    top: -15px;
    right: -10px;
    width: 60%;
    height: 80%;
    background-image: radial-gradient(#fcd34d 15%, transparent 15%);
    /* Stylish orange dots */
    background-size: 14px 14px;
    /* Dot pattern spacing */
    z-index: 0;
    opacity: 0.6;
    border-radius: 40% 60% 30% 70% / 50% 30% 60% 40%;
    /* Different organic shape for the dotted area */
}

@media (max-width: 768px) {
    .community-image-container {
        max-width: 85%;
        /* Responsive safety margin */
        margin: 2.5rem auto;
    }

    .community-decor-blob {
        top: 8px;
        left: 8px;
    }

    .community-decor-orange {
        top: -8px;
        right: -6px;
    }
}

.alumni-text-content .accordion-btn {
    justify-content: center;
    gap: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    border-bottom: 2px solid #f0f0f0;
}

.alumni-text-content .accordion-panel p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.career-center-info {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2.5rem 3rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.career-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-center-info p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .career-center-info {
        padding: 2.5rem 1.5rem;
        margin: 3rem 1.5rem 0;
    }

    .career-center-info p {
        font-size: 1rem;
    }
}

/* Plan Overview Section */
.plan-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.plan-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border-left: 5px solid #5cb87a;
    box-shadow: 0 4px 15px rgba(0, 148, 65, 0.06);
}

.plan-card-header {
    background-color: #d4f0df;
    padding: 1rem 1.8rem;
    border-bottom: 1px solid #c8ecd4;
}

.plan-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
}

.plan-card-body {
    padding: 1.5rem 1.8rem;
}

.plan-card-body p {
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .plan-list {
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .plan-card-header {
        padding: 0.8rem 1.2rem;
    }

    .plan-card-body {
        padding: 1rem 1.2rem;
    }
}

/* Scholarships Section */
.scholarships-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.scholarship-card-new {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2.2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 148, 65, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.card-glass-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
}

.scholarship-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 148, 65, 0.12);
    border-color: var(--primary-color);
}

.scholarship-icon-wrapper {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -0.5rem auto 1.5rem;
    transition: transform 0.5s ease;
}

.scholarship-card-new:hover .scholarship-icon-wrapper {
    transform: scale(1.08);
}

.scholarship-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scholarship-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.scholarship-card-text {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

@media (max-width: 1024px) {
    .scholarship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .scholarships-section {
        padding: 4rem 0;
    }

    .scholarship-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .scholarship-card-new {
        padding: 2.5rem 1.8rem;
        text-align: left;
        align-items: flex-start;
    }

    .scholarship-card-title {
        text-align: left;
        line-height: 1.4;
        width: 100%;
    }

    .scholarship-card-text {
        text-align: left;
        width: 100%;
    }

}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.faq-header {
    background-color: #9abb79;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-header:hover {
    background-color: #8da96d;
}

.faq-label-q {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-right: 2rem;
    line-height: 1;
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    flex-grow: 1;
    line-height: 1.3;
}

.faq-header .accordion-icon {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
    margin-left: 1.5rem;
}

.faq-header.active .accordion-icon {
    transform: rotate(180deg);
}

.faq-content {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer-row {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
}

.faq-label-a {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin-right: 2rem;
    line-height: 1;
    margin-top: -0.2rem;
}

.faq-answer-text p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq-header {
        padding: 1rem 1.2rem;
    }

    .faq-label-q,
    .faq-label-a {
        font-size: 1.8rem;
        margin-right: 1.2rem;
    }

    .faq-question-text {
        font-size: 1.1rem;
    }

    .faq-answer-row {
        padding: 1.5rem 1.2rem;
    }
}

.and-more-title-wrapper {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.and-more-title-img {
    height: 48px;
    width: auto;
    display: block;
}

.and-more-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
}

/* Response Section for mobile */
@media (max-width: 768px) {
    .and-more-title-img {
        height: 36px;
    }
}

/* Footer Styles */
#main-footer {
    background-color: #2cb058;
    ;
    /* FAQ header green */
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
    font-family: var(--font-main);
}

.footer-bottom p {
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}