* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
    transform: translate3d(0, 0, 0); 
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #666666;
    background-color: #FFFFFF;
    background-image: url('https://via.placeholder.com/1600x900?text=Abstract+Wave');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 1;
    transition: none; 
    position: relative;
    will-change: transform; 
}

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 37, 47, 1); 
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease; 
    pointer-events: none;
}

.page-transition-overlay.active {
    opacity: 1;
}

@keyframes fadeOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-exit {
    position: absolute;
    width: 100%;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0); 
}

.page-exit.slide-to-left {
    animation-name: slideOutLeft;
}

.page-exit.slide-to-right {
    animation-name: slideOutRight;
}

.page-enter {
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0); 
}

.page-enter.slide-in-from-left {
    animation-name: slideInFromLeft;
}

.page-enter.slide-in-from-right {
    animation-name: slideInFromRight;
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(-100%, 0, 0);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(100%, 0, 0);
        opacity: 0;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translate3d(100%, 0, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

section, .profile-banner {
    scroll-margin-top: 80px; 
    position: relative; 
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-down {
    animation: slideInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.section-animate, .profile-banner.section-animate {
    animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px); 
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px); 
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

body.profile-page {
    background: linear-gradient(rgba(26, 37, 47, 0.1), rgba(26, 37, 47, 0.1)), url('https://via.placeholder.com/1600x900?text=Abstract+Wave');
}

.container {
    width: 100%;
    padding: 0; 
}

.inner-container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px; 
}


header {
    background: #1A252F;
    padding: 20px 0;
    border-bottom: 3px solid #00C4CC;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin: 0 20px;
}

.logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: brightness(1.2);
}

.logo:hover {
    transform: scale(1.1);
}

.nav {
    display: flex;
}

.nav a {
    text-decoration: none;
    color: #FFFFFF;
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 8px;
    background: rgba(0, 196, 204, 0.2);
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover, .nav a.active {
    background: #00C4CC;
    color: #1A252F;
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 12px;
    margin-right: 20px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #00C4CC;
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.welcome {
    padding: 80px 0;
    min-height: 100vh; 
    text-align: center;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.85), rgba(0, 196, 204, 0.15)), url('https://via.placeholder.com/1600x900?text=Wave+Background');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; 
}

.welcome::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 196, 204, 0.3), transparent);
    z-index: 1;
    animation: pulse 6s infinite;
}

.welcome::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 196, 204, 0.3), transparent);
    z-index: 1;
    animation: pulse 6s infinite reverse;
}

.welcome h1 {
    color: #FFFFFF;
    margin-bottom: 25px;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s ease-out forwards;
}

.welcome p {
    color: #FFFFFF;
    margin: 0 auto 40px;
    font-size: 20px;
    max-width: 800px;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.2s ease-out 0.5s forwards;
}

.welcome h1 span {
    color: #FFD700; 
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.welcome h1 span:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%; 
    margin: 0 auto;
    overflow: hidden;
    z-index: 3;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
    height: auto; 
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide img {
    width: 100%;
    height: auto; 
    object-fit: cover; 
    object-position: center; 
    border-radius: 15px;
    transition: transform 0.5s ease;
    display: block; 
}

.slide:hover img {
    transform: scale(1.05); 
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    background: rgba(26, 37, 47, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.slide:hover .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.prev-btn, .next-btn {
    background: rgba(0, 196, 204, 0.8);
    color: #FFFFFF;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 4;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn:hover, .next-btn:hover {
    background: #00C4CC;
    transform: translateY(-50%) scale(1.2);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
    z-index: 4;
}

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

.dot.active {
    background: #FFD700; 
    transform: scale(1.4);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

.counter {
    text-align: center;
    margin-top: 40px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.profile-banner {
    background: linear-gradient(rgba(26, 37, 47, 0.8), rgba(26, 37, 47, 0.8)), url('https://via.placeholder.com/1600x400?text=Wave+Banner');
    color: #FFFFFF;
    padding: 120px 0;
    text-align: center;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
}

.profile-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/200x400?text=Wave+Accent') no-repeat right center;
    background-size: contain;
    background-color: rgba(0, 196, 204, 0.2);
    z-index: 1;
    transform: skew(10deg);
}

.profile-banner .inner-container {
    position: relative;
    z-index: 2;
}

.profile-banner h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.profile-banner p {
    font-size: 22px;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
}

.about-school {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.about-school h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 25px;
    text-align: justify;
    color: #666666;
}

.vision-mission {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.vision-mission h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.vision, .mission {
    background: rgba(26, 37, 47, 0.05);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vision:hover, .mission:hover {
    transform: translateY(-15px);
    background: rgba(0, 196, 204, 0.1);
}

.vision h3, .mission h3 {
    color: #1A252F;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #00C4CC;
    padding-bottom: 10px;
}

.mission ul {
    padding-left: 25px;
}

.mission li {
    margin-bottom: 20px;
    color: #666666;
}

.school-stats {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.school-stats h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.school-stats .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.school-stats .stats-container .stat-box {
    background: linear-gradient(45deg, #00C4CC, #1A252F);
    color: #FFFFFF; 
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.school-stats .stats-container .stat-box:hover {
    transform: translateY(-10px);
}

.school-stats .stats-container .stat-box .stat-number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFFFFF; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); 
}

.school-stats .stats-container .stat-box .stat-title {
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF; 
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-box {
    background: linear-gradient(45deg, #00C4CC, #1A252F);
    color: #FFFFFF;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #E0FFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-title {
    font-size: 20px;
    text-transform: uppercase;
}

.achievement {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.achievement h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.achievement-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.achievement-item {
    text-align: center;
    background: rgba(0, 196, 204, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.achievement-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 196, 204, 0.1);
}

.achievement-item .icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #00C4CC;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 196, 204, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.achievement-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.achievement-item:hover .icon {
    background: #00C4CC;
}

.achievement-item h3 {
    color: #1A252F;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.achievement-item p {
    color: #666666;
    font-size: 16px;
    line-height: 1.5;
}

.school-facilities {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.school-facilities h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.facility-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.facility {
    text-align: center;
    transition: transform 0.3s ease;
}

.facility:hover {
    transform: translateY(-15px);
}

.facility .icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #00C4CC;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 196, 204, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.facility .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.facility:hover .icon {
    background: #00C4CC;
    color: #FFFFFF;
}

.facility p {
    color: #666666;
    font-size: 18px;
    font-weight: 500;
}

.testimonials {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: linear-gradient(rgba(26, 37, 47, 0.05), rgba(26, 37, 47, 0.05));
}

.testimonials h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial {
    background: rgba(0, 196, 204, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial p {
    color: #1A252F;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial span {
    color: #666666;
    font-weight: 600;
    display: block;
    text-align: right;
}

.contact {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.contact h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form, .info {
    padding: 30px;
    background: rgba(26, 37, 47, 0.05);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info {
    background: rgba(26, 37, 47, 0.1);
}

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

label {
    display: block;
    margin-bottom: 10px;
    color: #1A252F;
    font-weight: 600;
}

.radio-label {
    display: inline;
    color: #1A252F;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #00C4CC;
    border-radius: 8px;
    font-size: 16px;
    background: #FFFFFF;
    color: #1A252F;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #00C4CC;
    box-shadow: 0 0 10px rgba(0, 196, 204, 0.5);
    outline: none;
}

input[type="radio"] {
    width: auto;
    margin-right: 10px;
}

.radio-group {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

textarea {
    height: 180px;
}

button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #00C4CC, #1ABC9C);
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    margin-top: 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 192, 204, 0.4);
}

.current-info p {
    margin: 10px 0;
    line-height: 1.8;
    color: #666666;
}

.error {
    color: #FF5555;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

footer {
    padding: 40px 0;
    text-align: right;
    color: #FFFFFF;
    font-size: 16px;
    background: #1A252F;
    width: 100%;
    border-top: 3px solid #00C4CC;
}

footer .inner-container {
    text-align: right;
}

@media screen and (max-width: 1366px) {
    .slider-container {
        max-width: 100%;
        height: auto;
    }

    .slide img {
        width: 100%;
        height: auto;
        aspect-ratio: 1366 / 578;
    }

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

.char-animate {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .char-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .welcome .inner-container:hover h1 {
    transform: translateY(-5px);
  }
  
  .welcome h1, .welcome p {
    transition: transform 0.5s ease;
  }

.why-choose-us {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.why-choose-us h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    background: rgba(0, 196, 204, 0.05);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 196, 204, 0.1);
}

.why-item .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.why-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-item h3 {
    color: #1A252F;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-item p {
    color: #666666;
    font-size: 16px;
}

.events {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.events h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.event-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.event-item {
    background: rgba(0, 196, 204, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.event-item h3 {
    color: #1A252F;
    font-size: 22px;
    margin-bottom: 10px;
}

.event-item p {
    color: #666666;
    font-size: 16px;
    margin: 5px 0;
}

.student-life {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.student-life h2 {
    margin-bottom: 0px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.student-life > p {
    color: #666666;
    font-size: 18px;
    margin-bottom: 40px;
}

.life-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.life-item {
    text-align: center;
}

.life-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.life-item h3 {
    color: #1A252F;
    font-size: 22px;
    margin-bottom: 15px;
}

.life-item p {
    color: #666666;
    font-size: 16px;
}

.quick-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.quick-link-btn {
    background: #00C4CC;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    pointer-events: auto; 
    position: relative; 
    z-index: 10;
}

.quick-link-btn:hover {
    background: #1A252F;
    transform: translateY(-3px);
}

.quick-stats {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.quick-stats h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(0, 196, 204, 0.1);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #1A252F;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #666666;
}

.event-link {
    display: inline-block;
    margin-top: 10px;
    color: #00C4CC;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-link:hover {
    color: #1A252F;
}

.life-link {
    display: inline-block;
    margin-top: 10px;
    color: #00C4CC;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.life-link:hover {
    color: #1A252F;
}

.quotes {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: linear-gradient(rgba(26, 37, 47, 0.05), rgba(26, 37, 47, 0.05));
}

.quotes h2 {
    margin-bottom: 50px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quote-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.quote-item {
    background: rgba(0, 196, 204, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.quote-item p {
    font-style: italic;
    color: #1A252F;
    margin-bottom: 10px;
}

.quote-item span {
    display: block;
    text-align: right;
    color: #666666;
    font-weight: 600;
}

.resources {
    padding: 80px 0;
    border-bottom: 3px solid #00C4CC;
    width: 100%;
    position: relative;
    background: #FFFFFF;
}

.resources h2 {
    margin-bottom: 20px;
    text-align: left;
    color: #1A252F;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.resources > p {
    color: #666666;
    font-size: 18px;
    margin-bottom: 40px;
}

.resource-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.resource-item {
    background: rgba(0, 196, 204, 0.05);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 196, 204, 0.1);
}

.resource-item h3 {
    color: #1A252F;
    font-size: 22px;
    margin-bottom: 10px;
}

.resource-item p {
    color: #666666;
    font-size: 16px;
    margin-bottom: 15px;
}

.resource-link {
    display: inline-block;
    color: #00C4CC;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #1A252F;
}

@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }
    
    .nav {
        display: none;
        width: 100%;
        margin-top: 20px;
    }
    
    .nav.active {
        display: flex;
        flex-direction: column;
    }
    
    .nav a {
        margin: 10px 0;
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 25px;
        right: 20px;
    }
    
    .form-container, .about-content, .vm-container, .testimonial-container {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }

    .school-stats .stats-container {
        grid-template-columns: 1fr;
    }
    
    .achievement-container {
        grid-template-columns: 1fr;
    }
    
    .profile-banner, .welcome {
        padding: 80px 0;
    }
    
    .profile-banner h1, .welcome h1 {
        font-size: 36px;
    }
    .welcome {
        padding: 60px 0;
        min-height: 80vh;
    }
    .welcome h1 {
        font-size: 36px;
    }
    .welcome p {
        font-size: 18px;
        max-width: 90%;
    }
    .slider-container {
        padding-top: 56.25%; 
    }
    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .slide-caption {
        font-size: 16px;
        padding: 8px 15px;
    }

    section, .profile-banner {
        scroll-margin-top: 60px;
    }
    .slide-in-left {
        animation: slideInLeft 0.6s ease-out forwards;
    }
    .slide-in-right {
        animation: slideInRight 0.6s ease-out forwards;
    }
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px); 
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px); 
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    .page-exit, .page-enter {
        animation-duration: 0.4s;
    }
    .page-transition-overlay {
        transition-duration: 0.4s;
    }
    .slide-in-up, .slide-in-down {
        animation-duration: 0.6s;
    }
    @keyframes slideOutLeft {
        from { transform: translateX(0); opacity: 1; }
        to { transform: translateX(-30%) scale(0.95); opacity: 0; }
    }
    @keyframes slideOutRight {
        from { transform: translateX(0); opacity: 1; }
        to { transform: translateX(30%) scale(0.95); opacity: 0; }
    }
    @keyframes slideInFromLeft {
        from { transform: translateX(-30%) scale(0.95); opacity: 0; }
        to { transform: translateX(0) scale(1); opacity: 1; }
    }
    @keyframes slideInFromRight {
        from { transform: translateX(30%) scale(0.95); opacity: 0; }
        to { transform: translateX(0) scale(1); opacity: 1; }
    }
}

@media screen and (max-width: 480px) {
    .achievement-container {
        grid-template-columns: 1fr;
    }
    
    .achievement-item {
        margin-bottom: 30px;
    }
    
    .welcome h1, .profile-banner h1 {
        font-size: 32px;
    }

    .welcome {
        padding: 40px 0;
        min-height: 70vh;
    }
    .welcome h1 {
        font-size: 28px;
    }
    .welcome p {
        font-size: 16px;
    }
    .slider-container {
        height: 50vh; 
    }
    .slide {
        height: 50vh; 
    }
    .slide img {
        height: 100%; 
        width: 100%; 
        object-fit: cover; 
    }
    .slide-caption {
        font-size: 12px;
        padding: 5px 10px;
    }
    .prev-btn, .next-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .slide-in-left {
        animation: slideInLeft 0.5s ease-out forwards;
    }
    .slide-in-right {
        animation: slideInRight 0.5s ease-out forwards;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px); 
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px); 
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    .page-exit, .page-enter {
        animation-duration: 0.3s;
    }
    .page-transition-overlay {
        transition-duration: 0.3s;
    }
    .slide-in-up, .slide-in-down {
        animation-duration: 0.5s;
    }
    @keyframes slideInUp {
        from { transform: translateY(30px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    @keyframes slideInDown {
        from { transform: translateY(-30px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    @keyframes slideOutLeft {
        from { transform: translateX(0); opacity: 1; }
        to { transform: translateX(-20%) scale(0.95); opacity: 0; }
    }
    @keyframes slideOutRight {
        from { transform: translateX(0); opacity: 1; }
        to { transform: translateX(20%) scale(0.95); opacity: 0; }
    }
    @keyframes slideInFromLeft {
        from { transform: translateX(-20%) scale(0.95); opacity: 0; }
        to { transform: translateX(0) scale(1); opacity: 1; }
    }
    @keyframes slideInFromRight {
        from { transform: translateX(20%) scale(0.95); opacity: 0; }
        to { transform: translateX(0) scale(1); opacity: 1; }
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .slider-container {
        height: 60vh; 
    }
    .slide {
        height: 60vh;
    }
    .slide img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .slide-caption {
        font-size: 14px;
    }
    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1366px) {
    .slider-container {
        height: 70vh; 
    }
    .slide {
        height: 70vh;
    }
    .slide img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .slide-caption {
        font-size: 16px;
    }
}

@media screen and (min-width: 1367px) and (max-width: 2560px) {
    .slider-container {
        height: 80vh; 
    }
    .slide {
        height: 80vh;
    }
    .slide img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .slide-caption {
        font-size: 18px;
    }
}

@media screen and (min-width: 2561px) {
    .slider-container {
        height: 90vh; 
    }
    .slide {
        height: 90vh;
    }
    .slide img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .slide-caption {
        font-size: 20px;
        padding: 15px 25px;
    }
    .prev-btn, .next-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}
  
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}
  
  @keyframes typeWriter {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
}

  