/* Custom Properties for Colors (easy to change later) */
:root {
    --primary-red: #E04E5F;
    --primary-red-dark: #C93040;
    --primary-red-light: #FCE8EB;
    --secondary-blue: #2c3e50;
    --secondary-blue-dark: #202d3a;
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #ecf0f1;
    --background-light: #f9f9f9;
    --background-white: #fff;
    --border-grey: #ddd;
    --box-shadow-light: rgba(0, 0, 0, 0.08);
    --box-shadow-medium: rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(45deg, var(--primary-red), #e67e22);
}

/* Basic Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky nav */
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-red);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-red-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-blue);
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader {
    border: 8px solid var(--primary-red-light);
    border-top: 8px solid var(--primary-red);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Buttons Base Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
}
.btn-primary {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}
.btn-primary:hover {
    background-color: var(--primary-red-dark);
    color: #fff;
    border-color: var(--primary-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    
}
.btn-secondary {
    background-color: transparent;
    color: var(--secondary-blue);
    border-color: var(--border-grey);
}
.btn-secondary:hover {
    background-color: var(--secondary-blue);
    color: #fff;
    border-color: var(--secondary-blue);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-blue);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar .contact-info span {
    margin-right: 20px;
    opacity: 0.8;
}
.top-bar .contact-info span i {
    margin-right: 8px;
    color: var(--primary-red);
}
.top-bar .social-icons a {
    color: #fff;
    margin-left: 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.top-bar .social-icons a:hover {
    opacity: 1;
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: var(--background-white);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: top 0.3s;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 80px; width: auto; }
.nav-links { display: flex; align-items: center; }
.nav-links li { margin-left: 35px; }
.nav-links li a { color: var(--secondary-blue); font-weight: 600; padding: 5px 0; position: relative; font-size: 15px; }
.nav-links li a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0;
    height: 3px; background: var(--gradient); transition: width 0.3s ease;
}
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }
.nav-buttons { display: flex; align-items: center; gap: 15px; }
.mobile-menu-toggle { display: none; font-size: 24px; color: var(--secondary-blue); cursor: pointer;}


/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--secondary-blue);
    z-index: 1001;
    padding: 80px 30px 30px 30px;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
    position: absolute; top: 25px; right: 25px;
    font-size: 28px; color: #fff; cursor: pointer;
}
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin-bottom: 15px; }
.mobile-nav li a { color: #fff; font-size: 18px; font-weight: 600; text-decoration: none; padding: 10px 0; display: block; }
.mobile-nav li a:hover { color: var(--primary-red); }
.mobile-nav-buttons { display: flex; flex-direction: column; gap: 15px; margin-top: 20px;}
.mobile-nav-buttons .btn { width: 100%; text-align: center;}


/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.slider-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoom-in 20s linear infinite;
}
@keyframes zoom-in {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
}
.hero-content {
    position: relative; z-index: 10;
    color: #fff; text-align: left;
}
.hero-text-box { max-width: 650px; }
.hero-text-box.animate-on-load {
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: both;
}
.hero-text-box h2 {
    font-size: 56px; margin-bottom: 20px; line-height: 1.2; font-weight: 800;
    color: #fff; text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero-text-box p {
    font-size: 18px; margin-bottom: 35px; line-height: 1.6;
    color: var(--text-light); max-width: 550px;
}
.read-more-btn { padding: 14px 32px; font-size: 15px; }

/* Swiper Controls */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 20px; }
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    width: 12px; height: 12px; opacity: 0.8;
}
.swiper-pagination-bullet-active {
    background: var(--primary-red);
}

/* Skewed Shape Divider */
.shape-divider {
    position: relative;
    height: 10vh;
    width: 100%;
    background: var(--background-light);
}
.shape-divider::before {
    content: '';
    position: absolute;
    top: -10vh;
    left: 0;
    width: 100%;
    height: 10vh;
    background: var(--background-light);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    margin-top: -10vh;
    position: relative;
    z-index: 20;
}
.features-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}
.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.feature-box .icon-circle {
    background: var(--gradient);
    color: #fff;
    width: 80px; height: 80px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 36px; margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(224, 78, 95, 0.4);
}
.feature-box h3 { font-size: 22px; }
.feature-box p { font-size: 15px; color: var(--text-medium); }


/* Section Common Styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}
.section-title .subtitle {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 10px auto 0;
}


/* What We Do Section */
.what-we-do-section {
    padding: 100px 0;
}
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}
.what-we-do-item {
    background: var(--background-white);
    padding: 35px; border-radius: 8px;
    box-shadow: 0 6px 20px var(--box-shadow-light);
    text-align: center;
    border-top: 4px solid var(--primary-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.what-we-do-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--box-shadow-medium);
}
.what-we-do-item .icon-circle {
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    width: 70px; height: 70px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 32px; margin: 0 auto 25px;
    transition: all 0.3s ease;
}
.what-we-do-item:hover .icon-circle {
    background: var(--gradient);
    color: #fff;
    transform: rotateY(360deg);
}
.what-we-do-item h3 { font-size: 22px; }
.what-we-do-item p { font-size: 15px; color: var(--text-medium); }

.main-projects-title {
    font-size: 24px; color: var(--secondary-blue);
    text-align: center; font-weight: 700;
    margin-bottom: 30px;
}
.main-projects-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
}
.main-projects-list li {
    background-color: var(--background-white);
    padding: 12px 20px;
    border-left: 4px solid var(--primary-red);
    border-radius: 4px;
    font-size: 15px;
    color: var(--text-medium);
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    font-weight: 600;
}
.main-projects-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    color: var(--primary-red-dark);
}



/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--background-white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 32px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.gallery-overlay h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}
.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}


/* Parallax CTA Banner */
.parallax-section {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
    z-index: 1;
}
.parallax-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(44, 62, 80, 0.7);
    z-index: -1;
}
.parallax-section .background-shape {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 80%;
    background: var(--gradient);
    opacity: 0.1;
    clip-path: polygon(0 100%, 100% 20%, 100% 100%);
    z-index: -1;
}
.parallax-section h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 800;
}
.parallax-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 15px auto 30px;
    opacity: 0.9;
}
.btn-cta { margin: 0 10px; }


/* Timeline Section */
.timeline-section {
    padding: 100px 0;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-red-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--primary-red);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.timeline-date {
    position: absolute;
    top: 22px;
    width: 100px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
    z-index: 1;
}
.timeline-item:nth-child(odd) { padding-left: 0; padding-right: 80px; text-align: right; }
.timeline-item:nth-child(odd) .timeline-date { right: -130px; }
.timeline-item:nth-child(even) { padding-right: 0; padding-left: 80px; text-align: left;}
.timeline-item:nth-child(even) .timeline-date { left: -130px; }
.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}
.timeline-content h3 { font-size: 20px; color: var(--primary-red-dark); }
.timeline-content p { font-size: 15px; margin-bottom: 5px; }

/* Footer */
footer {
    background-color: var(--secondary-blue);
    color: var(--text-light);
    padding: 60px 0 0;
    font-size: 15px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-size: 18px; color: #fff;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-col.about .logo { display: flex; align-items: center; margin-bottom: 15px;}
.footer-col.about .logo img { background: #fff; padding: 5px; border-radius: 5px; }
.footer-col.about .logo-text h1 { color: #fff; }
.footer-col.about p { opacity: 0.7; line-height: 1.8; }
.footer-col.links ul li { margin-bottom: 10px; }
.footer-col.links a { color: rgba(255,255,255,0.7); transition: all 0.3s ease;}
.footer-col.links a:hover { color: #fff; padding-left: 5px; }
.footer-col.contact-info-footer p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
}
.footer-col.contact-info-footer i {
    color: var(--primary-red);
    margin-right: 15px;
    font-size: 16px;
    width: 20px;
}
.footer-col.contact-info-footer a { color: rgba(255,255,255,0.7); }
.footer-col.contact-info-footer a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { opacity: 0.6; margin: 0; }
.social-icons-footer a {
    color: rgba(255,255,255,0.6);
    margin-left: 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}
.social-icons-footer a:hover {
    color: var(--primary-red);
    transform: translateY(-3px);
}


/* --- FIXED: Gallery Lightbox --- */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000; /* High z-index to be on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox.show {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    position: relative;
    width: 90%;
    height: 85%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
}
#lightbox-img:active {
    cursor: grabbing;
}
/* NEW: Keyframe animation for zoom effect */
#lightbox-img.zoom-in-effect {
    animation: zoomIn 0.4s ease-in-out;
}
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0.5; }
    to { transform: scale(1); opacity: 1; }
}
.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px;
}
#lightbox-title { font-size: 18px; color: #fff; margin: 0; }
#lightbox-counter { font-size: 14px; opacity: 0.7; }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2001;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #fff;
    background: rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 8px;
    opacity: 0.7;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    z-index: 2001;
}
.lightbox-nav:hover {
    opacity: 1;
    background: rgba(0,0,0,0.5);
}
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

.lightbox-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.3);
    padding: 8px;
    border-radius: 8px;
    z-index: 2001;
}
.zoom-btn {
    font-size: 20px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}
.zoom-btn:hover { background: rgba(255,255,255,0.2); }


/* Scroll Animations */
.animated-item {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-item[data-animation="fade-up"] { transform: translateY(40px); }
.animated-item[data-animation="fade-in"] { transform: scale(0.95); }
.animated-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ---- RESPONSIVENESS ---- */
@media (max-width: 992px) {
    .nav-links, .nav-buttons { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-text-box h2 { font-size: 44px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col.about { grid-column: 1 / -1; }
    .timeline::after { left: 30px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item:nth-child(even), .timeline-item:nth-child(odd) { left: 0; text-align: left; }
    .timeline-dot { left: 20px; }
    .timeline-date {
        top: 22px; left: 70px; right: auto;
        font-size: 16px; width: auto; background: var(--background-light); padding: 2px 8px;
    }
    .timeline-content { margin-top: 35px; }
}

@media (max-width: 768px) {
    html { scroll-padding-top: 70px; }
    .navbar { padding: 12px 0; }
    .section-title h2 { font-size: 32px; }
    .top-bar .container { justify-content: center; gap: 10px; }
    .top-bar .contact-info { text-align: center; width: 100%;}
    .hero-slider { height: 80vh; min-height: 550px;}
    .hero-content { justify-content: center; text-align: center; }
    .hero-text-box { padding: 0 15px; }
    .hero-text-box h2 { font-size: 36px; }
    .hero-text-box p { font-size: 16px; margin: 0 auto 30px; }
    .swiper-button-next, .swiper-button-prev { display: none; }
    .shape-divider, .shape-divider::before { height: 8vh; top: -8vh;}
    .features-section, .gallery-section { padding: 80px 0; }
    .what-we-do-section, .timeline-section { padding: 80px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col { text-align: center; }
    .footer-col.contact-info-footer p { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; }
    .lightbox-nav { display: none; }
}

@media (max-width: 480px) {
    .mobile-nav { width: 100%; }
    .hero-text-box h2 { font-size: 30px; }
    .btn { padding: 10px 20px; font-size: 13px; }
    .section-title h2 { font-size: 28px; }
    .timeline::after { left: 20px; }
    .timeline-item { padding-left: 50px; padding-right: 10px; }
    .timeline-dot { left: 10px; }
    .timeline-date { left: 50px; }
    .timeline-content { padding: 15px 20px; }
    .lightbox-controls { bottom: 10px; }
    .lightbox-caption { bottom: 60px; }
}
