    :root {
    --primary-color: #403663;
    --accent-color: #F08802;
    --text-color: #343a40;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 77px; 
}


html {
    scroll-behavior: smooth;
}

/* Header */
.navbar {
    transition: padding 0.3s ease;
    /* padding: 1.5rem 0; */
}
.navbar-brand img {
    max-height: 70px;
}
.navbar .nav-link {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0.5rem;
    transition: color 0.3s;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--accent-color);
}
.navbar .btn-primary {
    padding: 0.5rem 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('assets/physiotherapy\ \(1\).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 90px); 
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 54, 99, 0.85) 0%, rgba(45, 38, 84, 0.75) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: var(--white);
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Rating */
.hero-rating {
    margin-bottom: 2rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--accent-color);
    font-size: 1rem;
}

.rating-text {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-content {
    color: var(--white);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    line-height: 1.2;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Form Container */
.form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    margin-left: auto;
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* Modal Form */
.modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
}
.modal-header {
    background-color: var(--primary-color);
    color: var(--white);
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    border-bottom: none;
    padding: 1.5rem 2rem;
}
.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}
.modal-title {
    font-weight: 700;
}
.modal-body {
    padding: 2rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    margin-bottom: 0;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(64, 54, 99, 0.25);
    outline: none;
}


/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    padding: 0.75rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: #342a56;
    border-color: #342a56;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-accent:hover {
    background: #d97602;
    border-color: #d97602;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
.section-padding {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-content-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-content-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}


/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.feature-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Modern Conditions Section */
.condition-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #ff9f43);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(240, 136, 2, 0.3);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.condition-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(64, 54, 99, 0.1);
}

.condition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), #ff9f43);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.condition-item:hover::before {
    transform: scaleX(1);
}

.condition-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.condition-header {
    background: linear-gradient(135deg, var(--primary-color), #2d2654);
    padding: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.condition-number {
    font-size: 35px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.condition-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.condition-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
}

.condition-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.condition-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 54, 99, 0.1), rgba(240, 136, 2, 0.1));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.condition-item:hover .condition-image::before {
    opacity: 0.3;
}

.condition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.condition-item:hover .condition-image img {
    transform: scale(1.1);
}

.condition-body {
    padding: 2rem;
}

.condition-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.condition-symptoms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.symptom-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.symptom-tag:hover {
    background: linear-gradient(135deg, var(--accent-color), #ff9f43);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 136, 2, 0.3);
}

.condition-alert {
    background: linear-gradient(135deg, rgba(240, 136, 2, 0.1), rgba(255, 159, 67, 0.1));
    border: 1px solid rgba(240, 136, 2, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.condition-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), #ff9f43);
}

.alert-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.condition-alert p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #5d4a1a;
    line-height: 1.5;
}

.condition-alert strong {
    color: var(--accent-color);
}

.condition-whatsapp {
    margin-top: 1.5rem;
    text-align: center;
}

.condition-whatsapp .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(240, 136, 2, 0.2);
}

        .condition-whatsapp .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(240, 136, 2, 0.3);
            background-color: #39305D;
            color: white;
        }

/* Conditions CTA */
.conditions-cta {
    background: linear-gradient(135deg, var(--primary-color), #2d2654);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.conditions-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.conditions-cta h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.conditions-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.conditions-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.conditions-cta .btn-outline-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.conditions-cta .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-gray);
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(57, 48, 93, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-image-container {
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#lightboxCaption {
    font-weight: 600;
}

#lightboxCounter {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Background Sections */
.bg-light {
    background-color: var(--light-gray) !important;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), #2d2654) !important;
}

/* Final CTA Section */
.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color:#2A2C2D;
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem 0;
}
.footer-brand img {
    max-height: 110px;
    /* margin-bottom: 1.5rem; */
}
.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer p {
    color: rgba(255, 255, 255, 0.7);
}
.footer .list-unstyled li {
    margin-bottom: 0.75rem;
}
.footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer .list-unstyled a:hover {
    color: var(--white);
    padding-left: 5px;
}
.footer .social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}
.footer .social-icons a:hover {
    color: var(--accent-color);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}
.footer .form-label {
    color: var(--light-gray);
}
.footer .contact-form .form-control {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}
.footer .contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}
.footer .contact-form .form-control:focus {
    background-color: rgba(255,255,255,0.2);
    border-color: var(--accent-color);
    color: var(--white);
}
.footer {
    color: rgba(255,255,255,0.5);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 82px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons, .hero-stats {
        justify-content: center;
    }
    .form-container {
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;
    }
    .footer .text-md-start {
        text-align: center !important;
    }
    .footer .mb-4 {
        margin-bottom: 3rem !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-padding {
        padding: 4rem 0;
    }
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
    .form-container {
        padding: 2rem 1.5rem;
        margin: 2rem 0 0 0;
        max-width: none;
    }
    .feature-card, .condition-item {
        padding: 2rem 1.5rem;
    }
    .conditions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    .condition-header {
        padding: 1.5rem;
    }
    .condition-body {
        padding: 1.5rem;
    }
    .condition-image {
        height: 180px;
    }
    .cta-title {
        font-size: 1.8rem;
    }
    .cta-subtitle {
        font-size: 1.1rem;
    }
    .hero-stats {
        gap: 1rem;
    }
    .stat-item {
        gap: 0.75rem;
    }
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    .condition-item {
        margin-bottom: 1rem;
    }
    .condition-body h3 {
        font-size: 1.3rem;
    }
    .condition-number {
        font-size: 2.5rem;
    }
    .conditions-cta {
        padding: 2rem;
    }
    .conditions-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .form-container, .feature-card, .condition-item {
        padding: 1.5rem 1rem;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .feature-content h4 {
        font-size: 1.2rem;
    }
    .condition-body h3 {
        font-size: 1.2rem;
    }
    .condition-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .condition-icon-wrapper i {
        font-size: 1.2rem;
    }
    .condition-number {
        font-size: 2rem;
    }
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .conditions-cta {
        padding: 1.5rem;
    }
    .conditions-cta h3 {
        font-size: 1.4rem;
    }
    .conditions-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .condition-image {
        height: 160px;
    }
    
    /* Gallery Responsive */
    .gallery-image {
        height: 200px;
    }
    
    .lightbox-nav {
        padding: 10px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: -40px;
    }
    
    .lightbox-next {
        right: -40px;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
    }
    
    .lightbox-caption {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        height: 180px;
    }
    
    .lightbox-nav {
        padding: 8px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: -30px;
    }
    
    .lightbox-next {
        right: -30px;
    }
    
    .lightbox-close {
        top: -35px;
        font-size: 1.3rem;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
    }
    
    .gallery-overlay i {
        font-size: 1.5rem;
    }
}

