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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding-top: 0;
}

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

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.9;
    text-align: left;
    margin-bottom: 20px;
}

.hero-subtitle:last-child {
    margin-bottom: 0;
}

.hero-subtitle strong {
    color: #667eea;
    font-weight: 600;
}

/* Section Styling */
.pillars-intro {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Scholar Cards */
.scholar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.scholar-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.scholar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 20px 20px 0 0;
}

.scholar-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.25);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.scholar-letter {
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
    margin-right: 5px;
}

.scholar-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 18px;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
}

.scholar-description {
    font-family: 'Nunito', sans-serif;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 16px;
}

.pillar-impact {
    background: linear-gradient(135deg, #f0f4ff, #e6edfe);
    border-left: 3px solid #667eea;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4a5568;
    margin-top: 16px;
}

.pillar-impact strong {
    color: #667eea;
    font-weight: 600;
}

/* Vision Section */
.vision-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 45px;
    margin-bottom: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.vision-text {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: left;
}

.vision-text:last-child {
    margin-bottom: 0;
}

/* Tools Showcase */
.tools-showcase {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
    z-index: 10;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.tool-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px 25px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

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

.tool-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tool-card p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* Mind Gym Dropdown Styles */
.mind-gym-dropdown-container {
    position: relative;
    overflow: visible;
}

.mind-gym-dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% - 5px);
    left: 10px;
    right: 10px;
    z-index: 9999;
    padding: 15px 10px 10px 10px;
    background: rgba(102, 126, 234, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    pointer-events: none;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.mind-gym-dropdown-container:hover .mind-gym-dropdown-menu,
.mind-gym-dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    animation: slideDown 0.3s ease-out;
}

.dropdown-game-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
}

.dropdown-game-link:last-child {
    margin-bottom: 0;
}

.dropdown-game-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

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

/* Closing Section */
.closing-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 45px;
    margin-bottom: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.closing-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #4a5568;
    line-height: 1.8;
    border-left: 5px solid #667eea;
    padding-left: 30px;
    margin-bottom: 40px;
    font-weight: 500;
}

.signature-block {
    text-align: right;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.signature-title {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
}

.cta-heading {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f7fafc;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 8%;
    animation-delay: 8s;
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 35%;
    left: 85%;
    animation-delay: 16s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(0px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(30px) rotate(270deg);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px 15px 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 40px 30px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        text-align: center;
    }

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

    .pillars-intro {
        padding: 30px 25px;
    }
    
    .scholar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .scholar-card {
        padding: 30px 25px;
    }
    
    .scholar-letter {
        font-size: 2.8rem;
    }
    
    .scholar-title {
        font-size: 1.6rem;
    }

    .vision-section {
        padding: 35px 30px;
    }

    .vision-text {
        font-size: 1.05rem;
    }

    .tools-showcase {
        padding: 35px 25px;
    }

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

    .closing-section {
        padding: 35px 30px;
    }

    .closing-quote {
        font-size: 1.2rem;
        padding-left: 20px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .cta-heading {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 30px 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.7rem;
    }

    .pillars-intro {
        padding: 25px 20px;
    }

    .scholar-card {
        padding: 25px 20px;
    }

    .card-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .scholar-letter {
        font-size: 2.5rem;
    }

    .scholar-title {
        font-size: 1.4rem;
    }

    .scholar-description {
        font-size: 0.95rem;
    }

    .vision-section {
        padding: 30px 20px;
    }

    .vision-text {
        font-size: 1rem;
    }

    .tools-showcase {
        padding: 30px 20px;
    }
    
    .closing-section {
        padding: 30px 20px;
    }
    
    .closing-quote {
        font-size: 1.1rem;
        padding-left: 15px;
    }
    
    .signature {
        font-size: 2.5rem;
    }

    .cta-section {
        padding: 35px 20px;
    }

    .cta-heading {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}
