
:root {
    --primary: #1a3a6e;
    --secondary: #e8b923;
    --accent: #2a623d;
    --light: #f5f5f5;
    --dark: #222;
    --text-light: #fff;
    --text-dark: #333;
    --bg-light: #fff;
    --bg-dark: #f0f0f0;
    --transition: all 0.4s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}


header {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.logo span {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-light);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 1.5rem;
    position: relative;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

nav a.active {
    color: var(--secondary);
    font-weight: 600;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

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


main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Footer (All Pages) */
footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 3rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

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

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-section p {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0,0,0,0.2);
    margin-top: 2rem;
}


.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/campus.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232, 185, 35, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 185, 35, 0.4);
}

.highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.highlight-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.highlight-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}


.page-header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-light);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.about-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.about-item:nth-child(even) {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.hover-rotate:hover {
    transform: rotate(1deg) scale(1.02);
}

.about-content {
    flex: 1;
    padding: 1rem;
}

.mission-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.stat-item {
    background: var(--primary);
    color: var(--text-light);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    box-shadow: 0 5px 15px rgba(26, 58, 110, 0.3);
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.values-section {
    background: var(--bg-dark);
    padding: 4rem 2rem;
    text-align: center;
}

.values-section h2 {
    margin-bottom: 3rem;
    color: var(--primary);
}

.values-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.rotate-3d:hover {
    transform: perspective(500px) rotateY(10deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}


.creators-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--text-light);
}

.creators-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.creators-section h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--secondary);
    bottom: -10px;
    left: 25%;
}

.creators-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.creator-card {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    position: relative;
}

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

.creator-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.creator-card:hover .creator-image img {
    transform: scale(1.1);
}

.creator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 110, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.creator-card:hover .creator-overlay {
    opacity: 1;
}

.creator-overlay p {
    padding: 1rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
}

.creator-info {
    padding: 1.5rem;
    text-align: center;
}

.creator-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.creator-info p {
    color: var(--text-dark);
    font-size: 0.9rem;
}


.academics-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.programs-tabs {
    margin-bottom: 3rem;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background: var(--bg-dark);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-button.active {
    background: var(--primary);
    color: var(--text-light);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.program-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.program-item h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.program-item i {
    color: var(--secondary);
}

.courses {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.course-card {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.course-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.academic-calendar {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.academic-calendar h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--bg-dark);
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.event-item:hover {
    transform: translateX(5px);
}

.event-date {
    background: var(--primary);
    color: var(--text-light);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
}

.event-date .month {
    font-size: 0.9rem;
    display: block;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}


.places-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.place-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.place-item:nth-child(even) {
    flex-direction: row-reverse;
}

.place-image {
    flex: 1;
    min-height: 300px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.place-content {
    flex: 1;
    padding: 2rem;
}

.place-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.place-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.apply-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.apply-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    background: var(--primary);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.apply-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.apply-form h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 58, 110, 0.1);
}

.apply-dates h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.date-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.date-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.date-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}


.contact-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 0.3rem;
}

.info-item h3 {
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-map {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    grid-column: 1 / -1;
}

.contact-map h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 185, 35, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


.slide-in {
    animation: slideIn 1s ease-out;
}

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

.fade-in {
    animation: fadeIn 1.5s ease-out;
}

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

.text-pop {
    animation: textPop 1s ease-out;
}

@keyframes textPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.text-focus-in {
    animation: textFocusIn 1s ease-out;
}

@keyframes textFocusIn {
    0% {
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

.heartbeat {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.rotate-in {
    animation: rotateIn 1s ease-out;
}

@keyframes rotateIn {
    from {
        transform: rotate(-10deg) translateY(50px);
        opacity: 0;
    }
    to {
        transform: rotate(0) translateY(0);
        opacity: 1;
    }
}


.bounce-in {
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    60% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hover-zoom {
    transition: var(--transition);
}

.hover-zoom:hover {
    transform: scale(1.1);
}

.underline-animation {
    display: inline-block;
    position: relative;
}

.underline-animation::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: var(--transition);
}

.underline-animation:hover::after {
    width: 100%;
}


.float-up {
    animation: floatUp 1s ease-out;
}

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

.hover-glow {
    transition: var(--transition);
}

.hover-glow:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(232, 185, 35, 0.6);
}

.slide-overlay {
    animation: slideOverlay 1.5s ease-out forwards;
}

@keyframes slideOverlay {
    to {
        transform: translateX(0);
    }
}

.fade-in-list li {
    animation: fadeInList 0.5s ease-out forwards;
}

@keyframes fadeInList {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-list li:nth-child(1) {
    animation-delay: 0.3s;
}

.fade-in-list li:nth-child(2) {
    animation-delay: 0.6s;
}

.fade-in-list li:nth-child(3) {
    animation-delay: 0.9s;
}


.footer-animation {
    animation: fadeInUp 1s ease-out;
}

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

.swing-in {
    animation: swingIn 1s ease-out;
}

@keyframes swingIn {
    0% {
        transform: rotate(-5deg);
        opacity: 0;
    }
    50% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0);
        opacity: 1;
    }
}

.flip-in {
    animation: flipIn 1s ease-out;
}

@keyframes flipIn {
    from {
        transform: rotateX(90deg);
        opacity: 0;
    }
    to {
        transform: rotateX(0);
        opacity: 1;
    }
}


.shake {
    animation: shake 0.5s ease-in-out infinite alternate;
}

@keyframes shake {
    from {
        transform: translateX(-5px);
    }
    to {
        transform: translateX(5px);
    }
}


.form-animate {
    animation: formFadeIn 1s ease-out;
}

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

.fade-in-step {
    animation: fadeInStep 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInStep {
    to {
        opacity: 1;
    }
}

.fade-in-step:nth-child(1) {
    animation-delay: 0.3s;
}

.fade-in-step:nth-child(2) {
    animation-delay: 0.6s;
}

.fade-in-step:nth-child(3) {
    animation-delay: 0.9s;
}

.fade-in-step:nth-child(4) {
    animation-delay: 1.2s;
}

.fade-in-step:nth-child(5) {
    animation-delay: 1.5s;
}

.float-left {
    animation: floatLeft 1s ease-out;
}

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

.float-right {
    animation: floatRight 1s ease-out;
}

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


@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
        position: relative;
    }

    .logo {
        margin-bottom: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav li {
        margin: 0.5rem 0;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        width: 100%;
        max-width: 350px;
    }

    .place-item,
    .place-item:nth-child(even) {
        flex-direction: column;
    }

    .place-image {
        width: 100%;
    }

    .faculty-container {
        grid-template-columns: 1fr;
    }

    .about-item,
    .about-item:nth-child(even) {
        flex-direction: column;
    }

    .error-container {
        flex-direction: column;
    }

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

    .error-buttons {
        justify-content: center;
    }

    .creator-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .place-content h2,
    .faculty-content h2 {
        font-size: 1.5rem;
    }

    .mission-stats {
        flex-direction: column;
    }

    .date-cards {
        flex-direction: column;
    }

    .error-content h1 {
        font-size: 3.5rem;
    }

    .error-content h2 {
        font-size: 1.8rem;
    }

    .error-buttons {
        flex-direction: column;
    }
}

.creators-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--text-light);
}

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

.creators-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.creators-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.creators-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.creator-card {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

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

.creator-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.creator-card:hover .creator-image img {
    transform: scale(1.1);
}

.creator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 110, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.creator-card:hover .creator-overlay {
    opacity: 1;
}

.creator-overlay p {
    padding: 1rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
}

.creator-info {
    padding: 1.5rem;
    text-align: center;
}

.creator-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.creator-info p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0;
}


@media (max-width: 768px) {
    .creators-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .creator-card {
        width: 100%;
        max-width: 350px;
    }
}