/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 10002;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== IPHONE/IOS SPECIFIC OPTIMIZATIONS ===== */
/* Smooth font rendering on iOS */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

/* Fix iOS Safari viewport height issues */
.hero {
  min-height: 100vh;
  min-height: -webkit-fill-available; /* iOS Safari fix */
}

/* Improve touch scrolling on iOS */
* {
  -webkit-overflow-scrolling: touch;
}

/* Remove iOS input styling */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 5px;
}

/* Fix iOS Safari button styling */
button,
.btn {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 5px;
}

/* Prevent iOS zoom on form focus */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-size: 16px; /* Prevents zoom on iOS */
}

/* Touch-friendly tap targets */
.nav-link,
.btn,
.gallery-item {
  -webkit-tap-highlight-color: rgba(230, 126, 34, 0.2);
}

/* Remove iOS Safari bounce effect */
body {
  overscroll-behavior: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== WELCOME POPUP ===== */
.welcome-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.welcome-popup.show {
  opacity: 1;
  visibility: visible;
}

.welcome-popup-content {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.welcome-popup.show .welcome-popup-content {
  transform: scale(1);
}

.welcome-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.welcome-close-btn:hover {
  color: #333;
}

.welcome-icon {
  background: linear-gradient(135deg, #e67e22, #d35400);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.welcome-icon i {
  font-size: 2rem;
  color: white;
}

.welcome-popup h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.welcome-subtitle {
  font-size: 1.1rem;
  color: #e67e22;
  font-weight: 600;
  margin-bottom: 1rem;
}

.welcome-message {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.welcome-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.welcome-call-btn {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border: none;
  font-size: 1rem;
  padding: 12px 24px;
  animation: pulse 2s infinite;
}

.welcome-call-btn:hover {
  background: linear-gradient(135deg, #229954, #27ae60);
  transform: translateY(-2px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
  }
}

.welcome-note {
  color: #999;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.welcome-note i {
  color: #e67e22;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: #2c3e50;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #e67e22;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #e67e22;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #e67e22;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #e67e22;
  color: white;
}

.btn-primary:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #2c3e50;
  border: 2px solid #2c3e50;
}

.btn-secondary:hover {
  background-color: #2c3e50;
  color: white;
  transform: translateY(-2px);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.about-text p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature i {
  font-size: 1.5rem;
  color: #e67e22;
  margin-top: 0.2rem;
}

.feature h4 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.feature p {
  color: #666;
  margin: 0;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 4 / 3;
  background-color: #e9ecef;
}

/* Touch device optimizations */
@media (hover: hover) {
  .gallery-item:hover {
    transform: translateY(-5px);
  }

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

  .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
  }
}

/* Touch devices - show overlay on tap */
@media (hover: none) {
  .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    padding: 1rem;
  }

  .gallery-item:active {
    transform: scale(0.98);
  }
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
  opacity: 1; /* Ensure images are visible by default */
}

.gallery-img.loaded {
  opacity: 1;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

/* ===== GALLERY NAVIGATION ===== */
.gallery-container {
  position: relative;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-nav-btn {
  padding: 12px 24px;
  border: 2px solid #e67e22;
  background: transparent;
  color: #e67e22;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.gallery-nav-btn:hover,
.gallery-nav-btn.active {
  background: #e67e22;
  color: white;
  transform: translateY(-2px);
}

.gallery-section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-section.active {
  display: block;
  opacity: 1;
}

/* ===== GALLERY ARROWS ===== */
.gallery-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.gallery-arrow {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  background: rgba(230, 126, 34, 0.9);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-arrow:hover {
  background: #d35400;
  transform: scale(1.1);
}

.gallery-arrow-left {
  left: -25px;
}

.gallery-arrow-right {
  right: -25px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .gallery-arrows {
    display: none;
  }

  .gallery-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .gallery-nav-btn {
    width: 100%;
    max-width: 250px;
  }
}

/* Touch device optimizations for navigation */
@media (hover: none) {
  .gallery-nav-btn:active {
    transform: scale(0.95);
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.3rem;
  color: #e67e22;
  margin-top: 0.2rem;
}

.contact-item h4 {
  color: #2c3e50;
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e67e22;
}

.form-group textarea {
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #2c3e50;
  color: 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 h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #e67e22;
}

.footer-section p,
.footer-section li {
  color: #bdc3c7;
  margin-bottom: 0.5rem;
}

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

.footer-section i {
  margin-right: 0.5rem;
  color: #e67e22;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    /* iOS Safari safe area */
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    max-width: 90%;
    text-align: center;
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .welcome-popup-content {
    padding: 2rem;
    margin: 1rem;
  }

  .welcome-buttons {
    flex-direction: column;
    align-items: center;
  }

  .welcome-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 10px;
  }

  .gallery-item {
    margin: 0;
    aspect-ratio: 4 / 3;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .welcome-popup-content {
    padding: 1.5rem;
  }

  .welcome-icon {
    width: 60px;
    height: 60px;
  }

  .welcome-icon i {
    font-size: 1.5rem;
  }

  .welcome-popup h2 {
    font-size: 1.5rem;
  }
}

/* ===== IMAGE AUTO-SIZING STYLES ===== */
/* All images auto-resize properly without stretching */
img {
  max-width: 100%;
  height: auto;
}

/* Logo - maintains aspect ratio */
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
}

/* Gallery images - fixed container with smart cropping */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

/* About image - responsive with smart cropping */
.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

/* Ensure images never stretch beyond their containers */
.gallery-item img,
.hero-image img,
.about-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===== SUCCESS/ERROR POPUP STYLES ===== */
.success-popup,
.error-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.success-popup::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.error-popup::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.success-popup.show,
.error-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.success-popup.hide,
.error-popup.hide {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

.popup-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.success-popup .popup-content i {
  color: #27ae60;
}

.error-popup .popup-content i {
  color: #e74c3c;
}

.popup-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.popup-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Mobile responsiveness for popups */
@media (max-width: 480px) {
  .success-popup,
  .error-popup {
    padding: 1.5rem;
    max-width: 350px;
  }

  .popup-content i {
    font-size: 2.5rem;
  }

  .popup-content h3 {
    font-size: 1.3rem;
  }
}

/* iPhone X and newer safe area support */
@supports (padding: max(0px)) {
  .navbar {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

/* ===== IMAGE LIGHTBOX ===== */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10003;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.image-lightbox.show .lightbox-img {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10004;
}

.lightbox-close-btn:hover {
  color: #e67e22;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(230, 126, 34, 0.8);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10004;
}

.lightbox-arrow:hover {
  background: #d35400;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow-left {
  left: -70px;
}

.lightbox-arrow-right {
  right: -70px;
}

@media (max-width: 768px) {
  .lightbox-close-btn {
    top: 10px;
    right: 10px;
    font-size: 2rem;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox-arrow-left {
    left: 10px;
  }

  .lightbox-arrow-right {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .lightbox-close-btn {
    top: 5px;
    right: 5px;
    font-size: 1.8rem;
  }
  .lightbox-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .lightbox-arrow-left {
    left: 5px;
  }
  .lightbox-arrow-right {
    right: 5px;
  }
}
