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

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --yellow: #FFD700;
    --yellow-bright: #FFED4E;
    --yellow-dark: #FFC700;
    --gray-dark: #2a2a2a;
    --gray-light: #3a3a3a;
    --white: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-subtle: 0 0 10px rgba(255, 215, 0, 0.2);
    --glow-medium: 0 0 20px rgba(255, 215, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--white);
    line-height: 1.6;
    background-color: var(--primary-black);
    overflow-x: hidden;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: -1px -1px;
}

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

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    position: relative;
}

.section::before,
.section::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--yellow);
    opacity: 0.3;
    pointer-events: none;
}

.section::before {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.section::after {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
}

.alternate {
    background-color: var(--secondary-black);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--yellow);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.2);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 30px rgba(255, 215, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: -0.5px;
    text-shadow: var(--glow-subtle);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: rgba(255, 215, 0, 0.05);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
    transition: var(--transition-smooth);
}

.logo-image:hover {
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 4px 12px rgba(255, 215, 0, 0.6));
    transform: translateY(-2px) scale(1.02);
}

.logo-text {
    display: none;
}

.logo-text-visible {
    font-size: 20px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition-smooth);
    opacity: 0.8;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
    box-shadow: var(--glow-subtle);
}

.nav-menu a:hover {
    opacity: 1;
    color: var(--yellow);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 900px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--yellow);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.hero-title .word {
    display: inline-block;
    margin: 0 8px;
    animation: fadeInUp 0.8s ease-out backwards;
    position: relative;
}

.hero-title .word:nth-child(1) { 
    animation-delay: 0.1s;
    color: var(--white);
}

.hero-title .word:nth-child(2) { 
    animation-delay: 0.3s;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -3px;
}

.hero-title .word:nth-child(3) { 
    animation-delay: 0.5s;
    background: linear-gradient(135deg, var(--yellow-bright) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -3px;
}

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

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 40px;
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--yellow);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid var(--yellow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--yellow-bright);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--yellow);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid var(--yellow);
}

.cta-button-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    animation: float 2s ease-in-out infinite;
    z-index: 1;
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    transform: rotate(-45deg);
    box-shadow: var(--glow-subtle);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

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

/* Section Titles */
.section-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--yellow);
    text-shadow: var(--glow-subtle);
}

.section-title-large {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 40px;
    color: var(--yellow);
    text-shadow: var(--glow-medium);
}

.section-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 60px;
    opacity: 0.9;
}

.section-description {
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    max-width: 700px;
    opacity: 0.9;
}

.large-text {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 20px;
}

/* About Section */
.about .section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Split Content Layout */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

.content-block {
    padding: 40px 0;
    position: relative;
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--yellow), transparent);
    animation: slide-vertical 3s ease-in-out infinite;
}

@keyframes slide-vertical {
    0%, 100% { transform: translateY(-50%); opacity: 0; }
    50% { transform: translateY(50%); opacity: 1; }
}

.visual-block {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-block::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid var(--yellow);
    border-radius: 20px;
    opacity: 0.3;
    animation: expand-contract 4s ease-in-out infinite;
}

@keyframes expand-contract {
    0%, 100% { 
        transform: scale(0.95);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.6;
    }
}

/* Animated Visuals for Vision and Mission */
.animated-visual {
    width: 100%;
    aspect-ratio: 4/3;
    background: radial-gradient(circle at center, var(--secondary-black) 0%, var(--primary-black) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    padding: 30px;
}

.animated-visual svg {
    width: 100%;
    height: 100%;
}

/* Vision Animation - Person Chasing Dreams */
.person-running {
    animation: run-forward 4s ease-in-out infinite;
}

@keyframes run-forward {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(30px) translateY(-10px); }
}

.vision-target {
    animation: pulse-target 3s ease-in-out infinite;
}

@keyframes pulse-target {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.journey-path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw-path 6s ease-in-out infinite;
}

@keyframes draw-path {
    0% { stroke-dashoffset: 500; }
    100% { stroke-dashoffset: 0; }
}

.star {
    animation: twinkle 2s ease-in-out infinite;
}

.star1 { animation-delay: 0s; }
.star2 { animation-delay: 0.7s; }
.star3 { animation-delay: 1.4s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.float-particle {
    animation: float-up 4s ease-in-out infinite;
}

.p1 { animation-delay: 0s; }
.p2 { animation-delay: 1.3s; }
.p3 { animation-delay: 2.6s; }

@keyframes float-up {
    0% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-20px); opacity: 0.8; }
    100% { transform: translateY(-40px); opacity: 0; }
}

/* Mission Animation - Climbing Mountain */
.climber {
    animation: climb-up 6s ease-in-out infinite;
}

@keyframes climb-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.flag-wave {
    transform-origin: left center;
    animation: wave-flag 2s ease-in-out infinite;
}

@keyframes wave-flag {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0.8); }
}

.achievement-star {
    animation: sparkle 1.5s ease-in-out infinite;
}

.s1 { animation-delay: 0s; }
.s2 { animation-delay: 0.5s; }
.s3 { animation-delay: 1s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); }
}

.mountain {
    transition: all 0.5s ease;
}

.animated-visual:hover .mountain-back {
    transform: translateY(-5px);
}

.animated-visual:hover .mountain-mid {
    transform: translateY(-8px);
}

.animated-visual:hover .mountain-front {
    transform: translateY(-3px);
}

.climb-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw-climb-path 8s ease-in-out infinite;
}

@keyframes draw-climb-path {
    0% { stroke-dashoffset: 300; }
    100% { stroke-dashoffset: 0; }
}

/* Collegese Section */
.collegese-header {
    text-align: center;
    margin-bottom: 80px;
}
.collegese-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--gray-dark) 100%);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
    border-color: var(--yellow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    color: var(--yellow);
    filter: drop-shadow(var(--glow-subtle));
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(var(--glow-medium));
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--yellow);
}

.feature-card p {
    font-size: 16px;
    color: var(--white);
    line-height: 1.5;
    opacity: 0.9;
}

.collegese-features {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
}

.feature-highlight h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: -1px;
    text-shadow: var(--glow-subtle);
    animation: subtle-glow-pulse 3s ease-in-out infinite;
}

.feature-highlight:nth-child(2) h3 {
    animation-delay: 1s;
}

.feature-highlight:nth-child(3) h3 {
    animation-delay: 2s;
}

@keyframes subtle-glow-pulse {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        transform: scale(1.02);
    }
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    padding: 60px 0 40px;
    border-top: 2px solid var(--yellow);
    box-shadow: 0 -5px 30px rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--yellow);
    text-shadow: var(--glow-subtle);
}

.footer-logo {
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: inline-block;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.footer-brand p {
    font-size: 14px;
    color: var(--white);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--yellow);
    opacity: 1;
    text-shadow: var(--glow-subtle);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--white);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .section-title-large {
        font-size: 56px;
    }
    
    .split-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
    }
    
    .nav-logo {
        padding: 6px 12px;
    }
    
    .logo-image {
        height: 40px;
        max-width: 160px;
    }
    
    .logo-text-visible {
        font-size: 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-logo-image {
        height: 50px;
        max-width: 160px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-title-large {
        font-size: 40px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .large-text {
        font-size: 28px;
    }
    
    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-content.reverse {
        direction: ltr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .collegese-features {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-highlight h3 {
        font-size: 36px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-logo {
        padding: 5px 10px;
    }
    
    .logo-image {
        height: 35px;
        max-width: 130px;
    }
    
    .logo-text-visible {
        font-size: 14px;
    }
    
    .footer-logo-image {
        height: 45px;
        max-width: 140px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title-large {
        font-size: 32px;
    }
    
    .cta-button-large {
        padding: 16px 35px;
        font-size: 18px;
    }
}
