/*
Theme Name: Geeta Public School Theme
Description: Custom theme with integrated Admit Card System.
Author: Your Name
Version: 1.0
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: #f8f9fa;
}

/* Subtle Animated Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 400% 400%;
    animation: gradient-shift 20s ease infinite;
    opacity: 0.05;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.top-bar {
    background: rgba(0,0,0,0.2);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9em;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: bold;
    color: #3498db;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: gentle-pulse 3s ease-in-out infinite;
    /* Added to contain the image */
    overflow: hidden; 
}

/* Add this to handle the logo image scaling */
.logo img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; 'contain' is usually better for logos to prevent cropping */
    padding: 0px; /* Adds a little breathing room inside the white box */
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.school-name h1 {
    font-size: 1.8em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.school-name p {
    font-size: 0.9em;
    opacity: 0.95;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 10px 18px;
    border-radius: 8px;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 8px;
}

/* Hero Section */
.hero {
    margin-top: 140px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Update this existing rule */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px; /* Increased to fit text and image */
    margin: 100px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left; /* Changed from center to left for the layout */
    gap: 40px;
}

/* Add this new rule */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image img {
    max-width: 400px; /* Adjust size of the student here */
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* Adjust mobile view so image goes below text on small screens */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-image img {
        max-width: 280px;
    }
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.2s both;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start; /* Changed from center */
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Ensure buttons center again on mobile */
@media (max-width: 768px) {
    .cta-buttons {
        justify-content: center;
    }
}

.btn {
    padding: 16px 38px;
    border: none;
    border-radius: 50px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

.btn-secondary {
    background: white;
    color: #2c3e50;
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: #f8f9fa;
}

/* Floating shapes in hero */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float-smooth 20s infinite ease-in-out;
}

.shape:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { width: 120px; height: 120px; top: 60%; right: 10%; animation-delay: 2s; }
.shape:nth-child(3) { width: 100px; height: 100px; bottom: 15%; left: 15%; animation-delay: 4s; }

@keyframes float-smooth {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 60px 5%;
    max-width: 1400px;
    margin: -50px auto 0;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid #3498db;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-card .number {
    font-size: 2.5em;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-card .label {
    color: #666;
    font-size: 1.1em;
    font-weight: 600;
}

/* Principal & Manager Messages */
.messages-section {
    padding: 80px 5%;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.1em;
    margin-top: 20px;
}

.messages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.message-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.message-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.message-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: white;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.message-info h3 {
    font-size: 1.6em;
    color: #2c3e50;
    margin-bottom: 5px;
}

.message-info .designation {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1em;
}

.message-content {
    color: #555;
    line-height: 1.9;
    font-size: 1.05em;
    text-align: justify;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #3498db;
}

.message-content::before {
    content: '"';
    font-size: 4em;
    position: absolute;
    top: -20px;
    left: -10px;
    color: #3498db;
    opacity: 0.3;
}

/* About Section */
.about-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 2em;
}

.about-text p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.highlight-item .icon {
    font-size: 1.5em;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5em;
    color: white;
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.3);
}

/* Achievements Section */
.achievements {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.achievement-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid #27ae60;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.achievement-card .icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    animation: trophy-bounce 2s infinite;
}

@keyframes trophy-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.achievement-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.achievement-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Grid */
.features {
    padding: 80px 5%;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
}

.feature-card .icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.2em;
}

.author-info .relation {
    opacity: 0.9;
    font-size: 0.95em;
}

/* Gallery Section */
.gallery {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: white;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transition: bottom 0.3s;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

/* Admission Section */
.admission {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.admission-content {
    max-width: 900px;
    margin: 0 auto;
}

.admission h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.admission p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.7;
}

.admission-form {
    background: white;
    padding: 45px;
    border-radius: 20px;
    margin-top: 40px;
    color: #333;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 22px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 45px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.3);
}

.contact-info h3 {
    font-size: 2em;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-item .icon {
    font-size: 1.8em;
    margin-top: 3px;
}

.contact-item div h4 {
    margin-bottom: 5px;
    font-size: 1.15em;
}

.contact-item div p {
    opacity: 0.95;
    line-height: 1.6;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: #adb5bd;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 5% 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 45px;
    max-width: 1400px;
    margin: 0 auto 35px;
}

.footer-section h3 {
    margin-bottom: 22px;
    font-size: 1.4em;
    color: #3498db;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    line-height: 1.9;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #3498db;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.3em;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.6em;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: #2c3e50;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Fluid & Smooth Responsive Design --- */

/* 1. Global Scaling - Ensures no horizontal overflow */
img, iframe, .about-image-placeholder {
    max-width: 100%;
    height: auto;
}

/* 2. Responsive Breakpoints */
/* --- Final Smooth & Centered Responsive Design --- */

@media (max-width: 768px) {
    /* 1. Navigation Sidebar Smooth Transition */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        flex-direction: column;
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        width: 80%;
        height: 100vh;
        padding: 100px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    /* 2. Centering the Principal Message Section */
    .messages-grid {
        grid-template-columns: 1fr;
        display: flex;
        justify-content: center;
    }

    .message-card {
        text-align: center; /* Centers the italic text */
        max-width: 100%;
    }

    .message-header {
        flex-direction: column; /* Stacks photo on top of name */
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .message-content {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid #3498db; /* Moves the blue line to the top for center look */
        padding-top: 20px;
        margin-top: 10px;
    }

    .message-content::before {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }

    /* 3. Centering the Contact Info Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        flex-direction: column; /* Stacks icon on top of text */
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    /* 4. General Centering & Scaling */
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .cta-buttons {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Fix for Stat Cards */
    .quick-stats {
        grid-template-columns: 1fr;
        margin-top: 20px;
        padding: 20px 10%;
    }
    
    /* Ensure School/About Images fit */
    /* Fix for the About Image Placeholder on Mobile */
    @media (max-width: 768px) {
    /* About Section Grid Fix */
    .mobile-menu-btn {
        display: block; /* Shows the button on phones */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen to the right */
        flex-direction: column;
        background: #2c3e50; /* Solid dark color for contrast */
        width: 75%;
        height: 100vh;
        padding: 100px 30px;
        transition: 0.4s ease-in-out;
        z-index: 1001;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    /* This class is added by JavaScript when you click the button */
    .nav-links.active {
        right: 0; 
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    .about-content {
        display: flex;
        flex-direction: column; /* Stacks image and text vertically */
        gap: 30px;
        padding: 0;
    }

    .about-image {
        order: -1; /* Moves the school photo to the top of the section */
        width: 100%;
    }

    .about-image-placeholder {
        height: auto !important;
        width: 100% !important;
        background: transparent !important;
        padding: 0 !important;
        display: flex;
        justify-content: center;
    }

    /* This forces the image to be responsive and removes the 600px restriction */
    .about-image-placeholder img {
        width: 100% !important; 
        max-width: 100% !important;
        height: auto !important;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .about-text {
        text-align: center;
    }

    .about-highlights {
        grid-template-columns: 1fr; /* Single column for checkmarks */
        text-align: left;
        display: inline-block; /* Keeps them neat in the center */
        width: 100%;
    }
    
    .highlight-item {
        margin-bottom: 10px;
    }
}
}
