* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pilcrow Rounded', sans-serif;
    overflow-x: hidden;
    color: #333;
}

/* Top Contact Bar */
.top-contact-bar {
    background-color: #880F0F;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-left,
.top-contact-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-contact-right {
    gap: 15px;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.top-contact-item:hover {
    opacity: 0.8;
}

.top-contact-item svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.social-icon {
    color: #fff;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Header */
.header-main {
    background-color: #fff;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.logo-container {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.navbar-desktop {
    display: flex;
}

.elementskit-navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.ekit-menu-nav-link,
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.ekit-menu-nav-link:hover,
.ekit-menu-nav-link.active {
    color: #880F0F;
}

.dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    display: block;
    width: 100%;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: #f5f5f5;
    color: #880F0F;
}

.elementskit-submenu-indicator {
    margin-left: 5px;
    font-size: 12px;
    color: #333;
}

.elementskit-dropdown-has {
    position: relative;
}

.elementskit-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    border-top: 3px solid #880F0F;
}

.elementskit-dropdown-has:hover > .elementskit-dropdown {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #880F0F;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
}

.navbar-mobile {
    display: none;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.mobile-overlay.active {
    display: block;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #330505 0%, #880F0F 100%);
    padding: 70px 50px 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1200') center/cover no-repeat;
    opacity: 0.12;
}

.page-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-banner h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    opacity: 0.92;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.85;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    opacity: 0.7;
}

/* Page Sections */
.page-section {
    padding: 70px 50px;
}

.page-section.alt-bg {
    background: #f9f9f9;
}

.page-section.light-blue {
    background: #EDF7FA;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: #880F0F;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: -25px auto 50px;
    line-height: 1.7;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(136, 15, 15, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(136, 15, 15, 0.15);
}

.info-card .icon {
    width: 70px;
    height: 70px;
    background: #880F0F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.info-card h3 {
    font-size: 22px;
    color: #880F0F;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Leadership */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-items: center;
}

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(136, 15, 15, 0.1);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 400px;
}

.leader-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(136, 15, 15, 0.2);
}

.leader-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image-wrapper img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(136, 15, 15, 0.95), transparent);
    padding: 30px;
    color: white;
}

.leader-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.leader-position {
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-content {
    padding: 30px;
    text-align: center;
}

.leader-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

/* Vision Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(136, 15, 15, 0.1);
    border-top: 5px solid #880F0F;
    position: relative;
    overflow: hidden;
}

.vm-card h2 {
    font-size: 32px;
    color: #880F0F;
    margin-bottom: 20px;
    font-weight: 800;
}

.vm-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.vm-card .vm-icon {
    font-size: 48px;
    color: #880F0F;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 25px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.value-item {
    background: linear-gradient(135deg, #880F0F, #660B0B);
    color: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
}

.value-item i {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.value-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-item p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Approvals */
.approval-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.approval-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #880F0F;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.approval-card .approval-icon {
    width: 60px;
    height: 60px;
    background: #FFE5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #880F0F;
    font-size: 24px;
}

.approval-card h3 {
    font-size: 20px;
    color: #880F0F;
    margin-bottom: 8px;
    font-weight: 700;
}

.approval-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.approval-badge {
    display: inline-block;
    background: #880F0F;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

/* Course Pages */
.course-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.course-content h2 {
    font-size: 36px;
    color: #880F0F;
    margin-bottom: 20px;
    font-weight: 800;
}

.course-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.course-highlights {
    list-style: none;
    margin: 20px 0 30px;
}

.course-highlights li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.course-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #880F0F;
    font-weight: bold;
}

.btn-primary {
    background: #880F0F;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    outline: 0;
    padding: 14px 32px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(136, 15, 15, 0.3);
}

.btn-primary:hover {
    background: #660B0B;
    transform: translateY(-2px);
}

.course-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.curriculum-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.curriculum-table th,
.curriculum-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.curriculum-table th {
    background: #880F0F;
    color: #fff;
    font-weight: 600;
}

.curriculum-table tr:last-child td {
    border-bottom: none;
}

.curriculum-table tr:hover td {
    background: #fafafa;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.spec-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(136, 15, 15, 0.08);
    transition: transform 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-5px);
}

.spec-card i {
    font-size: 36px;
    color: #880F0F;
    margin-bottom: 15px;
}

.spec-card h4 {
    font-size: 18px;
    color: #880F0F;
    margin-bottom: 10px;
    font-weight: 700;
}

.spec-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Facilities */
.facilities-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facility-card-page {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.facility-card-page:hover {
    transform: translateY(-8px);
}

.facility-card-page img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.facility-card-page .facility-body {
    padding: 25px;
}

.facility-card-page h3 {
    font-size: 20px;
    color: #880F0F;
    margin-bottom: 10px;
    font-weight: 700;
}

.facility-card-page p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Gallery */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.tall {
    grid-row: span 2;
    height: 100%;
    min-height: 400px;
}

.gallery-item.wide {
    grid-column: span 2;
    height: 280px;
}

.gallery-item.normal {
    height: 280px;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-cat-btn {
    padding: 10px 24px;
    border: 2px solid #880F0F;
    background: transparent;
    color: #880F0F;
    border-radius: 30px;
    font-family: 'Pilcrow Rounded', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-cat-btn:hover,
.gallery-cat-btn.active {
    background: #880F0F;
    color: #fff;
}

/* Placements */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.stat-box-page {
    background: linear-gradient(135deg, #880F0F, #660B0B);
    color: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
}

.stat-box-page .number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-box-page .label {
    font-size: 15px;
    opacity: 0.9;
}

.recruiter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.recruiter-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.recruiter-card i {
    font-size: 36px;
    color: #880F0F;
    margin-bottom: 12px;
}

.recruiter-card h4 {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(136, 15, 15, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 60px;
    color: #880F0F;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 16px;
    color: #880F0F;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 13px;
    color: #888;
}

/* Contact */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-left h2 {
    font-size: 40px;
    color: #880F0F;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #880F0F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.contact-info-text h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-right {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Pilcrow Rounded', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #880F0F;
    box-shadow: 0 0 0 3px rgba(136, 15, 15, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #880F0F;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Pilcrow Rounded', sans-serif;
}

.submit-btn:hover {
    background: #660B0B;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(136, 15, 15, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    height: 400px;
    background: #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* CTA */
.cta-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #330505, #880F0F);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background-color: #fff;
    color: #880F0F;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background-color: #fff;
    color: #880F0F;
}

/* Footer */
.footer {
    background-color: #880F0F;
    color: #fff;
    padding: 40px 50px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile */
@media (max-width: 968px) {
    .top-contact-bar {
        padding: 8px 20px;
    }

    .top-contact-left,
    .top-contact-right {
        gap: 10px;
    }

    .top-contact-item {
        font-size: 10px;
    }

    .top-contact-item span {
        display: none;
    }

    .header-main {
        padding: 12px 20px;
    }

    .logo-container img {
        height: 70px;
    }

    .navbar-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .navbar-mobile {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .navbar-mobile.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 28px;
        color: #880F0F;
        cursor: pointer;
    }

    .navbar-mobile .elementskit-navbar-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
        display: flex !important;
    }

    .navbar-mobile .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-mobile .ekit-menu-nav-link {
        padding: 15px 20px;
        justify-content: space-between;
        display: flex !important;
    }

    .navbar-mobile .elementskit-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f8f8f8;
        border-top: none;
    }

    .navbar-mobile .elementskit-dropdown-has.active > .elementskit-dropdown {
        display: block;
    }

    .navbar-mobile .dropdown-item {
        padding: 12px 20px 12px 40px;
        font-size: 13px;
    }

    .page-section {
        padding: 50px 20px;
    }

    .page-banner {
        padding: 50px 20px 40px;
    }

    .vm-grid,
    .course-hero-grid,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
        min-height: auto;
    }

    .section-title {
        font-size: 32px;
    }

    .footer {
        padding: 30px 20px 15px;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
}

/* Homepage (index.html) */

/* Hero Section with Flyer Slider */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: visible;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: none;
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

/* Desktop slider visible on desktop only */
.desktop-slider {
    display: block;
}

.mobile-slider {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }

    .desktop-slider {
        display: none;
    }

    .mobile-slider {
        display: block;
    }
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 50% 45%;
    place-items: center;
    gap: 60px;
    min-height: 80vh;
    padding: 50px 60px;
    background: #ffffff;
    position: relative;
}

.about-content {
    max-width: 600px;
}

.about-content h1 {
    font-family: 'Pilcrow Rounded', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #880F0F;
}

.about-content p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

.about-content button,
.about-content .about-apply-btn {
    background: #880F0F;
    color: #fff;
    font-size: clamp(0.9rem, 4vw, 1rem);
    font-weight: 600;
    border: 0;
    outline: 0;
    padding: 12px 28px;
    border-radius: 30px;
    transform: scale(1);
    transition: all 0.4s ease-in;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(136, 15, 15, 0.3);
}

.about-content button:is(:hover, :focus),
.about-content .about-apply-btn:is(:hover, :focus) {
    transform: scale(0.98);
    background-color: #660B0B;
    box-shadow: 0 6px 20px rgba(136, 15, 15, 0.4);
}

/* SLIDER */
.about-swiper {
    position: relative;
    width: 450px;
    height: 550px;
}

.about-swiper .swiper-slide {
    position: relative;
    border: 1px solid rgba(136, 15, 15, 0.1);
    user-select: none;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}

.about-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-swiper .slide-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.95) 100%);
    color: #fff;
    border-radius: 20px;
}

.about-swiper .slide-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.about-swiper .slide-content p {
    font-size: clamp(0.85rem, 4vw, 1rem);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #fff;
}

.about-swiper .slide-content .highlight-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
}

.about-swiper .slide-content .highlight-box p {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: clamp(0.85rem, 4vw, 0.95rem);
}

.about-swiper .slide-content .highlight-box p:last-child {
    margin-bottom: 0;
}

.about-swiper .slide-content strong {
    color: #FFD700;
    font-weight: 700;
}

@media (max-width: 1050px) {
    .about-swiper {
        width: 400px;
        height: 500px;
    }
}

@media (max-width: 930px) {
    .about-section {
        grid-template-columns: 100%;
        grid-template-rows: auto auto;
        gap: 30px;
        padding: 5px 20px 40px 20px;
    }

    .about-content {
        text-align: center;
        order: 2;
    }

    .about-swiper {
        order: 1;
    }
    
    /* Reduce top margin for section title in mobile */
    .about-section .section-title {
        margin-bottom: 15px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* Extra small screens - Inspector view */
@media (max-width: 400px) {
    .about-section {
        padding: 0px 15px 30px 15px !important;
        gap: 25px !important;
    }
    
    .about-section .section-title {
        margin-bottom: 12px !important;
        font-size: 32px !important;
    }
}

@media (max-width: 470px) {
    .about-section {
        padding: 40px 20px;
    }

    .about-swiper {
        width: 320px;
        height: 420px;
    }
}

/* Parallax Program Section */
.parallax-section {
    position: relative;
    padding: 100px 50px;
    background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1200');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 5, 5, 0.85);
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.parallax-text {
    color: #fff;
}

.parallax-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.parallax-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #f0f0f0;
}

.parallax-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.parallax-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.parallax-text ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.parallax-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.parallax-image-container {
    position: relative;
}

.maroon-rectangle {
    background-color: #880F0F;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.half-image {
    position: absolute;
    top: -30px;
    left: 30px;
    width: calc(100% - 60px);
    height: 430px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.half-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Facilities Section - Interactive Grid */
.facilities-section {
    padding: 60px 50px 80px 50px;
    background: #EDF7FA;
}

.facilities-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: #880F0F;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Interactive Grid Styles */
.facilities-section .grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 100px;
}

@media (min-width: 700px) {
    .facilities-section .grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 140px;
        gap: 2rem;
    }
}

/* Mobile small screens only - iPhone 14 Pro Max etc */
@media (max-width: 430px) {
    .facilities-section .grid {
        gap: 2.5rem;
        grid-auto-rows: 105px;
    }
}

.facilities-section .grid:has(.item:hover) > .item:not(:hover) {
    filter: sepia(0.75);
}

.facilities-section .item {
    aspect-ratio: 1;
    overflow: hidden;
    -webkit-clip-path: url(#squircleClip);
    clip-path: url(#squircleClip);
    transition: filter 300ms ease-in-out;
    filter: sepia(0.75);
    cursor: pointer;
    isolation: isolate;
    position: relative;
}

.facilities-section .item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.5;
    opacity: 1;
    transition: scale 1000ms ease-in-out, opacity 150ms ease-in-out;
}

.facilities-section .item:hover {
    filter: sepia(0);
}

.facilities-section .item:hover > img {
    scale: 1;
}

/* Active item in center */
.facilities-section .item[data-active="true"] {
    filter: sepia(0);
    grid-column: 1 / -1;
    grid-row: 3 / 5;
    z-index: 2;
    position: relative;
}

@media (min-width: 700px) {
    .facilities-section .item[data-active="true"] {
        grid-column: 3 / 5;
        grid-row: 1 / 3;
    }
}

/* Small mobile screens only */
@media (max-width: 430px) {
    .facilities-section .item[data-active="true"] {
        grid-row: 3 / 5.5;
    }
}

.facilities-section .item[data-active="true"]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 300%, rgb(0 0 0), transparent);
    z-index: 1;
}

.facilities-section .item[data-active="true"]::after {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    font-family: 'Pilcrow Rounded', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    transition: translate 500ms 300ms, opacity 500ms 300ms;
    transition-timing-function: linear(
        0, 0.197 6.9%, 1 37.8%, 0.888 44.2%, 0.862 47.1%, 
        0.853 50%, 0.86 52.6%, 0.881 55.4%, 1 65.5%, 
        0.97 69.3%, 0.96 73%, 0.967 76.4%, 1 84.5%, 
        0.993 89.2%, 1
    );
}

@starting-style {
    .facilities-section .item[data-active="true"]::after {
        translate: -50% 90px;
        opacity: 0;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 60px 50px;
    background: #ffffff;
    color: #333;
    overflow: visible;
    --gap: -200px;
    --circle-size: 200px;
    --circle-size-small: 130px;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

.why-choose-container h2 {
    text-align: center;
    font-size: 40px;
    color: #880F0F;
    margin-bottom: 60px;
    font-weight: 700;
}

/* Infographic CSS */
.graphic-container {
    width: 100%;
    display: grid;
    place-items: center;
    margin: 250px 0 100px 0;
    overflow: visible;
}

.center-circles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
    height: 100%;
    width: 100%;
    overflow: visible;
}

.single {
    gap: 20px;
}

.double {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.double:nth-child(even) {
    flex-direction: column-reverse;
}

.circle {
    width: var(--circle-size);
    height: var(--circle-size);
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}

/* different content elements */
.two, .four {
    width: var(--circle-size-small);
    height: var(--circle-size-small);
}

.icon i {
    font-size: 3rem;
}

.content-container {
    position: absolute;
    max-width: 200px;
    min-width: 200px;
    width: 100%;
}

.content p {
    font-size: 12px;
}

.content h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

.content-container h2 {
    position: relative;
    padding: 0 10px;
    font-size: 16px;
}

/* arrow heading border */
.one .content-container h2::before, .one .content-container h2::after,
.two .content-container h2::before, .two .content-container h2::after, 
.five .content-container h2::before, .five .content-container h2::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 22px;
    background: #880F0F;
    left: -6px;
}

.one .content-container h2::before, .two .content-container h2::before, .five .content-container h2::before {
    top: -2px;
    transform: rotate(30deg);
}

.one .content-container h2::after,
.two .content-container h2::after, .five .content-container h2::after {
    bottom: -2px;
    transform: rotate(-30deg);
}

.three .content-container h2::before, .three .content-container h2::after,
.four .content-container h2::before, .four .content-container h2::after, 
.six .content-container h2::before, .six .content-container h2::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 22px;
    background: #880F0F;
    right: -6px;
}

.three .content-container h2::before, .four .content-container h2::before, .six .content-container h2::before {
    top: -2px;
    transform: rotate(-30deg);
}

.three .content-container h2::after,
.four .content-container h2::after, .six .content-container h2::after {
    bottom: -2px;
    transform: rotate(30deg);
}

.one .content-container {
    left: 0;
    bottom: var(--gap);
    text-align: left;
}

.two .content-container {
    left: 80px;
    bottom: var(--gap);
    text-align: left;
}

.three .content-container {
    right: 200px;
    top: var(--gap);
    text-align: right;
}

.four .content-container {
    right: 20px;
    top: var(--gap);
    text-align: right;
}

.five .content-container {
    left: 200px;
    bottom: var(--gap);
    text-align: left;
}

.six .content-container {
    left: 0;
    top: var(--gap);
    text-align: right;
}

/* lines */
.one .line {
    position: absolute;
    width: 2px;
    height: 170px;
    background-color: #C94A4A;
    top: -150px;
    left: -30px;
}

.one .line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 2px;
    background: #C94A4A;
}

.one .line::after, .two .line::after,
.five .line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
}

.one .line::after {
    background: #C94A4A;  
}

.two .line::after {
    background: #A83636;
}

.five .line::after {
    background: #A83636;
}

.two .line {
    position: absolute;
    width: 2px;
    height: 90px;
    background-color: #A83636;
    top: -70px;
    left: -30px;
}

.five .line {
    position: absolute;
    width: 2px;
    height: 110px;
    background-color: #A83636;
    top: -90px;
    left: -30px;
}

/* top layer */
.three .line {
    position: absolute;
    width: 2px;
    height: 222px;
    background-color: #880F0F;
    bottom: -100px;
    right: -30px;
}

.three .line::after, .four .line::after, .six .line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 2px;
}

.three .line::after {
    background: #880F0F;  
}

.four .line::after {
    background: #6B0A0A;  
}

.six .line::after {
    background: #C94A4A;  
}

.four .line {
    position: absolute;
    width: 2px;
    height: 222px;
    background-color: #6B0A0A;
    bottom: -100px;
    right: -30px;
}

.four .line::before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: #6B0A0A;
}

.six .line {
    position: absolute;
    width: 2px;
    height: 282px;
    background-color: #C94A4A;
    bottom: -160px;
    right: -30px;
}

.six .line::before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: #C94A4A;
}

/* dots */
.one .dot {
    position: absolute;
    top: 110px;
    right: -30px;
    width: 20px;
    height: 20px;
    background: #C94A4A;
    border-radius: 50%;
    box-shadow: -20px -110px 0 6px #C94A4A, -30px 80px 0 4px #C94A4A;
}

.four .dot {
    position: absolute;
    top: 130px;
    left: 0px;
    width: 20px;
    height: 20px;
    background: #6B0A0A;
    border-radius: 50%;
    box-shadow: -22px -138px 0 10px #6B0A0A, -70px 70px 0 0px #6B0A0A;
}

.six .dot {
    position: absolute;
    top: -30px;
    left: 10px;
    width: 10px;
    height: 10px;
    background: #C94A4A;
    border-radius: 50%;
    box-shadow: -50px 50px 0 25px #C94A4A, 150px 250px 0 10px #C94A4A;
}

/* circle colors - Maroon Gradient */
.one {
    box-shadow: inset 0 0 0 20px #C94A4A, inset 0px 0px 12px 20px #989898;
}

.two {
    background-color: #A83636;
    transform: translateX(-20px);
}

.three {
    box-shadow: inset 0 0 0 20px #880F0F, inset 0px 0px 12px 20px #989898;
    transform: translateX(10px);
}

.four {
    background-color: #6B0A0A;
    transform: translateX(-20px);
}

.five {
    box-shadow: inset 0 0 0 20px #A83636, inset 0px 0px 12px 20px #989898;
    transform: translateX(10px);
}

.six {
    box-shadow: inset 0 0 0 20px #C94A4A, inset 0px 0px 12px 20px #989898;
}

/* h2 border colors */
.one .content-container h2 {
    border-top: 2px solid #C94A4A;
    border-bottom: 2px solid #C94A4A;
}

.two .content-container h2 {
    border-top: 2px solid #A83636;
    border-bottom: 2px solid #A83636;
}

.three .content-container h2 {
    border-top: 2px solid #880F0F;
    border-bottom: 2px solid #880F0F;
}

.four .content-container h2 {
    border-top: 2px solid #6B0A0A;
    border-bottom: 2px solid #6B0A0A;
}

.five .content-container h2 {
    border-top: 2px solid #A83636;
    border-bottom: 2px solid #A83636;
}

.six .content-container h2 {
    border-top: 2px solid #C94A4A;
    border-bottom: 2px solid #C94A4A;
}

.one .content-container h2::before, .one .content-container h2::after {
    background: #C94A4A;
}

.two .content-container h2::before, .two .content-container h2::after {
    background: #A83636;
} 

.five .content-container h2::before, .five .content-container h2::after {
    background: #A83636;
}

.three .content-container h2::before,
.three .content-container h2::after {
    background: #880F0F;
}

.four .content-container h2::before, .four .content-container h2::after {
    background: #6B0A0A;
} 

.six .content-container h2::before, .six .content-container h2::after {
    background: #C94A4A;
}

/* Mobile Simple Cards - Auto-scrolling Vertical Carousel */
.mobile-why-cards {
    display: none !important;
}

.mobile-why-cards {
    font-size: 0.8em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Mobile Carousel Container */
@media (max-width: 930px) {
    .mobile-why-cards {
        height: 450px;
        overflow: hidden;
        position: relative;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 20px;
    }
    
    .mobile-cards-scroll {
        display: flex;
        flex-direction: column;
        gap: 20px;
        animation: infiniteScroll 30s linear infinite;
    }
    
    @keyframes infiniteScroll {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-50%);
        }
    }
    
    .mobile-why-cards:hover .mobile-cards-scroll {
        animation-play-state: paused;
    }
}

.mobile-card {
    position: relative;
    width: 100%;
    max-width: 25em;
    background: var(--bg1);
    border-radius: 0.5em;
    padding: 0.5em;
    z-index: 1;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.mobile-card .numberWrap {
    position: absolute;
}

.mobile-card .number {
    font-family: 'Pilcrow Rounded', sans-serif;
    font-size: 13em;
    font-weight: 900;
    width: 0.9em;
    text-align: center;
}

.mobile-card .number.color1 { color: #C94A4A; }
.mobile-card .number.color2 { color: #A83636; }
.mobile-card .number.color3 { color: #880F0F; }
.mobile-card .number.color4 { color: #6B0A0A; }
.mobile-card .number.color5 { color: #A83636; }
.mobile-card .number.color6 { color: #C94A4A; }

.mobile-card .coverWrap {
    transform: rotate(130deg);
    position: absolute;
    width: 18em;
    height: 15em;
    left: -3em;
    top: -1em;
}

.mobile-card .numberCover {
    position: absolute;
    background: #f5f8f7;
    width: 18em;
    height: 6em;
    border-radius: 50% 50% 0 0;
    border-bottom: 3px solid #f5f8f7;
    transition: all 0.4s;
}

.mobile-card .numberCover::before {
    position: absolute;
    content: "";
    bottom: 5px;
    left: 4em;
    right: 4em;
    top: 5em;
    box-shadow: 0 0 30px 17px rgba(136, 15, 15, 0.3);
    border-radius: 100px / 10px;
    z-index: -1;
}

.mobile-card .numberCover::after {
    position: absolute;
    bottom: 0;
    content: "";
    left: -10%;
    width: 120%;
    height: 150%;
    background: radial-gradient(at bottom, rgba(136, 15, 15, 0.2), transparent, transparent);
    z-index: 1;
}

.mobile-card .card-content {
    margin: 8em 3em 1em 7em;
    position: relative;
}

.mobile-card-icon {
    position: absolute;
    font-size: 2rem;
    text-align: center;
    top: -1.3em;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
}

.mobile-card h3 {
    font-size: 1.7em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #880F0F;
}

.mobile-card p {
    font-size: 14px;
    line-height: 1.5em;
    color: #555;
    text-align: center;
}

.mobile-card:hover .numberCover {
    border-radius: 100%;
}

/* Gallery Section - Interactive Gallery */
.gallery-section {
    padding: 60px 50px;
    background: #fff;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-section .gallery {
    width: min(90vw, 550px);
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 13vmin;
    gap: 0.25rem;
    margin-top: 40px;
}

.gallery-section .gallery .item {
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-section .gallery .item:nth-of-type(1) {
    background-image: url('https://images.unsplash.com/photo-1560583306-bd304a162229?q=80&w=2340&auto=format&fit=crop');
}

.gallery-section .gallery .item:nth-of-type(2) {
    background-image: url('https://images.unsplash.com/photo-1533106497176-45ae19e68ba2?q=80&w=2340&auto=format&fit=crop');
}

.gallery-section .gallery .item:nth-of-type(3) {
    background-image: url('https://images.unsplash.com/photo-1502872364588-894d7d6ddfab?q=80&w=2340&auto=format&fit=crop');
}

.gallery-section .gallery .item:nth-of-type(4) {
    background-image: url('https://images.unsplash.com/photo-1563089145-599997674d42?q=80&w=2340&auto=format&fit=crop');
}

.gallery-section .gallery .item:nth-of-type(5) {
    background-image: url('https://images.unsplash.com/photo-1534942060839-9b84382dd001?q=80&w=2340&auto=format&fit=crop');
}

.gallery-section .gallery .item:nth-of-type(6) {
    background-image: url('https://images.unsplash.com/photo-1627740660376-bc7506720b8a?q=80&w=2340&auto=format&fit=crop');
}

.gallery-section .gallery li[data-pos='1'] {
    grid-column: 1/6;
    grid-row: 1/6;
}

.gallery-section .gallery .item:hover:not(li[data-pos="1"]) {
    transform: scale(1.05);
}

/* Desktop Masonry Gallery */
.desktop-masonry-gallery {
    display: none;
}

@media (min-width: 969px) {
    /* Hide bento gallery on desktop */
    .gallery-section .gallery {
        display: none !important;
    }

    /* Show masonry gallery on desktop */
    .desktop-masonry-gallery {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 40px auto 0;
    }

    .masonry-item {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }

    .masonry-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .masonry-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .masonry-item.large {
        grid-column: span 3;
        height: 400px;
    }

    .masonry-item.medium {
        height: 280px;
    }
}

/* Simple Mobile Gallery - Hidden on Desktop */
.mobile-gallery {
    display: none !important;
}

@media (max-width: 968px) {
    /* Show bento gallery on mobile */
    .gallery-section .gallery {
        display: grid !important;
    }
}

::view-transition-group(*) {
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
}

/* Contact Section */
.contact-section {
    padding: 80px 50px;
    background: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-left h2 {
    font-size: 40px;
    color: #880F0F;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #880F0F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.contact-info-text h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-right {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Pilcrow Rounded', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #880F0F;
    box-shadow: 0 0 0 3px rgba(136, 15, 15, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #880F0F;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Pilcrow Rounded', sans-serif;
}

.submit-btn:hover {
    background: #660B0B;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(136, 15, 15, 0.3);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left h2 {
        font-size: 32px;
    }

    .contact-right {
        padding: 30px 20px;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #330505, #880F0F);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background-color: #fff;
    color: #880F0F;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background-color: #fff;
    color: #880F0F;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .hero-section {
        height: 400px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .about-row,
    .parallax-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        height: 300px;
    }

    .stats-section ol {
        grid-template-columns: 1fr;
    }

    .facilities-grid,
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .facility-card {
        margin-bottom: 20px;
    }

    .circle-button {
        width: 60px;
        height: 60px;
        top: -30px;
    }

    .bento-1, .bento-2, .bento-3, .bento-4, 
    .bento-5, .bento-6, .bento-7, .bento-8 {
        grid-column: 1 !important;
        grid-row: auto !important;
        height: 250px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    /* Infographic mobile - Hide complex design, show simple cards */
    .why-choose-section {
        padding: 40px 15px;
        background: #f5f8f7;
        overflow-x: hidden;
    }

    .why-choose-container {
        overflow-x: hidden;
    }

    .why-choose-container h2 {
        margin-bottom: 30px;
        font-size: 28px;
    }

    /* Hide the entire infographic on mobile */
    .graphic-container {
        display: none !important;
    }

    /* Show mobile simple cards */
    .mobile-why-cards {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        font-size: 0.7em;
        overflow-x: hidden;
    }

    .mobile-card {
        max-width: 24em;
        width: 100%;
    }

    .mobile-card .number {
        font-size: 10em;
    }

    .mobile-card .card-content {
        margin: 8em 2em 1em 6.2em;
    }

    .mobile-card .coverWrap {
        width: 17.5em;
        left: -3em;
    }

    .mobile-card .numberCover {
        width: 17.5em;
    }
}


/* Achievements Section - Scroll Driven */
.achievements-section {
    background-color: #f9ffe7;
    transition: background-color 0.6s ease;
    overflow-x: hidden;
}

.achievements-section .container {
    max-width: 1600px;
    padding: 2rem;
    margin: 0 auto;
}

.achievements-section .spacer {
    width: 100%;
    height: 2vh;
}

.achievements-section .arch {
    display: flex;
    gap: 80px;
    justify-content: space-between;
    max-width: 1400px;
    margin-inline: auto;
}

.achievements-section .arch__left {
    display: flex;
    flex-direction: column;
    min-width: 500px;
    flex: 1;
}

.achievements-section .arch__info {
    max-width: 600px;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.achievements-section .arch__info .content {
    width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.achievements-section .arch__info h2.header {
    font-family: 'Pilcrow Rounded', sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #880F0F;
    margin-bottom: 12px;
    line-height: 1.1;
}

.achievements-section .arch__info p.desc {
    color: rgba(18, 18, 18, 0.85);
    font-size: 17px;
    letter-spacing: -0.2px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.achievements-section .arch__info a.link {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    display: inline-flex;
    gap: 8px;
    width: fit-content;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.achievements-section .arch__info a.link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.achievements-section .arch__right {
    flex-shrink: 0;
    height: 60vh;
    width: 100%;
    max-width: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.achievements-section .arch__right .img-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 450px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.achievements-section .arch__right .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 900px) {
    .achievements-section .arch {
        gap: 30px;
    }
    
    .achievements-section .arch__left {
        min-width: 400px;
    }
}

@media (max-width: 768px) {
    .achievements-section {
        padding: 40px 20px;
    }

    .achievements-section .container {
        padding: 0;
    }

    .achievements-section .arch {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }

    .achievements-section .arch__left {
        min-width: 100%;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    /* Hide the separate image container on mobile */
    .achievements-section .arch__right {
        display: none !important;
    }

    /* Convert to card layout with image inside */
    .achievements-section .arch__info {
        height: auto;
        min-height: auto;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .achievements-section .arch__info .content {
        background: rgba(255, 255, 255, 0.98);
        padding: 0;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* Add image to each card on mobile */
    .achievements-section .arch__info .content::before {
        content: '';
        display: block;
        width: 100%;
        height: 250px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Set different images for each card */
    .achievements-section .arch__info:nth-child(1) .content::before {
        background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=800');
    }

    .achievements-section .arch__info:nth-child(2) .content::before {
        background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=800');
    }

    .achievements-section .arch__info:nth-child(3) .content::before {
        background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=800');
    }

    .achievements-section .arch__info:nth-child(4) .content::before {
        background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=800');
    }

    /* Content padding inside card */
    .achievements-section .arch__info h2.header,
    .achievements-section .arch__info p.desc,
    .achievements-section .arch__info a.link {
        padding-left: 25px;
        padding-right: 25px;
    }

    .achievements-section .arch__info h2.header {
        font-size: 26px;
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .achievements-section .arch__info p.desc {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .achievements-section .arch__info a.link {
        font-size: 14px;
        padding: 12px 24px;
        margin-bottom: 25px;
        align-self: flex-start;
        margin-left: 25px;
    }
}

@media (max-width: 560px) {
    .achievements-section .arch {
        gap: 12px;
    }

    .achievements-section .container {
        padding: 10px;
    }

    .achievements-section .arch__right .img-wrapper {
        border-radius: 10px;
        height: 280px;
    }
}

/* Leadership Section */
.leadership-section {
    padding: 120px 50px 60px 50px;
    background: #f9f9f9;
    margin-top: 80px;
}

.leadership-section h2 {
    font-family: 'Pilcrow Rounded', sans-serif;
    text-align: center;
    font-size: 48px;
    color: #880F0F;
    margin-bottom: 50px;
    font-weight: 800;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(136, 15, 15, 0.1);
    transition: all 0.4s ease;
    position: relative;
    width: 100%;
    max-width: 400px;
}

@media (max-width: 768px) {
    .leadership-section {
        padding: 80px 30px 40px 30px;
        margin-top: 40px;
    }

    .leadership-section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .leader-card {
        max-width: 100%;
    }
}

.leader-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(136, 15, 15, 0.2);
}

.leader-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image-wrapper img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(136, 15, 15, 0.95), transparent);
    padding: 30px;
    color: white;
}

.leader-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.leader-position {
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-content {
    padding: 30px;
    text-align: center;
}

.leader-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.mobile-menu-header h3 {
    margin: 0;
    color: #880F0F;
    font-size: 16px;
}

.section-title--program {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 48px;
    color: #880F0F;
    font-weight: 800;
    margin-bottom: 60px;
}

.section-title--achievements {
    text-align: center;
    font-size: 48px;
    color: #880F0F;
    font-weight: 800;
    margin-bottom: 40px;
    padding-top: 60px;
}

.section-title--spaced {
    margin-top: 60px;
}

.program-highlights {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.program-highlights li {
    padding: 5px 0;
}

.about-content .about-apply-btn {
    text-decoration: none;
}

.arch-link--graduates {
    background-color: #880F0F;
    color: #fff;
}

.arch-link--faculty {
    background-color: #003d5c;
    color: #fff;
}

.arch-link--wellness {
    background-color: #8B0052;
    color: #fff;
}

.arch-link--placement {
    background-color: #CC4400;
    color: #fff;
}

.clip-svg-hidden {
    position: absolute;
}

.contact-link-muted {
    color: #666;
    text-decoration: none;
}