/* Custom CSS for SertifikatK3.com */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility Styles */
.visually-hidden-focusable {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.visually-hidden-focusable:focus {
    position: absolute !important;
    width: auto !important;
    height: auto !important;
    padding: 0.5rem 1rem !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    background-color: #007bff !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 0.25rem !important;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5) !important;
}

/* Enhanced Focus Indicators */
*:focus {
    outline: 3px solid #0056b3; /* Higher contrast blue */
    outline-offset: 2px;
}

.btn:focus,
.nav-link:focus,
.carousel-control-prev:focus,
.carousel-control-next:focus {
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.6); /* Higher contrast */
}

.gallery-clickable:focus {
    outline: 3px solid #0056b3; /* Higher contrast blue */
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    *:focus {
        outline: 4px solid #000000;
        outline-offset: 2px;
    }
    
    .btn:focus,
    .nav-link:focus,
    .carousel-control-prev:focus,
    .carousel-control-next:focus {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.8);
    }
}

/* Professional Team Image with 9:16 Landscape Ratio */
.professional-team-image {
    width: 100%;
    height: 400px; /* Fixed height for better control */
    object-fit: cover;
    object-position: center;
    aspect-ratio: 9/16;
    display: block;
}

@media (max-width: 768px) {
    .professional-team-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .professional-team-image {
        height: 250px;
    }
}

/* Navbar Logo Styling */
.navbar-logo {
  height: 60px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  transition: var(--transition);
}

/* Specific styling for K3 logo to make it larger */
.navbar-logo[src*="logo k3.png"] {
  height: 70px;
  max-width: 110px;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-logos {
  display: flex;
  align-items: center;
}

/* Ensure navbar stays sticky */
.navbar.fixed-top {
  position: fixed !important;
  top: 0;
  z-index: 1030;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: var(--navbar-height);
}

/* Navbar scrolled state for better visibility */
.navbar.fixed-top.scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 50px;
    max-width: 75px;
  }
  
  .navbar-logo[src*="logo k3.png"] {
    height: 60px;
    max-width: 90px;
  }
}

/* CSS Variables - Optimized for Performance */
:root {
  --accent-color: #D97706;
  --accent-hover: #B45309;
  --text-primary: #1E2A3A;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --shadow-light: rgba(0,0,0,0.1);
  --shadow-medium: rgba(0,0,0,0.15);
  --shadow-hover: rgba(0,0,0,0.25);
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --navbar-height: 80px;
  /* Performance optimization variables */
  --gpu-acceleration: translateZ(0);
  --will-change-transform: transform;
  --contain-layout: layout style paint;
}

/* Body padding to prevent content being hidden behind sticky navbar */
body {
  padding-top: var(--navbar-height);
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }
}

/* Layout Optimization */
.section-padding {
  margin-bottom: 1.5rem;
}

section {
  margin-bottom: 1.5rem;
}

.section-padding-sm {
  padding: 2.5rem 0;
}

.container {
  max-width: 1200px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* List styling improvements */
.list-unstyled li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.list-unstyled li:last-child {
  border-bottom: none;
}

.list-unstyled a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.list-unstyled a:hover {
  background-color: rgba(217, 119, 6, 0.1);
  transform: translateX(5px);
}

/* Icon improvements */
.bi {
  margin-right: 0.5rem;
}

/* Footer improvements */
footer {
  background-color: #2c3e50 !important;
  color: #ffffff !important;
  padding: 3rem 0 2rem 0;
}

footer h5 {
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer p, footer li {
  color: #ecf0f1 !important;
  line-height: 1.6;
}

footer a {
  color: #ecf0f1 !important;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #d97706 !important;
}

/* Partner Logo Optimization */
.partner-logo {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(100%) opacity(0.7);
  margin: 0.5rem;
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Partner logo container */
.partner-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  min-height: 100px;
}

/* Performance optimizations for icons and logos - Enhanced */
.service-icon i,
.feature-icon i,
.contact-icon i,
.footer-icon i,
.link-icon i,
.check-icon i,
.section-icon i {
  will-change: var(--will-change-transform), color;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: var(--gpu-acceleration);
}

.partner-logo {
  will-change: var(--will-change-transform), filter;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: var(--gpu-acceleration);
}

/* Reduce repaints for icon containers */
.service-icon,
.feature-icon,
.section-icon {
  contain: var(--contain-layout);
}

/* Optimize transitions for better performance */
.service-icon i:hover,
.feature-icon i:hover,
.section-icon i:hover {
  transform: translateZ(0) scale(1.05);
}

.partner-logo:hover {
  transform: translateZ(0) scale(1.05);
}

/* Critical CSS inlining optimization */
.critical-above-fold {
  contain: var(--contain-layout);
  will-change: var(--will-change-transform);
}

/* Minification-ready classes */
.perf-opt{transform:var(--gpu-acceleration);will-change:var(--will-change-transform)}
.layout-opt{contain:var(--contain-layout)}

/* Service Icons Optimization */
.service-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

.service-icon i {
  font-size: 3rem !important;
  color: var(--accent-color);
  transition: all 0.3s ease;
  line-height: 1;
  vertical-align: middle;
}

/* Consistent icon sizes for different contexts */
.service-icon-large i {
  font-size: 3.5rem !important;
}

.service-icon-medium i {
  font-size: 2.5rem !important;
}

.service-icon-small i {
  font-size: 2rem !important;
}

/* Feature icons in "Why Choose Us" section */
.feature-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 2.5rem !important;
  color: var(--accent-color);
  transition: all 0.3s ease;
  line-height: 1;
  vertical-align: middle;
}

/* Contact and footer icons */
.contact-icon,
.footer-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.contact-icon i,
.footer-icon i {
  font-size: 1.25rem !important;
  color: var(--accent-color);
  line-height: 1;
}

/* Link icons */
.link-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.link-icon i {
  font-size: 1rem !important;
  color: var(--accent-color);
  transition: all 0.3s ease;
  line-height: 1;
}

/* Check mark icons in lists */
.check-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.check-icon i {
  font-size: 1rem !important;
  color: var(--accent-color);
  line-height: 1;
}

/* Large section icons */
.section-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-icon i {
  font-size: 4rem !important;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

/* Card Optimization - Performance Enhanced */
.card {
  transition: all 0.3s ease;
  border-radius: 12px;
  /* Performance optimizations */
  transform: var(--gpu-acceleration);
  will-change: var(--will-change-transform);
  contain: var(--contain-layout);
}

.card-hover:hover {
  transform: translateY(-5px) translateZ(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.card-body {
  padding: 2rem !important;
  /* Optimize for paint performance */
  contain: style paint;
}

.row {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.col, .col-lg-4, .col-md-6, .col-12 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Improved spacing */
.mb-section {
  margin-bottom: 2.5rem;
}

.mb-content {
  margin-bottom: 1.25rem;
}

/* Optimized section spacing */
.py-5 {
  padding-top: 3.25rem !important;
  padding-bottom: 3.25rem !important;
}

.mb-5 {
  margin-bottom: 2.25rem !important;
}

.mb-4 {
  margin-bottom: 1.375rem !important;
}

.mb-3 {
  margin-bottom: 0.875rem !important;
}

.mt-4 {
  margin-top: 1.375rem !important;
}

.mt-3 {
  margin-top: 0.875rem !important;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Enhanced buttons and links */
.btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 0.875rem 1.75rem;
  margin: 0.375rem 0.25rem;
  border-radius: 0.5rem;
  min-width: 120px;
  text-align: center;
}

.btn-accent {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
  color: #ffffff !important;
  border-color: #ffffff !important;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #2c3e50 !important;
  text-shadow: none;
}

a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  color: var(--accent-color);
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Better visual hierarchy */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #2c3e50 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
  font-size: 1.125rem;
  color: #495057 !important; /* Improved contrast ratio */
  font-weight: 500;
  margin-bottom: 2.5rem;
}

/* Typography */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Improved Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.875rem;
  margin-top: 0;
  color: var(--text-primary);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.125rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
}

p {
  margin-bottom: 0.875rem;
  margin-top: 0;
  line-height: 1.7;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.text-muted {
  color: #495057 !important; /* Improved contrast ratio */
  font-size: 0.95rem;
}

/* Enhanced contrast and readability */
.bg-light {
  background-color: #f8f9fa !important;
}

.text-white {
  color: #ffffff !important;
}

.text-dark {
  color: #212529 !important;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.card {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  margin-bottom: 1.75rem;
  border-radius: 0.75rem;
}

.card-body {
  color: var(--text-primary);
  padding: 1.875rem;
}

.card-title {
  color: #2c3e50 !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  color: #495057 !important;
  font-weight: 500;
  line-height: 1.6;
}

/* Better visibility for section content */
section {
  position: relative;
}

section .container {
  position: relative;
  z-index: 2;
}

/* Utility Classes */
.text-accent {
  color: var(--accent-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--text-primary) !important;
  margin-right: 1.5rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-primary) !important;
  margin: 0 0.375rem;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color) !important;
}

/* Button hover and focus states */
.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

.btn-accent:focus {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);
}

/* Hero Section - Enhanced Layout */
.hero-section {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Minimalist performance optimizations */
@media (min-width: 1024px) {
  .hero-slide {
    will-change: transform;
    transform: translateZ(0);
  }
  
  .hero-slide .container {
    will-change: opacity;
    transform: translateZ(0);
  }
  
  .carousel-item {
    backface-visibility: hidden;
    perspective: 1000px;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    transition: all 0.25s ease;
  }
  
  .carousel-indicators [data-bs-target] {
    transition: all 0.25s ease;
  }
  
  /* Smooth fade transitions */
  .carousel-item {
    transition: opacity 0.6s ease-in-out;
  }
  
  .fadeInUp {
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
  }
}

/* Carousel Animation Enhancement */
.carousel-item {
  transition: transform 0.8s ease-in-out;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* Smooth fade transition for hero content */
.hero-slide .container {
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation for text elements */
.hero-slide .display-4 {
  animation: fadeInUp 1.4s ease-out 0.2s both;
}

.hero-slide .lead {
  animation: fadeInUp 1.6s ease-out 0.4s both;
}

.hero-slide .btn {
  animation: fadeInUp 1.8s ease-out 0.6s both;
}

.hero-slide {
  min-height: 50vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
}

.hero-slide::before {
  display: none;
}

/* Optimize image loading and aspect ratio */
.hero-slide {
  background: transparent;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 2rem;
  text-align: center;
  width: 100%;
}

.hero-slide .row {
  min-height: auto;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
}

.hero-slide .col-lg-6 {
  padding: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Enhanced typography for better readability */
.hero-slide .text-white {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
  font-weight: 600;
  color: #ffffff !important;
}

.hero-slide .display-4 {
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
  margin-top: 0;
  line-height: 1.2;
  font-size: 2.8rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.hero-slide .lead {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff !important;
  margin-bottom: 2rem;
  margin-top: 0;
  line-height: 1.6;
  max-width: 100%;
  opacity: 1;
  text-align: center;
}

.hero-slide .btn {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(217, 119, 6, 0.3);
    transform: translateY(0);
    border: 2px solid transparent;
    text-align: center;
    display: inline-block;
  }
  
  .hero-slide .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .hero-slide .btn:active {
    transform: translateY(0);
    transition: all 0.1s ease;
  }

/* Carousel Controls Enhancement - Subtle Design */
.carousel-control-prev,
.carousel-control-next {
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  opacity: 0.4;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(217, 119, 6, 0.4);
  transform: translateY(-50%) scale(1.02);
  opacity: 0.7;
  border-color: rgba(217, 119, 6, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 14px;
  height: 14px;
  background-size: 14px 14px;
  opacity: 0.8;
}

/* Carousel Indicators Enhancement - Subtle Design */
.carousel-indicators {
  bottom: 35px;
  margin-bottom: 0;
  opacity: 0.7;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease;
  opacity: 0.8;
}

.carousel-indicators [data-bs-target]:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
  opacity: 1;
}

.carousel-indicators .active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.15);
  opacity: 1;
}

/* Hero Section Responsive Design */

/* Ultra-wide Desktop (1920px and up) */
@media (min-width: 1920px) {
  .hero-slide {
    min-height: 100vh;
    padding: 4rem 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
  }
  
  .hero-slide::before {
    display: none;
  }
  
  .hero-slide .container {
    max-width: 1800px;
    padding: 3rem 2rem;
  }
  
  .hero-slide .row {
    min-height: 75vh;
  }
  
  .hero-slide .col-lg-6 {
    padding: 2rem;
    max-width: 800px;
  }
  
  .hero-slide .display-4 {
    font-size: 4.5rem;
    margin-bottom: 3rem;
    line-height: 1.02;
  }
  
  .hero-slide .lead {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
    line-height: 1.35;
  }
  
  .hero-slide .btn {
    padding: 1.3rem 3.5rem;
    font-size: 1.3rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 42px;
    height: 42px;
  }

  .carousel-control-prev {
    left: 35px;
  }

  .carousel-control-next {
    right: 35px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
  
  .carousel-indicators {
    bottom: 50px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    margin: 0 7px;
  }
}

/* Large Desktop (1440px to 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .hero-slide {
    min-height: 100vh;
    padding: 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
  }
  
  .hero-slide .container {
    max-width: 1200px;
    padding: 0 2rem;
  }
  
  .hero-slide .col-lg-6 {
    max-width: 900px;
  }
  
  .hero-slide .display-4 {
    font-size: 3.5rem;
    margin-bottom: 1.75rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  
  .hero-slide .lead {
    font-size: 1.35rem;
    margin-bottom: 2.25rem;
    line-height: 1.6;
  }
  
  .hero-slide .btn {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    margin-top: 1.75rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 38px;
    height: 38px;
    left: 25px;
  }

  .carousel-control-next {
    right: 25px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
  }
  
  .carousel-indicators {
    bottom: 35px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}

/* Standard Desktop (1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .hero-slide {
    min-height: 100vh;
    padding: 0;
  }
  
  .hero-slide .container {
    max-width: 1100px;
    padding: 0 2rem;
  }
  
  .hero-slide .col-lg-6 {
    max-width: 750px;
  }
  
  .hero-slide .display-4 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  
  .hero-slide .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .hero-slide .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 48px;
    height: 48px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

/* Medium Desktop (1200px to 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
  .hero-slide {
    min-height: 98vh;
    padding: 3rem 0;
    background-attachment: fixed;
  }

  .hero-slide .container {
    max-width: 1400px;
    padding: 2rem;
  }
  
  .hero-slide .row {
    min-height: 68vh;
  }
  
  .hero-slide .col-lg-6 {
    padding: 2rem;
    max-width: 680px;
  }
  
  .hero-slide .display-4 {
    font-size: 3.8rem;
    margin-bottom: 2.3rem;
    line-height: 1.08;
  }
  
  .hero-slide .lead {
    font-size: 1.5rem;
    margin-bottom: 2.9rem;
    line-height: 1.42;
  }
  
  .hero-slide .btn {
    padding: 1.15rem 2.9rem;
    font-size: 1.18rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 52px;
    height: 52px;
    opacity: 0.75;
  }
  
  .carousel-control-prev {
    left: 35px;
  }
  
  .carousel-control-next {
    right: 35px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 21px;
    height: 21px;
    background-size: 21px 21px;
  }
  
  .carousel-indicators {
    bottom: 42px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 11.5px;
    height: 11.5px;
    margin: 0 5.5px;
  }
}

@media (max-width: 1200px) {
  .hero-slide .display-4 {
    font-size: 3rem;
  }
  
  .hero-slide .lead {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .hero-slide {
    min-height: 45vh;
    padding: 2rem 0;
  }
  
  .hero-slide .container {
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .hero-slide .row {
    min-height: auto;
    padding: 1rem 0;
  }
  
  .hero-slide .col-lg-6 {
    padding: 1rem;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-slide .display-4 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-slide .lead {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    max-width: 100%;
    line-height: 1.5;
  }
  
  .hero-slide .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-slide {
    min-height: 40vh;
    padding: 1.5rem 0;
    background-attachment: scroll;
  }

  .hero-slide .container {
    padding: 1rem;
  }

  .hero-slide .col-lg-6 {
    padding: 0.8rem;
  }
  
  .hero-slide .display-4 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
  }
  
  .hero-slide .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .hero-slide .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    margin-top: 1.2rem;
  }
  
  /* Mobile Carousel Controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 32px;
    height: 32px;
    opacity: 0.3;
  }

  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
  }
  
  .carousel-indicators {
    bottom: 25px;
    opacity: 0.6;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    min-height: 35vh;
    padding: 1rem 0;
  }

  .hero-slide .container {
    padding: 0.8rem;
  }

  .hero-slide .col-lg-6 {
    padding: 0.6rem;
  }
  
  .hero-slide .display-4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .hero-slide .lead {
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
    line-height: 1.5;
  }
  
  .hero-slide .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
  }
  
  /* Extra Small Mobile Carousel Controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 28px;
    height: 28px;
    opacity: 0.25;
  }

  .carousel-control-prev {
    left: 8px;
  }

  .carousel-control-next {
    right: 8px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 10px;
    height: 10px;
    background-size: 10px 10px;
  }
  
  .carousel-indicators {
    bottom: 20px;
    opacity: 0.5;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    margin: 0 3px;
  }
}

/* Carousel Controls Responsive */
@media (max-width: 992px) and (min-width: 769px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .carousel-control-prev {
    left: 18px;
  }
  
  .carousel-control-next {
    right: 18px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 19px;
    height: 19px;
    background-size: 19px 19px;
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    transform: translateY(-50%) scale(1.08);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.875rem 0;
  }
  
  .hero-section {
    /* margin-top removed for mobile */
  }
  
  .hero-slide {
    min-height: 75vh; /* Optimized height for mobile */
    background-attachment: scroll; /* Better performance on mobile */
    padding: 1rem 0;
    background-position: center center;
  }
  
  .display-4 {
    font-size: 2rem !important;
    line-height: 1.3;
  }
  
  .lead {
    font-size: 1rem;
    margin-bottom: 2rem !important;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
  
  /* Responsive section spacing */
  section {
    padding: 2.75rem 0;
    margin-bottom: 0.875rem;
  }
  
  .py-5 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  
  .section-padding {
    padding: 2.75rem 0;
  }
  
  /* Partner logo tablet */
  .partner-logo {
    max-height: 60px;
    margin: 0.375rem;
  }
  
  .partner-logo-container {
    padding: 0.75rem;
    min-height: 90px;
  }
  
  /* Service icons mobile */
  .service-icon i {
    font-size: 2.5rem !important;
  }
  
  .feature-icon i {
    font-size: 2rem !important;
  }
  
  .section-icon i {
    font-size: 3rem !important;
  }
  
  .contact-icon i,
  .footer-icon i {
    font-size: 1.125rem !important;
  }
  
  /* Card responsive styles */
  .card {
    margin-bottom: 0.875rem;
  }
  
  .card-body {
    padding: 1.375rem !important;
  }
  
  .card-hover:hover {
    transform: translateY(-3px);
  }
  
  .service-icon {
    font-size: 2rem !important;
    margin-bottom: 0.75rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    margin: 0.25rem 0.125rem;
  }
  
  .btn-accent {
    padding: 0.75rem 1.875rem;
  }
  
  /* Mobile carousel controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .carousel-control-prev {
    left: 15px;
  }
  
  .carousel-control-next {
    right: 15px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    transform: translateY(-50%) scale(1.05);
  }
  
  .carousel-indicators {
    bottom: 20px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    /* margin-top removed for small screens */
  }
  
  .hero-slide {
    min-height: 65vh; /* Compact height for small screens */
    text-align: center;
    padding: 0.75rem 0;
    background-position: center center;
  }

  .hero-slide .container {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
  
  .btn-lg {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .py-5 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
  
  /* Extra small screens optimization */
  section {
    padding: 2.25rem 0;
    margin-bottom: 0.625rem;
  }
  
  .section-padding {
    padding: 2.25rem 0;
  }
  
  .section-padding-sm {
    padding: 1.25rem 0;
  }
  
  /* Partner logo mobile */
  .partner-logo {
    max-height: 45px;
    margin: 0.25rem;
  }
  
  .partner-logo-container {
    padding: 0.5rem;
    min-height: 80px;
  }
  
  /* Service icons extra small */
  .service-icon i {
    font-size: 2.25rem !important;
  }
  
  .feature-icon i {
    font-size: 1.875rem !important;
  }
  
  .section-icon i {
    font-size: 2.75rem !important;
  }
  
  .contact-icon i,
  .footer-icon i {
    font-size: 1rem !important;
  }
  
  .service-icon {
    margin-bottom: 1rem;
  }
  
  .card-body {
    padding: 1.125rem !important;
  }
  
  .mb-5 {
    margin-bottom: 1.875rem !important;
  }
  
  .mb-4 {
    margin-bottom: 1.125rem !important;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    margin: 0.1875rem 0.0625rem;
    font-size: 0.9rem;
  }
  
  .btn-accent {
    padding: 0.625rem 1.5rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
  }
  
  /* Extra small screens carousel */
  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    transform: translateY(-50%) scale(1.03);
  }
  
  .carousel-indicators {
    bottom: 15px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}

/* Minimalist carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

/* Minimalist carousel indicators */
.carousel-indicators {
  bottom: 24px;
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin: 0 4px;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}

.carousel-indicators .active {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transform: translateY(-50%) scale(1.02);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  filter: brightness(0) invert(1);
}



/* Cards */
.card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.card-body {
  position: relative;
  padding: 1.5rem;
}



/* Service Icons */
.service-icon {
  transition: transform 0.3s ease;
}

.card-hover:hover .service-icon {
  transform: scale(1.1);
}

/* Partner Logos */
.partner-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  max-width: 100%;
  height: auto;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Testimonials */
.blockquote {
  position: relative;
  font-style: italic;
}

.blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.3;
}

.blockquote-footer {
  margin-top: 1rem;
  font-style: normal;
}

/* Contact Section */
.btn-light:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* WhatsApp Button Styling */
.btn-light[href*="wa.me"] {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: #FFFFFF !important;
  transition: all 0.3s ease;
}

.btn-light[href*="wa.me"]:hover {
  background-color: #1DA851 !important;
  border-color: #1DA851 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-light[href*="wa.me"]:focus {
  background-color: #1DA851 !important;
  border-color: #1DA851 !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
}

.btn-light[href*="wa.me"] i {
  color: #FFFFFF !important;
}

.btn-light[href*="wa.me"] span {
  color: #FFFFFF !important;
}

/* Footer */
footer {
  padding: 2.5rem 0 1.5rem 0;
}

footer a:hover {
  color: var(--accent-color) !important;
  transition: color 0.3s ease;
}

footer .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Additional Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Custom spacing utilities (non-Bootstrap) */

/* Multi-Image Gallery Slider Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 500px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.gallery-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover .gallery-grid-image {
    transform: scale(1.05);
}

.gallery-grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover .gallery-grid-overlay {
    transform: translateY(0);
}

.gallery-grid-overlay h6 {
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Gallery Carousel Specific Controls */
#galleryCarousel .carousel-control-prev,
#galleryCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(0,0,0,0.5);
}

#galleryCarousel .carousel-control-prev:hover,
#galleryCarousel .carousel-control-next:hover {
    background-color: rgba(0,0,0,0.8);
}

#galleryCarousel .carousel-control-prev-icon,
#galleryCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

#galleryCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border: none;
    transition: all 0.3s ease;
}

#galleryCarousel .carousel-indicators button.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Responsive Design for Multi-Image Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        height: 400px;
        gap: 10px;
        padding: 15px;
    }
    
    .gallery-grid-overlay h6 {
        font-size: 0.8rem;
    }
    
    #galleryCarousel .carousel-control-prev,
    #galleryCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    #galleryCarousel .carousel-control-prev {
        left: 10px;
    }
    
    #galleryCarousel .carousel-control-next {
        right: 10px;
    }
    
    #galleryCarousel .carousel-control-prev-icon,
    #galleryCarousel .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: 600px;
        gap: 8px;
        padding: 10px;
    }
    
    .gallery-grid-overlay {
        padding: 10px;
    }
    
    .gallery-grid-overlay h6 {
         font-size: 0.7rem;
     }
 }

 /* Image Zoom Modal Styles */
 .image-zoom-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .image-zoom-modal.active {
     opacity: 1;
     visibility: visible;
 }

 .zoom-modal-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     cursor: pointer;
 }

 .zoom-modal-content {
     position: relative;
     max-width: 90vw;
     max-height: 90vh;
     display: flex;
     flex-direction: column;
     align-items: center;
     z-index: 10000;
 }

 .zoomed-image {
     max-width: 100%;
     max-height: 80vh;
     object-fit: contain;
     border-radius: 10px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
     transform: scale(0.8);
     transition: transform 0.3s ease;
 }

 .image-zoom-modal.active .zoomed-image {
     transform: scale(1);
 }

 .zoom-close-btn {
     position: absolute;
     top: -50px;
     right: 0;
     background: rgba(255, 255, 255, 0.9);
     border: none;
     border-radius: 50%;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     color: #333;
 }

 .zoom-close-btn:hover {
     background: rgba(255, 255, 255, 1);
     transform: scale(1.1);
 }

 .zoom-image-title {
     margin-top: 20px;
     color: white;
     font-size: 1.2rem;
     font-weight: 600;
     text-align: center;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
 }

 .gallery-clickable {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-clickable:hover,
.gallery-clickable:focus {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

 /* Responsive Design for Zoom Modal */
 @media (max-width: 768px) {
     .zoom-modal-content {
         max-width: 95vw;
         max-height: 95vh;
     }
     
     .zoomed-image {
         max-height: 70vh;
     }
     
     .zoom-close-btn {
         top: -40px;
         width: 35px;
         height: 35px;
     }
     
     .zoom-image-title {
         font-size: 1rem;
         margin-top: 15px;
     }
 }

 @media (max-width: 480px) {
     .zoom-modal-content {
         max-width: 98vw;
         max-height: 98vh;
     }
     
     .zoomed-image {
         max-height: 60vh;
     }
     
     .zoom-close-btn {
         top: -35px;
         width: 30px;
         height: 30px;
     }
     
     .zoom-image-title {
         font-size: 0.9rem;
         margin-top: 10px;
     }
 }

/* Print Styles */
@media print {
  .navbar,
  .carousel-control-prev,
  .carousel-control-next,
  .carousel-indicators {
    display: none !important;
  }
  
  .hero-slide {
    min-height: auto;
    background: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}