/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0f0f1a;
    color: #e0e0e0;
    overflow-x: hidden;
    line-height: 1.6;
}

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

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #a0a0a0, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: #00d4ff;
    font-weight: 700;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f0f1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    height: 120px;
}

.hexagon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 3px solid #00d4ff;
    transform: rotate(45deg);
    animation: hexagonFloat 3s infinite ease-in-out;
}

.hexagon:nth-child(1) {
    animation-delay: 0s;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.hexagon:nth-child(2) {
    animation-delay: 0.5s;
    top: 30px;
    left: 30px;
}

.hexagon:nth-child(3) {
    animation-delay: 1s;
    top: 30px;
    right: 30px;
}

@keyframes hexagonFloat {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
        border-color: #00d4ff;
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
        border-color: #ffffff;
    }
}

.loading-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.loading-text p {
    color: #a0a0a0;
    font-size: 1rem;
}

/* Header & Navigation */
.header {
    background-color: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    padding: 5px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(15deg);
}

.logo-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.9rem;
    color: #a0a0a0;
    letter-spacing: 1px;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00d4ff;
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #00d4ff;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(160, 160, 160, 0.05) 0%, transparent 50%);
    z-index: -1;
}

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

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.5);
}

.hero-visual {
    position: relative;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    border-radius: 20px;
    animation: float 6s infinite ease-in-out;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    border-radius: 50%;
    animation: float 8s infinite ease-in-out reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 20%;
    border-radius: 30px;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.stat-card p {
    color: #a0a0a0;
    font-size: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), transparent);
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #1a1a2e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #a0a0a0;
    font-size: 1.2rem;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.about-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 25px;
    line-height: 1.8;
}

.accreditation-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(0, 212, 255, 0.1);
    border-left: 5px solid #00d4ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.badge-icon {
    font-size: 2.5rem;
    color: #00d4ff;
}

.badge-text h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.badge-text p {
    font-size: 1rem;
    color: #a0a0a0;
    margin: 0;
}

/* Vision & Mission Section */
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.vision-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vision-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 25px;
}

.vision-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.vision-text p {
    font-size: 1.3rem;
    color: #e0e0e0;
    line-height: 1.6;
    font-style: italic;
}

.vision-highlight {
    color: #00d4ff;
    font-weight: 700;
}

.mission-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.mission-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 25px;
    text-align: center;
}

.mission-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}

.mission-list {
    list-style: none;
}

.mission-list li {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mission-list li i {
    color: #00d4ff;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-icon {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1.1rem;
    color: #c0c0c0;
}

.accreditation {
    color: #00ff88 !important;
    font-weight: 700;
    font-size: 1.3rem !important;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.coordinates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.coordinate {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.coordinate h4 {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.coordinate p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00d4ff;
}

.location-details h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.location-details ul {
    list-style: none;
}

.location-details li {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-details li i {
    color: #00d4ff;
    margin-top: 5px;
    flex-shrink: 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    height: 500px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #1a1a2e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #a0a0a0;
    font-size: 1.2rem;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background-color: #00d4ff;
    color: #0f0f1a;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: #0a0a12;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    padding: 5px;
}

.footer-logo-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-logo-text p {
    font-size: 1rem;
    color: #a0a0a0;
}

.footer-contact h4, .footer-social h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact li i {
    color: #00d4ff;
    margin-top: 5px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #00d4ff;
    color: #0f0f1a;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.footer-highlight {
    color: #00d4ff;
    font-weight: 700;
}

.footer-footnote {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    font-weight: 700;
    margin-top: 20px !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 212, 255, 0.8);
    color: #0f0f1a;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #00d4ff;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content, .about-content, .vision-content, .location-content, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 150px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(15, 15, 26, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: right 0.4s ease;
        z-index: 1001;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .coordinates {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}