* { box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }
html { scroll-padding-top: 6rem; }
html, body { margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }
body { color: #4b5563; background: #ffffff; line-height: 1.6; }

/* Paragraph text styling */
p {
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Avatar images - black and white */
.subsection-avatar img {
  filter: grayscale(100%);
}

/* Contact Form */
.contact-form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

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

.contact-form .form-row {
  display: flex;
  gap: 1rem;
}

.contact-form .form-group {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.contact-form .form-label {
  color: #1f2937;
  font-weight: 300;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.contact-form .form-input,
.contact-form .form-textarea {
  padding: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  width: 100%;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: #1f2937;
}

.contact-form .form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-submit {
  background: #1f2937;
  color: #f3f4f6;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 0.375rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  align-self: flex-start;
}

.contact-form .form-submit:hover {
  background: #374151;
}

.contact-form .form-message {
  margin-top: 1rem;
}

.contact-form .required {
  color: #ef4444;
  margin-left: 0.25rem;
}

/* Mobile Contact Form */
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 1rem;
  }
  
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-form .form-submit {
    align-self: stretch;
  }
}

/* Footer */
.footer {
  background: #1f2937 !important;
  padding: 1rem 0;
  margin-top: 3rem;
  box-shadow: 0 -2px 8px rgba(31, 41, 55, 0.3);
}

.footer-text {
  color: #f3f4f6;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0;
}
a { color: #ea580c; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { color: #1f2937; line-height: 1.2; margin: 0; font-weight: 300; }

/* Override for hero text specifically */
.hero-text-overlay h1 {
  font-weight: 100 !important;
}

.hero-title {
  font-weight: 300 !important;
}

/* Section Banners */
.section-banner {
  background: #1f2937 !important;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(31, 41, 55, 0.3);
}

.banner-title {
  color: #f3f4f6 !important;
  font-size: 2.5rem;
  font-weight: 300 !important;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile Banner Responsive */
@media screen and (max-width: 768px) {
  .section-banner {
    margin-bottom: 1.5rem;
    border-radius: 0.375rem;
    padding: 1.5rem;
  }
  
  .banner-title {
    font-size: 2rem;
  }
}
h1 { font-size: 2.25rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.125rem; }

.container { max-width: 56rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }

/* Header */
header {
  position: relative;
  z-index: 100;
  margin-top: -1rem;
  padding-top: 1rem;
  background: #1f2937 !important;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.5);
  border-bottom: 3px solid #374151;
}

header .container {
  background: transparent !important;
}

header .container > div {
  background: transparent !important;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.desktop-nav .nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.desktop-nav a {
  color: #f3f4f6;
  text-decoration: none;
  font-weight: 300 !important;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #ea580c;
  text-decoration: none;
}

/* Mobile Header */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.mobile-logo img {
  height: 40px;
  width: auto;
}

/* Mobile Menu Button - Duplicate removed */

/* Logo Styling */
.logo-image {
  height: 50px;
  width: auto;
  max-width: 200px;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-header {
    display: flex;
  }
}
.section { padding: 3rem 0; }
.section.alt { background: #f8fafc; }
.section .lead { color: #475569; }

/* Subsections */
.subsection {
  margin: 2rem 1rem;
  padding: 1.5rem;
  background: transparent;
  border-radius: 0;
  border-left: 4px solid #1f2937;
}

.subsection h3 {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* Products Section Subsection Styling */
#products-section .subsection {
  border-left: 4px solid #1f2937;
}

#products-section .subsection h3 {
  color: #1f2937;
}


/* Team Card Styling */
.team-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  margin: 0 auto 2rem;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* About Us team card width and layout on desktop */
@media (min-width: 768px) {
  #about-section .team-card {
    width: 30%;
    float: left;
    height: 650px;
    overflow: hidden;
    margin: 0 1.5%;
  }
  
  /* Clear float after the last card */
  #about-section::after {
    content: "";
    display: table;
    clear: both;
  }
}


.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.team-card h3 {
  color: #1e293b;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Avatar Styling */
.subsection-avatar {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
}

.subsection-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Team Card Layout */
.team-card .subsection-content {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card .subsection-text {
  max-width: 600px;
}

/* Mobile Team Card Responsiveness */
@media (max-width: 768px) {
  .team-card {
    width: 100%;
    padding: 1.5rem;
    margin: 0 auto 1.5rem;
  }
  
  .subsection-avatar {
    width: 140px;
    height: 140px;
  }
  
  .team-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .team-card {
    width: 100%;
    padding: 1rem;
    margin: 0 auto 1rem;
  }
}

/* Subsection Content Layout */
.subsection-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Subsection Images */
.subsection-image {
  flex-shrink: 0;
  width: 200px;
}

.subsection-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.subsection-image img:hover {
  transform: scale(1.02);
}

/* Subsection Text */
.subsection-text {
  flex: 1 1;
}

.bold-line {
  font-weight: 700;
  color: #ea580c;
  margin-top: 0.5rem;
}

/* Responsive Design for Subsection */
@media (max-width: 768px) {
  .subsection-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .subsection-image {
    width: 100%;
    text-align: center;
  }
  
  .subsection-image img {
    max-width: 300px;
  }
}

/* Section Banner Styles */
.section-banner {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile Banner Responsiveness */
@media (max-width: 768px) {
  .section-banner {
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
  }
  
  .banner-image {
    min-height: 120px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .section-banner {
    margin-bottom: 1rem;
    border-radius: 0.25rem;
  }
  
  .banner-image {
    min-height: 100px;
  }
}

/* Header Styles */
header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 50 !important;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: #F09F00;
  border-bottom: 3px solid rgba(234, 88, 12, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Logo Styling */
header .logo {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

header .logo-image {
  height: 2.5rem;
  width: auto;
  max-width: 120px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Logo hover effects removed - no highlighting on hover or click */

/* Desktop Navigation */
nav.desktop-nav {
  display: none;
  align-items: center;
  gap: 1rem;
  flex: 1 1;
  justify-content: space-between;
  padding: 0.75rem 0;
}

/* Mobile Header */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  position: relative;
}

.mobile-logo {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Prevent mobile logo from inheriting any hover effects */
.mobile-logo:hover {
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
  color: inherit !important;
}

.mobile-logo:hover::before {
  display: none !important;
}

/* Show desktop nav on desktop, hide mobile elements */
@media (min-width: 768px) {
  nav.desktop-nav {
    display: flex !important;
  }
  
  .mobile-header {
    display: none !important;
  }
  
  #mobile-menu {
    display: none !important;
  }
}

/* Show mobile header only on mobile */
@media (max-width: 767px) {
  .mobile-header {
    display: flex !important;
  }
  
  nav.desktop-nav {
    display: none !important;
  }
}

nav.desktop-nav a {
  position: relative;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

/* Logo styling within nav */
nav.desktop-nav .logo {
  padding: 0;
  border-radius: 0;
  text-transform: none;
  font-size: inherit;
  letter-spacing: normal;
  background: transparent;
}

/* Prevent logo from inheriting navigation hover effects */
nav.desktop-nav .logo:hover {
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
  color: inherit !important;
}

nav.desktop-nav .logo:hover::before {
  display: none !important;
}

/* Navigation links container */
nav.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav.desktop-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  border-radius: 0.5rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

nav.desktop-nav a:hover {
  color: #ea580c;
  transform: translateY(-2px);
  text-decoration: none;
}

nav.desktop-nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}

nav.desktop-nav a:active {
  transform: translateY(0);
}

/* Mobile Menu Button */
#mobile-menu-button {
  display: flex; /* Show by default for mobile */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#mobile-menu-button:hover {
  transform: scale(1.05);
}

#mobile-menu-button span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: #f3f4f6;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 2px 0;
}

#mobile-menu-button.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

#mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

#mobile-menu-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 75%;
  max-width: 400px;
  background: white !important;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 0;
}

/* Show mobile menu when .show class is added */
#mobile-menu.show {
  max-height: 500px;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  display: block !important;
  background: white !important;
  padding: 1rem;
}


#mobile-menu nav {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: white;
}

#mobile-menu a {
  display: block;
  padding: 1rem 1.25rem;
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  position: relative;
  overflow: hidden;
}

#mobile-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

#mobile-menu a:hover {
  color: #ea580c;
  transform: translateY(-2px);
  text-decoration: none;
}

#mobile-menu a:hover::before {
  left: 0;
}

/* Active/Current Page Indicator */
nav a[aria-current="page"] {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Main content padding for fixed header */
main {
  padding-top: 4rem !important; /* 64px to account for fixed header */
}

/* Hero Video Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container { padding-left: 0.75rem; padding-right: 0.75rem; }
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.25rem; }
  .section { padding: 2rem 0; }
  main {
    padding-top: 4rem !important; /* Ensure mobile also has proper padding */
  }
}

/* Mobile Menu Animations */
.mobile-menu-enter {
  max-height: 0;
  opacity: 0;
}

.mobile-menu-enter-active {
  max-height: 24rem;
  opacity: 1;
  transition: max-height 300ms ease-in-out, opacity 300ms ease-in-out;
}

.mobile-menu-exit {
  max-height: 24rem;
  opacity: 1;
}

.mobile-menu-exit-active {
  max-height: 0;
  opacity: 0;
  transition: max-height 300ms ease-in-out, opacity 300ms ease-in-out;
}

/* Contact Form Styles - Duplicate removed */

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.required {
  color: #dc2626;
  margin-left: 0.25rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  background: #1e3a8a;
  color: white;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Form Message Styles */
.form-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}


/* Blog Card Styles */
.blog-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-card h3 {
  color: #1e40af;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.blog-date {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.blog-excerpt {
  margin-bottom: 1rem;
}

.blog-excerpt p {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0;
}


/* Section Subtitle */
.section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  margin: 1rem 0 2rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Blog Section Layout */
#blog-section .subsection-content {
  display: block;
}

#blog-section .subsection {
  margin-bottom: 2rem;
}

/* Hide Blog Section Subsections */
#blog-section .subsection {
  display: none;
}

/* Responsive Blog Cards */
@media (max-width: 768px) {
  .blog-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .blog-card h3 {
    font-size: 1.125rem;
  }
}

/* Responsive Form */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-submit {
    width: 100%;
  }
}

/* Hero Video Section */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.hero-text-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Mobile responsive hero section */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-text-overlay h1 {
    font-size: 2rem;
  }
  
  .hero-text-overlay {
    padding: 1.5rem;
  }
}

/* Section Image Styles */
.section-image {
  text-align: center;
  margin: 2rem 0;
}

.section-image img {
  max-width: 60%;
  height: auto;
  border-radius: 0.75rem;
}

/* Mobile responsive section images */
@media screen and (max-width: 768px) {
  .section-image img {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  /* More specific selector for mobile */
  #infrastructure-section .section-image img {
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* Tablet and smaller mobile devices */
@media screen and (max-width: 480px) {
  .section-image img {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  #infrastructure-section .section-image img {
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* Hero Video Section */
.hero-section {
  position: relative;
  height: 95vh;
  min-height: 750px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #f3f4f6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text-overlay h1 {
  font-size: 3rem;
  font-weight: 100 !important;
  margin-bottom: 1rem;
}

/* Mobile Hero Video */
@media screen and (max-width: 768px) {
  .hero-section {
    height: 75vh;
    min-height: 550px;
  }
  
  .hero-text-overlay h1 {
    font-size: 2rem;
  }
}

/* Mobile Menu - Duplicate removed */



