
body {
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
.video-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.video-container::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
}
.video-container video {
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
object-fit: cover;
}

.btn-primary {
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

/* Loading States */
.loading {
  position: relative;
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* Form Validation */
.input-error {
  border-color: #ef4444;
}

.input-success {
  border-color: #10b981;
}

/* ARIA Landmarks */
[role="banner"] {
  background-color: rgba(62, 63, 64, 0);
}

[role="navigation"] {
  background-color: rgba(0, 0, 0, 0.8);
}

[role="main"] {
  background-color: rgba(0, 0, 0, 0.7);
}

[role="complementary"] {
  background-color: rgba(0, 0, 0, 0.6);
}

[role="contentinfo"] {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Skip Navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #3B82F6;
  color: white;
  padding: 10px 20px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid #10B981;
  outline-offset: 2px;
}

/* Focus States */
:focus-visible {
  outline: 2px solid #10B981;
  outline-offset: 2px;
}

/* Error States */
.error {
  color: #ef4444;
  border-color: #ef4444;
}

/* Success States */
.success {
  color: #10b981;
  border-color: #10b981;
}

/* Animation for loading states */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #1f2937 25%, #374151 37%, #1f2937 63%);
  background-size: 1000px 100%;
  animation: shimmer 1.5s infinite;
}
.feature-card {
transition: all 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
}
.image-gallery {
transition: all 0.3s ease;
}
.image-gallery:hover {
transform: scale(1.02);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-3px);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
@media (max-width: 768px) {
.menu-items {
width: 100vw;
left: 0;
}
}
header {
    background-color: rgba(62, 63, 64, 0); /* New header color */
  }
/* Hide the menu by default */
.menu-container {
    display: none;
}

/* Show the menu when the toggle is active */
.menu-container.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; /* Position below the header */
    right: 0; /* Align to the right */
    width: 80%; /* Adjust the width to 80% of the screen */
    max-width: 300px; /* Limit the maximum width to 300px */
    background-color: rgba(0, 0, 0, 0.8); /* Background color */
    padding: 1rem; /* Add padding for spacing */
    z-index: 50; /* Ensure it appears above other elements */
    border-radius: 0.5rem; /* Add rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a shadow for better visibility */
}

/* Ensure the menu is visible on larger screens */
@media (min-width: 768px) {
    .menu-container {
        display: flex;
        position: static;
        flex-direction: row;
        background-color: transparent;
        padding: 0;
        width: auto; /* Reset width for larger screens */
        max-width: none; /* Remove max-width for larger screens */
    }
}
