* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Circle Banner */
.banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 0;
}

.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.circle-banner {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

.circle-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px;
}

.circle-banner h1 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.circle-banner p {
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Navigation Styles - Reusable for all pages */
:root {
--bg-black: #05080f;        
--card-bg: #0f172a;        
--primary-blue: #2563eb;   
--blue-green: #00f2ea;     
--text-white: #ffffff;
--text-gray: #94a3b8;
--gradient: linear-gradient(135deg, #2563eb, #00f2ea);
}

/* --- HEADER & NAV --- */
header {
background: linear-gradient(135deg, #0a1a1a 0%, #1a3333 100%);
backdrop-filter: blur(10px);
position: relative;
width: 100%;
z-index: 1000;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.8rem 5%;
max-width: 1400px;
margin: 0 auto;
position: relative;
}

.nav-links {
display: flex;
list-style: none;
gap: 30px;
align-items: center;
margin: 0 auto;
}

.nav-links li a {
text-decoration: none;
color: var(--text-white);
font-weight: 600;
font-size: 0.95rem;
transition: 0.3s;
position: relative;
padding: 5px 0;
}

/* Hover effect: sliding line under menu */
.nav-links li a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: #26a69a;
transition: 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
color: #26a69a;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
padding: 5px;
z-index: 1001;
transition: all 0.3s ease;
position: absolute;
left: 15px; /* Position in left corner */
top: 50%;
transform: translateY(-50%);
}

.mobile-menu-toggle span {
width: 25px;
height: 3px;
background: var(--text-white);
margin: 3px 0;
transition: all 0.3s ease;
border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    align-items: center;
}

.social-icon {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.social-icon:nth-child(1) {
    animation-delay: 0s;
}

.social-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.social-icon:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.social-icon:hover svg {
    transform: translate(-50%, -50%);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.telegram {
    background: #0088cc;
}

.social-icon.tiktok {
    background: #ff0050;
}

.social-icon.facebook:hover {
    background: #166fe5;
}

.social-icon.telegram:hover {
    background: #007bb5;
}

.social-icon.tiktok:hover {
    background: #e6004a;
}

/* Welcome Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.popup-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    color: white;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.popup-overlay.hidden .popup-content {
    transform: scale(0.8);
}

.popup-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 30px;
    text-align: center;
}

.popup-body p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.popup-features {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.welcome-btn {
    background: linear-gradient(45deg, #16a085, #1abc9c);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(22, 160, 133, 0.4);
    margin-top: 20px;
}

.welcome-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.6);
}

/* Under Construction Notice */
.construction-notice {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    overflow: hidden;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.construction-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
    gap: 20px;
}

.construction-icon {
    font-size: 3rem;
    animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
}

.construction-text {
    flex: 1;
    text-align: center;
}

.construction-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.construction-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.dismiss-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dismiss-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.construction-notice.hidden {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
        max-height: 200px;
    }
    to {
        transform: translateY(-100px);
        opacity: 0;
        max-height: 0;
        margin: 0;
        padding: 0;
    }
}

/* Download Section */
.download-section {
    padding: 10px 0;
    background: #f8f9fa;
    margin-top: 0;
}

.download-title {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    background: white;
    text-decoration: none;
    color: inherit;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.download-btn.secondary {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: white;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.download-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 2.5rem;
    animation: bounce-gentle 2s ease-in-out infinite;
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.btn-content {
    flex: 1;
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.btn-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-arrow {
    font-size: 1.5rem;
    animation: bounce-arrow 1.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

.download-btn:hover .btn-arrow {
    animation-play-state: paused;
    transform: translateY(5px);
}

.download-btn:hover .btn-icon {
    animation-play-state: paused;
    transform: scale(1.1);
}

/* Loading Animation for Download */
.download-btn.loading {
    pointer-events: none;
}

.download-btn.loading .btn-arrow {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.download-btn.loading .btn-title::after {
    content: ' Downloading...';
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design for Download Buttons */
@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .download-btn {
        min-width: 250px;
        width: 90%;
        max-width: 350px;
    }
    
    .download-title {
        font-size: 1.6rem;
    }
    
    .btn-title {
        font-size: 1.1rem;
    }
}

/* Mobile & Tablet Responsive Styles */
@media (max-width: 1024px) {
.social-icons {
gap: 8px;
}

.social-icon {
width: 32px;
height: 32px;
}

.social-icon svg {
width: 14px;
height: 14px;
}
}

@media (max-width: 768px) { 
nav {
padding: 0.8rem 3%;
position: relative; /* Ensure relative positioning for absolute child */
}

.mobile-menu-toggle {
display: flex;
position: absolute;
left: 15px; /* Left corner positioning */
top: 50%;
transform: translateY(-50%);
}

.nav-links {
position: fixed;
top: 0;
left: -100%;
width: 100%;
height: 100vh;
background: linear-gradient(135deg, #0a1a1a 0%, #1a3333 100%);
backdrop-filter: blur(20px);
flex-direction: column;
justify-content: center;
align-items: center;
gap: 40px;
transition: left 0.3s ease;
z-index: 1000;
margin: 0;
}

.nav-links.active {
left: 0;
}

.nav-links li a {
font-size: 1.2rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
}

.social-icons {
/* Keep social icons always visible on mobile */
position: relative;
opacity: 1;
visibility: visible;
margin-left: auto; /* Push to the right */
}
}

@media (max-width: 480px) {
.social-icons {
gap: 6px;
/* Keep social icons visible on small mobile too */
position: relative;
opacity: 1;
visibility: visible;
padding: 0;
background: none;
border: none;
backdrop-filter: none;
}

.social-icon {
width: 28px;
height: 28px;
}

.social-icon svg {
width: 12px;
height: 12px;
}
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
.nav-links {
gap: 20px;
}

.nav-links li a {
font-size: 0.9rem;
}
}

/* Dean Section */
.dean-section {
    padding: 20px 0;
    background: #e8f8f5;
    position: relative;
    z-index: 2;
}

.dean-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #2c4f4f;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dean-image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.dean-content {
    flex: 1;
}

.dean-content h2 {
    font-size: 2.5rem;
    color: #e8f4f8;
    margin-bottom: 10px;
}

.dean-content h3 {
    font-size: 1.3rem;
    color: #a8d0d0;
    margin-bottom: 20px;
    font-weight: normal;
}

.dean-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #b8d4d4;
}

.hidden-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-out;
}

.hidden-text.expanded {
    max-height: 2000px;
    transition: max-height 0.8s ease-in;
}

.hidden-text p {
    margin-bottom: 20px;
}

.more-btn, .director-more-btn {
    background: #16a085;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.more-btn:hover, .director-more-btn:hover {
    background: #1abc9c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 160, 133, 0.3);
}

/* Directors Section */
.directors-section {
    padding: 20px 0;
    background: #1e3a3a;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #e8f4f8;
    margin-bottom: 20px;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.director-card {
    text-align: center;
    background: #2c4f4f;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.director-card img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.director-card h3 {
    font-size: 1.5rem;
    color: #e8f4f8;
    margin-bottom: 5px;
}

.director-card p:first-of-type {
    color: #a8d0d0;
    font-weight: 500;
    margin-bottom: 15px;
}

.director-card p:last-of-type {
    color: #b8d4d4;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Slider Section */
.slider-section {
    position: relative;
    height: 300px;
    overflow: hidden;
    z-index: 2;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 60px 40px 40px;
    text-align: center;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 120px;
    }
    
    .circle-banner {
        width: 110px;
        height: 110px;
    }
    
    .circle-banner h1 {
        font-size: 0.9rem;
    }
    
    .circle-banner p {
        font-size: 0.6rem;
    }
    
    .circle-logo {
        width: 24px;
        height: 24px;
        padding: 3px;
        margin-bottom: 3px;
    }
    
    /* Mobile Navigation */
    .nav-container {
        padding: 0 15px;
        height: 60px;
        position: relative;
    }
    
    /* Show mobile toggle button */
    .mobile-menu-toggle {
        display: flex !important;
        margin-left: auto;
    }
    
    /* Hide desktop menu and social icons on mobile */
    .nav-container > .nav-menu {
        display: none !important;
    }
    
    .nav-container > .social-icons {
        display: none !important;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu.mobile-open {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: #1a2332;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 20px 0;
        margin: 0;
        z-index: 102;
        overflow-y: auto;
        list-style: none;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        
        /* Slide animation */
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.mobile-open.slide-in {
        transform: translateX(0);
    }
    
    /* Mobile menu items */
    .nav-menu.mobile-open li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        list-style: none;
    }
    
    .nav-menu.mobile-open a {
        display: flex;
        align-items: center;
        padding: 18px 25px;
        font-size: 1.1rem;
        color: white;
        text-decoration: none;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
        min-height: 44px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-menu.mobile-open a:hover,
    .nav-menu.mobile-open a.active {
        background: #34495e;
        border-left-color: #3498db;
        transform: translateX(5px);
    }
    
    /* Remove desktop active indicator */
    .nav-menu.mobile-open a::after {
        display: none !important;
    }
    
    .dean-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu a {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .social-icons {
        gap: 12px;
        padding: 0 15px;
    }
    
    .social-icon {
        width: 50px;
        height: 35px;
    }
    
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Large Mobile Devices */
@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        left: -100%;
    }
    
    .nav-menu a {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .social-icons {
        padding: 12px 15px;
        gap: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 32px;
    }
    
    .social-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* Additional Styles for New Pages */

/* About Section */
.about-section {
    padding: 40px 0;
    background: #e8f8f5;
}

.about-content h3 {
    color: #0e6b5c;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #16a085;
    padding-bottom: 5px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Academics Section */
.academics-section {
    padding: 40px 0;
    background: #e8f8f5;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.program-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card h3 {
    color: #0e6b5c;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.program-card p {
    color: #666;
    line-height: 1.6;
}

.academic-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.academic-info h3 {
    color: #0e6b5c;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #16a085;
    padding-bottom: 5px;
}

.academic-info ul {
    margin-left: 20px;
}

.academic-info li {
    margin-bottom: 8px;
    color: #555;
}

/* Admissions Section */
.admissions-section {
    padding: 40px 0;
    background: #e8f8f5;
}

.admission-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.admission-content h3 {
    color: #0e6b5c;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #16a085;
    padding-bottom: 5px;
}

.admission-content:first-child h3 {
    margin-top: 0;
}

.admission-content ul, .admission-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.admission-content li {
    margin-bottom: 8px;
    color: #555;
}

.dates-info, .fees-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.dates-info p, .fees-info p {
    margin-bottom: 10px;
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
    background: #e8f8f5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info, .contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3, .contact-form h3 {
    color: #0e6b5c;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #16a085;
    padding-bottom: 5px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    color: #16a085;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #0e6b5c;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a085;
}

.submit-btn {
    background: #16a085;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.submit-btn:hover {
    background: #1abc9c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 160, 133, 0.3);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* Footer */
.footer {
    background: #0e6b5c;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 0;
}

.footer p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }
    
    .footer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ===== REGISTRAR PAGE STYLES ===== */

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #0a1f1c 0%, #1a3d3a 50%, #0f2d2a 100%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 20px 0;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    text-align: center;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-right {
    flex: 1.5;
    display: flex;
    justify-content: flex-end;
}

/* Animated Notice */
.animated-notice {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: slideInRight 1s ease-out;
    max-width: 420px;
    width: 100%;
    min-height: 50px;
}

.notice-icon {
    position: relative;
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.scrolling-text {
    height: 40px;
    overflow: hidden;
    position: relative;
}

.scroll-item {
    display: block;
    font-size: 0.8rem;
    line-height: 1.3;
    animation: scroll 6s infinite;
    position: absolute;
    width: 100%;
    opacity: 0;
    word-wrap: break-word;
    padding-right: 5px;
}

.scroll-item:nth-child(1) {
    animation-delay: 0s;
}

.scroll-item:nth-child(2) {
    animation-delay: 3s;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(0.8);
        opacity: 1;
    }
}

@keyframes scroll {
    0%, 45% {
        transform: translateY(0);
        opacity: 1;
    }
    50%, 95% {
        transform: translateY(-40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Notice Section */
.notice-section {
    padding: 10px 0 20px 0;
    background: transparent;
}

.notice-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

/* Vertical Links Sidebar */
.vertical-links {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.links-header {
    text-align: center;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.links-header h3 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.link-item {
    margin-bottom: 2px;
}

.vertical-link {
    display: block;
    padding: 4px 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.vertical-link:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.link-text {
    font-size: 0.75rem;
    line-height: 1.1;
}

.notice-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    height: 100%;
}

.notice-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #ddd;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.notice-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.notice-card.urgent {
    border-left-color: #dc3545;
}

.notice-card.important {
    border-left-color: #ffc107;
}

.notice-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.notice-badge.urgent {
    background: #dc3545;
    color: white;
}

.notice-badge.important {
    background: #ffc107;
    color: #333;
}

.notice-badge.training {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
}

.notice-card h3 {
    color: #2c5530;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.notice-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.notice-link {
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.notice-link:hover {
    color: #4a7c59;
}

.notice-date {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    text-align: right;
}

.program-list {
    margin: 6px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.program-item {
    font-size: 0.7rem;
    color: #2c5530;
    padding: 3px 6px;
    line-height: 1.2;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08), rgba(32, 201, 151, 0.05));
    border-radius: 8px;
    border-left: 2px solid #28a745;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 500;
}

.program-item:hover {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15), rgba(32, 201, 151, 0.1));
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
    color: #1e4620;
}

/* Students Section */
.students-section {
    padding: 20px 0 20px 0;
    background: transparent;
}

.students-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.student-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.student-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2c5530, #4a7c59);
}

.student-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.passport-photo {
    width: 80px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: relative;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.achievement-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.achievement-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #FFD700;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
    filter: hue-rotate(0deg) saturate(1.5) brightness(1.2);
}

.achievement-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #E5E5E5;
    text-shadow: 0 0 10px #C0C0C0, 0 0 20px #C0C0C0, 0 0 30px #C0C0C0;
    filter: hue-rotate(0deg) saturate(0.3) brightness(1.3);
}

.achievement-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
    color: #CD7F32;
    text-shadow: 0 0 10px #CD7F32, 0 0 20px #CD7F32, 0 0 30px #CD7F32;
    filter: hue-rotate(0deg) saturate(1.2) brightness(1.1);
}

.achievement-badge.blue {
    background: linear-gradient(135deg, #4169E1, #1E90FF);
    color: #4169E1;
    text-shadow: 0 0 10px #4169E1, 0 0 20px #4169E1, 0 0 30px #4169E1;
    filter: hue-rotate(220deg) saturate(1.5) brightness(1.2);
}

.achievement-badge.green {
    background: linear-gradient(135deg, #32CD32, #228B22);
    color: #32CD32;
    text-shadow: 0 0 10px #32CD32, 0 0 20px #32CD32, 0 0 30px #32CD32;
    filter: hue-rotate(120deg) saturate(1.4) brightness(1.1);
}

.student-name {
    font-size: 1.1rem;
    color: #2c5530;
    margin-bottom: 5px;
    font-weight: 700;
}

.student-department {
    color: #4a7c59;
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.student-details {
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

.student-achievement {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

/* Services Section */
.services-section {
    padding: 20px 0 50px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-btn {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 85, 48, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .students-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .notice-container {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .vertical-links {
        min-width: auto;
        width: 100%;
    }
    
    .notice-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .students-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .student-card {
        padding: 15px;
    }
    
    .passport-photo {
        width: 70px;
        height: 85px;
        font-size: 1.3rem;
    }
    
    .hero-section,
    .notice-section,
    .students-section,
    .services-section {
        padding: 20px 0;
    }
    
    .notice-section {
        padding: 5px 0 20px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .animated-notice {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .notice-icon {
        font-size: 1.2rem;
    }
    
    .notice-title {
        font-size: 0.7rem;
    }
    
    .scroll-item {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .notice-container {
        gap: 15px;
    }
    
    .vertical-links {
        padding: 6px;
        min-width: auto;
    }
    
    .links-header h3 {
        font-size: 0.8rem;
    }
    
    .vertical-link {
        padding: 3px 6px;
    }
    
    .link-text {
        font-size: 0.7rem;
    }
    
    .notice-card,
    .service-card {
        padding: 15px;
    }
    
    .students-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }
    
    .student-card {
        padding: 12px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .passport-photo {
        width: 60px;
        height: 75px;
        font-size: 1.1rem;
    }
    
    .achievement-badge {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
    
    .student-name {
        font-size: 1rem;
    }
    
    .student-department {
        font-size: 0.8rem;
    }
    
    .student-details {
        font-size: 0.75rem;
    }
    
    .student-achievement {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}