/* ===========================
   Global Styles
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #003A70;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --blue-light: #E3F2FD;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Navigation
   =========================== */

.navbar {
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
    overflow: visible;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--secondary-color);
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.logo-image {
    height: 120px;
    width: auto;
    max-width: 400px;
    transform: scale(1.06);
    transform-origin: left center;
}

.efficiency-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-top: -5px;
}

.logo-image-large {
    height: 160px;
    width: auto;
    max-width: 450px;
    margin-bottom: 1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-login {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    pointer-events: auto;
    opacity: 1;
    text-decoration: none;
    display: inline-block;
    transform: scale(1.06);
}

.btn-login:hover {
    background-color: #E55A1F !important;
    color: var(--white) !important;
    text-decoration: none;
    transform: scale(1.08);
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #E55A1F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 700;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #004A8F 100%);
    color: var(--white);
    padding: 5rem 0;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.28) 0, rgba(255, 255, 255, 0) 240px),
        radial-gradient(circle at 84% 28%, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0) 260px),
        radial-gradient(circle at 68% 82%, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0) 300px),
        repeating-linear-gradient(
            -35deg,
            rgba(255, 255, 255, 0.06) 0,
            rgba(255, 255, 255, 0.06) 2px,
            rgba(255, 255, 255, 0) 2px,
            rgba(255, 255, 255, 0) 16px
        );
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FF6B35, var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-industries {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-testimonial {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
}

.hero-testimonial .testimonial-quote {
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.9;
    border-left-color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-testimonial .testimonial-author {
    text-align: left;
    padding-left: 2rem;
}

.hero-testimonial .author-name {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.hero-testimonial .author-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===========================
   Testimonial Section
   =========================== */

.testimonial {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--blue-light) 0%, rgba(227, 242, 253, 0.7) 100%);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    scroll-margin-top: 120px;
}

#features {
    scroll-margin-top: 120px;
}

#how-it-works {
    scroll-margin-top: 120px;
}

#footer {
    scroll-margin-top: 120px;
}

#policies {
    scroll-margin-top: 120px;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    border-left: 5px solid var(--primary-color);
    padding-left: 2rem;
    text-align: left;
}

.testimonial-author {
    text-align: left;
    padding-left: 2rem;
}

.author-name {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
}

.author-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

/* ===========================
   Features Section
   =========================== */

.features {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.crew-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.crew-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.crew-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.crew-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 0;
}

.crew-assignments {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 58, 112, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===========================
   How It Works Section
   =========================== */

.how-it-works {
    padding: 5rem 0;
    background-color: var(--white);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.step {
    flex: 1;
    min-width: 200px;
    background-color: var(--blue-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: scale(1.05);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    display: none;
}

@media (min-width: 768px) {
    .step-arrow {
        display: block;
    }
}

/* ===========================
   Screenshots Section
   =========================== */

.screenshots {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--blue-light) 0%, rgba(227, 242, 253, 0.5) 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.screenshot-frame {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 58, 112, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.screenshot-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 58, 112, 0.25);
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid var(--border-color);
}

.screenshot-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
}

.screenshot-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-highlight {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.features-highlight h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.highlight-item p {
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   CTA Section
   =========================== */

.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #E55A1F 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--secondary-color);
}

.cta .btn-primary:hover {
    background-color: var(--light-bg);
    color: var(--secondary-color);
}

/* ===========================
   Footer
   =========================== */

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #B0B0B0;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #B0B0B0;
}

/* ===========================
   Login Page
   =========================== */

.login-page {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #004A8F 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-container {
    width: 100%;
    max-width: 450px;
}

.login-box {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 3rem;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-icon-large {
    margin-bottom: 1rem;
}

.login-logo h1 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin: 0;
    letter-spacing: 2px;
}

.login-form h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.login-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-remember {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.form-remember input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-remember label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.login-links {
    text-align: center;
    margin-top: 1.5rem;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #E55A1F;
    text-decoration: underline;
}

.error-message {
    background-color: #FFEBEE;
    color: #C62828;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
    border-left: 4px solid #C62828;
}

.success-message {
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
    border-left: 4px solid #2E7D32;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.login-footer p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #E55A1F;
}

.back-home {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .logo-image {
        height: 92px;
        max-width: 300px;
        transform: none;
    }

    .nav-links {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-login {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        transform: none;
    }

    .btn-login:hover {
        transform: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-graphic {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .login-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .navbar-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-image {
        height: 78px;
        max-width: 250px;
    }

    .nav-links {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0.4rem;
    }

    .nav-links a {
        display: inline-block;
        padding: 0.35rem 0.5rem;
        font-size: 0.85rem;
    }

    .btn-login {
        padding: 0.35rem 0.8rem;
        font-size: 0.82rem;
    }

    .login-box {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* ===========================
   Image Lightbox
   =========================== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-caption {
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-size: 18px;
    max-width: 700px;
}

/* ===========================
   Contact Modal
   =========================== */

.contact-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.contact-modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-modal-content h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.contact-modal-close:hover {
    color: var(--primary-color);
}

.contact-modal .form-group {
    margin-bottom: 20px;
}

.contact-modal .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-modal .form-group input,
.contact-modal .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-modal .form-group input:focus,
.contact-modal .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-modal .form-group textarea {
    resize: vertical;
}

.contact-modal .submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-modal .submit-btn:hover {
    background-color: #e55a2b;
}

.email-link {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--secondary-color);
}

.screenshot-frame img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-frame img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        padding: 15px;
    }
}

