@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Basic Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333333;
}

.container {
    width: 90%;
    margin: 0 auto;
}

/* Header */
.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e7e7e7;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    font-size: 14px;
}

.social-media a {
    margin-left: 15px;
    color: #333;
}

.navbar {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #0a2049;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #009346;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: url('../images/main-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 150px 0;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.btn {
    background-color: #009346;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0a2049;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
}

.about-us .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    color: #0a2049;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* News & Events Section */
.news-events {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.news-events h2 {
    text-align: center;
    font-size: 36px;
    color: #0a2049;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-item {
    background-color: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.news-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.news-item h3 {
    padding: 20px 20px 10px;
    margin: 0;
    color: #0a2049;
}

.news-item p {
    padding: 0 20px 20px;
    margin: 0;
}

.news-item a {
    display: block;
    padding: 0 20px 20px;
    text-decoration: none;
    color: #009346;
    font-weight: 600;
}

/* Custom Sections */
.custom-section {
    padding: 80px 0;
}

.custom-section:nth-child(odd) {
    background-color: #f8f9fa;
}

.custom-section h2 {
    text-align: center;
    font-size: 36px;
    color: #0a2049;
    margin-bottom: 40px;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.custom-item {
    background-color: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.custom-item:hover {
    transform: translateY(-10px);
}

.custom-item img {
    width: 100%;
}

.custom-item h3 {
    padding: 20px 20px 10px;
    margin: 0;
    color: #0a2049;
}

.custom-item a {
    display: block;
    padding: 0 20px 20px;
    text-decoration: none;
    color: #009346;
    font-weight: 600;
}

/* Slider */
.slider-container {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 33.3333%;
    box-sizing: border-box;
    padding: 0 15px;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}

.slide h3 {
    padding: 20px 0 10px;
    margin: 0;
    color: #0a2049;
    text-align: center;
}

.slide a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #009346;
    font-weight: 600;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1;
}

.slider-btn:hover {
    background: #eee;
}

.slider-btn.prev {
    left: -20px;
}

.slider-btn.next {
    right: -20px;
}

/* Management Message Section */
.management-message {
    padding: 80px 0;
}

.management-grid {
    display: flex;
    gap: 50px;
}

.message {
    text-align: center;
    flex: 1;
}

.message img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #009346;
}

.message h3 {
    color: #0a2049;
}

/* Achievements Section */
.achievements .section-title {
    color: #0a2049;
    font-size: 36px;
    margin-bottom: 40px;
}

.achievements-container {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.achievement-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8) rotateY(10deg);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.achievement-card.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    z-index: 10;
}

.achievement-card.prev {
    opacity: 0;
    transform: scale(0.8) translateX(-100%) rotateY(-10deg);
}

.achievement-card.next {
    opacity: 0;
    transform: scale(0.8) translateX(100%) rotateY(10deg);
}

.achievement-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}



.achievement-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.achievement-title {
    font-size: 24px;
    color: #0a2049;
    margin-bottom: 0;
}

.achievement-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    animation: slideInRight 0.8s ease 0.2s both;
}

.achievement-date {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 600;
    animation: slideInRight 0.8s ease 0.3s both;
}

.achievement-badge {
    display: inline-block;
    background: #009346;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    animation: slideInRight 0.8s ease 0.4s both;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

.nav-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #009346;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #009346, #0a2049);
    color: white;
}

.dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #0a2049;
    transform: scale(1.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Footer */
footer {
    background-color: #0a2049;
    color: #fff;
    padding: 50px 0 0;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

footer h3 {
    margin-bottom: 20px;
    color: #009346;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #009346;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #1a3a6e;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: #fff;
    }

    .nav-links.active {
        display: flex;
    }

    .about-us .container {
        flex-direction: column;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .news-grid,
    .custom-grid {
        grid-template-columns: 1fr;
    }

    .slider-container {
        width: 100%;
    }

    .slide {
        min-width: 100%;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .management-grid {
        flex-direction: column;
    }

    footer .container {
        grid-template-columns: 1fr;
    }

    .achievement-card {
        flex-direction: column;
        height: auto;
    }

    .achievement-image {
        height: 250px;
    }

    .achievement-content {
        padding: 30px;
    }

    .achievement-title {
        font-size: 1.8rem;
    }

    .achievements .section-title {
        font-size: 28px;
    }

    .achievements-container {
        height: auto;
        min-height: 550px;
    }
}

.banner-logo {
    height: 80px;
    width: auto;
}

.section {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.section-title {
    text-align: center;
    color: #0a2049;
    font-size: 36px;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease;
}

.programs-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.programs-grid-container {
    overflow: hidden;
    padding-bottom: 30px;
}

.programs-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 300px;
    flex-shrink: 0;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.program-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.program-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.program-card:hover .program-image::after {
    opacity: 1;
}

.program-info {
    padding: 25px;
    text-align: center;
}

.program-title {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-more-btn {
    background: #009346;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 147, 70, 0.4);
}

.read-more-btn:hover {
    transform: scale(1.05);
    background: #0a2049;
    box-shadow: 0 6px 20px rgba(10, 32, 73, 0.6);
}

/* Navigation Buttons for Programs */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 10;
}

.slider-nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.slider-nav-btn.prev {
    left: 10px;
}

.slider-nav-btn.next {
    right: 10px;
}

/* ========== FACILITIES CAROUSEL ========== */
.facilities-carousel {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.facilities-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item {
    position: absolute;
    width: 400px;
    height: 480px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.facility-card {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(10, 32, 73, 0.1);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.facility-card:hover {
    box-shadow: 0 20px 45px rgba(10, 32, 73, 0.15);
}

.facility-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-overlay {
    padding: 60px 30px;
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.facility-name {
    font-size: 2rem;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.facility-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

/* Carousel Controls */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    z-index: 100;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.15);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.carousel-nav.left {
    left: 20px;
}

.carousel-nav.right {
    right: 20px;
}

/* ========== SHARED NAVIGATION ========== */

.nav-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-item {
        width: 350px;
        height: 430px;
    }
}

@media (max-width: 768px) {

    .achievement-title {
        font-size: 1.8rem;
    }

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

    .achievements-container {
        height: auto;
        min-height: 550px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .programs-slider-wrapper {
        padding: 0 50px;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .facilities-carousel {
        height: 500px;
    }

    .facility-item {
        width: 300px;
        height: 400px;
    }

    .facility-name {
        font-size: 1.5rem;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.programs-section {
    background-color: #f8f9fa;
    padding: 120px 0 80px;
}

.facilities-section {
    padding: 80px 0;
}

/* Contact Page Styles */
.contact-hero {
    background-color: #0a2049;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info-column,
.contact-form-column {
    flex: 1;
}

.contact-card,
.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-card h2,
.form-card h2 {
    color: #0a2049;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #e6f4ed;
    color: #009346;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    color: #0a2049;
    margin-bottom: 5px;
}

.info-content p {
    margin-bottom: 0;
    font-size: 15px;
}

.social-links-contact {
    margin-top: 40px;
}

.social-links-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    color: #0a2049;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-contact a:hover {
    background-color: #009346;
    color: #fff;
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #0a2049;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #009346;
    outline: none;
}

.submit-btn {
    background-color: #009346;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #087a3c;
}

.map-section {
    height: 450px;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-card,
    .form-card {
        padding: 30px;
    }
}


.info-content a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #009346;
}

.contact-info a,
.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover,
.footer-contact a:hover {
    color: #009346;
}


/* Admissions Page Styles */
.admissions-hero {
    background-color: #0a2049;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.admissions-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.admissions-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #009346;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #0a2049;
    font-size: 20px;
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.application-form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.application-form {
    margin-top: 40px;
}

.form-section-title {
    font-size: 18px;
    color: #009346;
    font-weight: 600;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e7e7e7;
}

.form-section-title:first-child {
    margin-top: 0;
}

.form-row {
    display: flex;
    gap: 30px;
}

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

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
}

.form-group select:focus {
    border-color: #009346;
    outline: none;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-container {
        padding: 30px;
    }

    .admissions-hero h1 {
        font-size: 36px;
    }
}