/* gallery.css - Complete CSS File */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #8B0000;
    --secondary-color: #003366;
    --accent-color: #D4AF37;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #ffffff;
    --gray-light: #e9ecef;
    --border-radius: 8px;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Section */
.header {
    min-height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(FB_IMG_17339964611578556.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Clean Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    position: relative;
    z-index: 1000;
}

nav img {
    width: 120px;
    height: auto;
    background: transparent;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-links ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-links ul li a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.nav-btn {
    background: var(--accent-color) !important;
    color: var(--text-dark) !important;
    border: 2px solid var(--accent-color);
}

.nav-btn:hover {
    background: transparent !important;
    color: var(--accent-color) !important;
}

/* Mobile Menu */
nav .fa {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Hero Section */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 50vh;
    color: var(--text-light);
    padding: 0 5%;
}

.text-box h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.text-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 5rem 5%;
}

section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
}

section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================== */
/* STUDENT SPOTLIGHT SLIDER */
/* =========================================== */
.student-spotlight {
    background: var(--text-light);
}

.student-slider {
    max-width: 1200px;
    margin: 0 auto;
}

/* Student Slides */
.student-slides-container {
    position: relative;
    min-height: 500px;
    margin-bottom: 2rem;
}

.student-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.student-slide.active {
    opacity: 1;
    pointer-events: all;
}

.student-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Student Image */
.student-image {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.student-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Student Info */
.student-info {
    padding: 2rem;
}

.student-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.student-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    background: var(--text-light);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.student-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.student-details i {
    color: var(--accent-color);
    width: 20px;
}

/* Student Achievements */
.student-achievements {
    margin-bottom: 2rem;
}

.student-achievements h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.student-achievements ul {
    list-style: none;
    padding-left: 1.5rem;
}

.student-achievements li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-dark);
}

.student-achievements li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Student Quote */
.student-quote {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.student-quote p {
    color: var(--secondary-color);
    line-height: 1.8;
}

.student-quote i.fa-quote-left {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.student-quote i.fa-quote-right {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

/* Student Slider Controls */
.student-slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.student-prev-btn, .student-next-btn {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.student-prev-btn:hover, .student-next-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.student-dots {
    display: flex;
    gap: 0.5rem;
}

.student-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.student-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Nominate Student */
.nominate-student {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    color: var(--text-light);
}

.nominate-student h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.nominate-student p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.nominate-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    max-width: 250px;
    margin: 0 auto;
}

.nominate-btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* =========================================== */
/* STUDENT ART GALLERY SECTION */
/* =========================================== */
.student-art {
    background: var(--light-bg);
}

/* Art Contact Information */
.art-contact-info {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--accent-color);
}

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

.art-contact-info > p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-option {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-icon {
    background: var(--primary-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.contact-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.contact-btn.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
}

.contact-btn.whatsapp-btn:hover {
    color: #25D366;
}

.contact-btn.phone-btn {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact-btn.phone-btn:hover {
    color: var(--secondary-color);
}

/* Art Guidelines */
.art-guidelines {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.art-guidelines h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.art-guidelines ul {
    list-style: none;
    padding-left: 1.5rem;
}

.art-guidelines li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.art-guidelines li:before {
    content: "•";
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

/* Art Gallery Grid */
.art-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.art-item {
    background: var(--text-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.art-item:hover {
    transform: translateY(-5px);
}

.art-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.art-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.art-item:hover .art-image img {
    transform: scale(1.05);
}

/* Art Status */
.art-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-end;
}

.status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.available {
    background: #4CAF50;
    color: white;
}

.status.sold {
    background: #f44336;
    color: white;
}

.status.reserved {
    background: #FF9800;
    color: white;
}

.price {
    background: var(--text-light);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.art-info {
    padding: 1.5rem;
}

.art-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.art-info p {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Art Actions */
.art-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.inquire-btn, .share-btn {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.inquire-btn {
    background: var(--accent-color);
    color: var(--text-dark);
}

.inquire-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.inquire-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.share-btn {
    background: var(--light-bg);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.share-btn:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Art Submission */
.art-submission {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.art-submission h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.art-submission > p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.submission-info h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.submission-info ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.submission-info li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.submission-info li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.submission-contact {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.submission-contact p {
    margin-bottom: 1rem;
    font-weight: 600;
}

.submission-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.submit-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.submit-btn.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
}

.submit-btn.whatsapp-btn:hover {
    color: #25D366;
}

/* =========================================== */
/* EVENT SLIDES SECTION */
/* =========================================== */
.event-slides {
    background: var(--text-light);
}

.event-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.slides-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
}

.slide-image 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.9));
    color: var(--text-light);
    padding: 2rem;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.event-date {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-date i {
    margin-right: 0.5rem;
}

.slide-content p {
    opacity: 0.9;
    max-width: 600px;
}

/* Event Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.prev-btn, .next-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* =========================================== */
/* CALL TO ACTION SECTION */
/* =========================================== */
.cta {
    background: linear-gradient(rgba(139, 0, 0, 0.9), rgba(0, 51, 102, 0.9));
    color: var(--text-light);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 5%;
}

.cta h1 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta h1::after {
    background: var(--accent-color);
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    margin-bottom: 1rem;
}

.cta-btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.cta p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* =========================================== */
/* FOOTER SECTION */
/* =========================================== */
footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 5% 1rem;
    margin-top: 4rem;
}

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

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.email {
    color: var(--accent-color);
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #ff6b6b;
}

/* =========================================== */
/* RESPONSIVE DESIGN */
/* =========================================== */
@media (max-width: 992px) {
    .student-profile {
        grid-template-columns: 1fr;
    }
    
    .student-image {
        padding: 1rem;
    }
    
    .student-image img {
        width: 200px;
        height: 200px;
    }
    
    .student-info h2 {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links ul li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links ul li a {
        display: block;
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        background: transparent;
    }
    
    nav .fa {
        display: block;
    }
    
    .text-box h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 3rem 5%;
    }
    
    section h1 {
        font-size: 2rem;
    }
    
    /* Student Slider */
    .student-slider-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .student-details {
        grid-template-columns: 1fr;
    }
    
    .student-achievements ul {
        padding-left: 1rem;
    }
    
    /* Art Gallery */
    .art-gallery {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .art-actions {
        flex-direction: column;
    }
    
    .submission-options {
        flex-direction: column;
    }
    
    .submit-btn {
        text-align: center;
        justify-content: center;
    }
    
    /* Event Slides */
    .slides-container {
        height: 400px;
    }
    
    .slider-controls {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .text-box h1 {
        font-size: 1.8rem;
    }
    
    .student-image img {
        width: 150px;
        height: 150px;
    }
    
    .student-info h2 {
        font-size: 1.8rem;
    }
    
    .student-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .contact-option {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-bottom: 0.5rem;
    }
    
    .slides-container {
        height: 350px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}/* gallery.css - Complete CSS File */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #8B0000;
    --secondary-color: #003366;
    --accent-color: #D4AF37;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #ffffff;
    --gray-light: #e9ecef;
    --border-radius: 8px;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Section */
.header {
    min-height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(FB_IMG_17339964611578556.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Clean Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    position: relative;
    z-index: 1000;
}

nav img {
    width: 120px;
    height: auto;
    background: transparent;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav-links ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-links ul li a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.nav-btn {
    background: var(--accent-color) !important;
    color: var(--text-dark) !important;
    border: 2px solid var(--accent-color);
}

.nav-btn:hover {
    background: transparent !important;
    color: var(--accent-color) !important;
}

/* Mobile Menu */
nav .fa {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* Hero Section */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 50vh;
    color: var(--text-light);
    padding: 0 5%;
}

.text-box h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.text-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 5rem 5%;
}

section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
}

section h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================== */
/* STUDENT SPOTLIGHT SLIDER */
/* =========================================== */
.student-spotlight {
    background: var(--text-light);
}

.student-slider {
    max-width: 1200px;
    margin: 0 auto;
}

/* Student Slides */
.student-slides-container {
    position: relative;
    min-height: 500px;
    margin-bottom: 2rem;
}

.student-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.student-slide.active {
    opacity: 1;
    pointer-events: all;
}

.student-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Student Image */
.student-image {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.student-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Student Info */
.student-info {
    padding: 2rem;
}

.student-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.student-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    background: var(--text-light);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.student-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.student-details i {
    color: var(--accent-color);
    width: 20px;
}

/* Student Achievements */
.student-achievements {
    margin-bottom: 2rem;
}

.student-achievements h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.student-achievements ul {
    list-style: none;
    padding-left: 1.5rem;
}

.student-achievements li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: var(--text-dark);
}

.student-achievements li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Student Quote */
.student-quote {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.student-quote p {
    color: var(--secondary-color);
    line-height: 1.8;
}

.student-quote i.fa-quote-left {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.student-quote i.fa-quote-right {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

/* Student Slider Controls */
.student-slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.student-prev-btn, .student-next-btn {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.student-prev-btn:hover, .student-next-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.student-dots {
    display: flex;
    gap: 0.5rem;
}

.student-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.student-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Nominate Student */
.nominate-student {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    color: var(--text-light);
}

.nominate-student h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.nominate-student p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.nominate-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    max-width: 250px;
    margin: 0 auto;
}

.nominate-btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* =========================================== */
/* STUDENT ART GALLERY SECTION */
/* =========================================== */
.student-art {
    background: var(--light-bg);
}

/* Art Contact Information */
.art-contact-info {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--accent-color);
}

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

.art-contact-info > p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-option {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-icon {
    background: var(--primary-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.contact-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.contact-btn.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
}

.contact-btn.whatsapp-btn:hover {
    color: #25D366;
}

.contact-btn.phone-btn {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact-btn.phone-btn:hover {
    color: var(--secondary-color);
}

/* Art Guidelines */
.art-guidelines {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.art-guidelines h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.art-guidelines ul {
    list-style: none;
    padding-left: 1.5rem;
}

.art-guidelines li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.art-guidelines li:before {
    content: "•";
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

/* Art Gallery Grid */
.art-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.art-item {
    background: var(--text-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.art-item:hover {
    transform: translateY(-5px);
}

.art-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.art-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.art-item:hover .art-image img {
    transform: scale(1.05);
}

/* Art Status */
.art-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-end;
}

.status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.available {
    background: #4CAF50;
    color: white;
}

.status.sold {
    background: #f44336;
    color: white;
}

.status.reserved {
    background: #FF9800;
    color: white;
}

.price {
    background: var(--text-light);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.art-info {
    padding: 1.5rem;
}

.art-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.art-info p {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Art Actions */
.art-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.inquire-btn, .share-btn {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.inquire-btn {
    background: var(--accent-color);
    color: var(--text-dark);
}

.inquire-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.inquire-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.share-btn {
    background: var(--light-bg);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.share-btn:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Art Submission */
.art-submission {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.art-submission h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.art-submission > p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.submission-info h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.submission-info ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.submission-info li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.submission-info li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.submission-contact {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.submission-contact p {
    margin-bottom: 1rem;
    font-weight: 600;
}

.submission-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.submit-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.submit-btn.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
}

.submit-btn.whatsapp-btn:hover {
    color: #25D366;
}

/* =========================================== */
/* EVENT SLIDES SECTION */
/* =========================================== */
.event-slides {
    background: var(--text-light);
}

.event-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.slides-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
}

.slide-image 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.9));
    color: var(--text-light);
    padding: 2rem;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.event-date {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-date i {
    margin-right: 0.5rem;
}

.slide-content p {
    opacity: 0.9;
    max-width: 600px;
}

/* Event Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.prev-btn, .next-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* =========================================== */
/* CALL TO ACTION SECTION */
/* =========================================== */
.cta {
    background: linear-gradient(rgba(139, 0, 0, 0.9), rgba(0, 51, 102, 0.9));
    color: var(--text-light);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 5%;
}

.cta h1 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta h1::after {
    background: var(--accent-color);
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    margin-bottom: 1rem;
}

.cta-btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.cta p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* =========================================== */
/* FOOTER SECTION */
/* =========================================== */
footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 5% 1rem;
    margin-top: 4rem;
}

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

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.email {
    color: var(--accent-color);
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #ff6b6b;
}

/* =========================================== */
/* RESPONSIVE DESIGN */
/* =========================================== */
@media (max-width: 992px) {
    .student-profile {
        grid-template-columns: 1fr;
    }
    
    .student-image {
        padding: 1rem;
    }
    
    .student-image img {
        width: 200px;
        height: 200px;
    }
    
    .student-info h2 {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links ul li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links ul li a {
        display: block;
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        background: transparent;
    }
    
    nav .fa {
        display: block;
    }
    
    .text-box h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 3rem 5%;
    }
    
    section h1 {
        font-size: 2rem;
    }
    
    /* Student Slider */
    .student-slider-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .student-details {
        grid-template-columns: 1fr;
    }
    
    .student-achievements ul {
        padding-left: 1rem;
    }
    
    /* Art Gallery */
    .art-gallery {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .art-actions {
        flex-direction: column;
    }
    
    .submission-options {
        flex-direction: column;
    }
    
    .submit-btn {
        text-align: center;
        justify-content: center;
    }
    
    /* Event Slides */
    .slides-container {
        height: 400px;
    }
    
    .slider-controls {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .text-box h1 {
        font-size: 1.8rem;
    }
    
    .student-image img {
        width: 150px;
        height: 150px;
    }
    
    .student-info h2 {
        font-size: 1.8rem;
    }
    
    .student-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .contact-option {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-bottom: 0.5rem;
    }
    
    .slides-container {
        height: 350px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}