/* ========== CSS Variables ========== */
:root {
  --primary: #003366;
  --accent: #00A8A8;
  --bg: #f2f2f2;
  --text: #1b1b1b;
  --transition: 0.4s ease all;
}

:root.dark {
  --primary: #0d1117;
  --accent: #58a6ff;
  --bg: #161b22;
  --text: #c9d1d9;
}



/* ========== Preloader ========== */
#preloader {
  position: fixed; /* Stay fixed on screen */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg); /* Light grey background */
  display: flex; /* Center content */
  justify-content: center;
  align-items: center;
  z-index: 9999; /* On top of everything */
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--accent); /* Outer circle color */
  border-top: 5px solid var(--primary); /* Top part different color for spinning effect */
  border-radius: 50%; /* Make it round */
  animation: spin 1s linear infinite; /* Spinning animation */
}

/* Spinner Animation */
@keyframes spin {
  to { transform: rotate(360deg); } /* Full rotation */
}

/* ========== Accessibility Link (Skip to Content) ========== */
.skip-link {
  position: absolute;
  top: -40px; /* Hide above screen */
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s; /* Slide down when focused */
}

.skip-link:focus { top: 10px; } /* Become visible on focus */

/* ========== Screen Reader Only Elements ========== */
.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;
}

/* ========== Global Resets ========== */
*, *::before, *::after { box-sizing: border-box; }

/* ========== Body Styles ========== */
body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  transition: var(--transition);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.6;
  font-weight: 400;
}



/* ========== Header Styles ========== */
header {
  background-color: rgba(16, 46, 129, 0.925); /* light dark tint */
  color: white;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

}
header.scrolled {
  background-color: rgba(0, 51, 102, 0.95); /* fallback solid */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.shrink {
  padding: 10px 40px;
  transition: padding 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.logo.shrink {
  font-size: 1.25rem;
  transition: font-size 0.3s ease;
}

/* Logo styling */
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  transition: font-size 0.3s ease;
  display: flex;
  align-items: center;
}

.logo img {
  vertical-align: middle;
  border-radius: 50%;
  margin-right: 10px;
}

/* Hamburger Menu Button (Mobile) */
.menu-toggle {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 4px;
}

.menu-toggle span {
  background: white;
  height: 3px;
  margin: 5px 0;
  width: 25px;
  transition: var(--transition);
}

/* ========== Navigation Styles ========== */
nav {
  display: flex;
  gap: 25px;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--primary);
  min-width: 160px;
  z-index: 1;
  flex-direction: column;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Dropdown links */
.dropdown-content a {
  padding: 10px 16px;
  display: block;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

/* Hover effect for dropdown links */
.dropdown-content a:hover {
  background-color: var(--primary);
  color: white; /* Optional: prevent any unwanted color shift */

}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: flex;
}

/* Nav links */
nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color var(--transition); /* MODIFICATION: Added transition */
}

nav a:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 4px;
}

/* Animated underline on hover */
nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

nav a:hover::after { width: 100%; }
nav a:hover, nav a:focus {
   color: var(--accent); /* MODIFICATION: Added hover/focus color change */
}


/* ========== Responsive Navigation for Mobile ========== */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -250px; /* Hide off-screen */
    width: 250px;
    height: 100%;
    background: var(--primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: right 0.5s ease;
  }
  nav.active { right: 0; } /* Slide-in effect */
  .menu-toggle { display: flex; } /* Show hamburger */
}


/* ========== Hero Section ========== */
.hero {
  height: 100vh;
  background: linear-gradient(270deg, #003366, #00A8A8, #005577);
  background-size: 600% 600%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  animation: gradientShift 12s ease infinite;
}

/* Hero background animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Video background inside hero */
#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay on top of video */
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.6);
  z-index: 1;
}

/* Buttons and headings on top of video */
.hero h1,
.hero .btn {
  z-index: 2;
  position: relative;
}

/* Decorative wave at the bottom of hero */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('https://www.svgrepo.com/show/355177/wave-top.svg') repeat-x;
  background-size: cover;
  transform: translateY(50%);
  opacity: 0.4;
  z-index: 2;
}

.hero-subtitle {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.85;
  z-index: 2;
  position: relative;
  font-weight: 500;
  max-width: 600px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  font-size: 1.3rem;
  color: #fff;
  opacity: 0.6;
  animation: scrollPulse 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ========== Button Styling ========== */
.btn {
  background: linear-gradient(90deg, var(--accent), #00d9d9);
  color: white;
  padding: 14px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}


/* Button hover effect */
.btn:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  background: linear-gradient(90deg, var(--accent), #00d9d9, var(--accent));
  background-size: 200% 200%;
  animation: gradientFlow 2s linear infinite;
}

/* ========== Section Styling ========== */
.section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); /* Responsive size */
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary);
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}


/* Decorative line under h2 */
.section h2::after {
  content: "";
  width: 80px;  /* Line length */
  height: 3px;  /* Line thickness */
  background: var(--accent);  /* Accent color (turquoise) */
  display: block;
  margin: 10px auto 0;  /* 10px spacing from text */
  border-radius: 3px;
}

.section p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  letter-spacing: 0.1px;
}


/* ========== Grid System ========== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* ========== Card Component ========== */
.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent; /* Start with transparent border */
  /* MODIFICATION: Ensure transition covers all properties including border-color and transforms */
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color var(--transition);
}



/* Card title color */
.card h3 {
  color: var(--accent);
  margin-bottom: 15px;
}

.card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.3px;
}

/* ========== Form Styles ========== */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  transition: 0.5s ease all;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: var(--transition);
  font-family: inherit;
}

/* Input focus effect */
input:focus, textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 5px rgba(0, 168, 168, 0.5);
}

/* Success message styles */
#form-success {
  display: none;
  text-align: center;
  color: var(--accent);
  font-weight: 600;
  margin-top: 20px;
}

/* ========== Footer ========== */
footer {
  background-color: var(--text);
  color: var(--bg);
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}


/* Scroll-to-top button */
#back-to-top {
  display: none;
  position: fixed;
  bottom: 140px;
  right: 30px;
  background-color: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  z-index: 999;
  transition: var(--transition);
}

#back-to-top:hover { transform: scale(1.1); }

/* Floating CTA button */
#floating-cta {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background: var(--accent);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  font-weight: 600;
  text-decoration: none;
  z-index: 999;
  transition: var(--transition);
}

#floating-cta:hover {
  background: #008080;
  transform: translateY(-3px) scale(1.05);
}

/* Error message styling */
.error-msg {
  color: #cc0000;
  font-size: 0.9rem;
  display: none;
  margin-top: -10px;
}

/* ========== Custom Scrollbar Styling ========== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #008080;
}

/* Scroll progress bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: var(--accent);
  width: 0%;
  z-index: 9999;
  transition: width 0.25s;
}

/* Logo carousel styles */
.logo-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-carousel img {
  max-width: 100px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: var(--transition);
}
.logo-carousel img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Service cards border tweak */
#services .card {
  border: 1px solid #e0e0e0;
  /* MODIFICATION: Ensure transition includes border-color if not already covered by main .card rule */
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color var(--transition);
}
/* MODIFICATION: Add hover state for service cards if different from main .card rule */
.card:hover {
  transform: perspective(1000px) rotateY(3deg) rotateX(3deg) scale(1.04);
  box-shadow: 0 15px 35px rgba(0, 168, 168, 0.3);
  border-color: var(--accent);
  background: linear-gradient(to bottom right, white, #f9fdfd);
}



/* Accessibility outlines */
a:focus, button:focus {
  outline: 3px dashed var(--accent);
  outline-offset: 4px;
}

/* Footer navigation links */
footer nav a {
  color: var(--bg);
  margin: 0 8px;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

footer nav a:hover {
  color: var(--accent);
}

/* Dropdown caret animation */
.caret {
  margin-left: 5px;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: inline-block;
}
.dropdown:hover .caret,
.dropdown:focus-within .caret {
  transform: rotate(180deg);
}
.dropdown:hover .caret {
  color: var(--accent);
}

/* ========== Cookie Banner ========== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 15px;
  display: none; /* hidden initially */
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  z-index: 9999;
}

#cookie-banner p {
  flex: 1 1 70%;
  margin: 0;
}

#cookie-banner button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  flex: 1 1 auto;
  white-space: nowrap;
}

/* Page loader bar */
#page-loader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent), #00d9d9);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 99999;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
body.loading #page-loader {
  transform: scaleX(1);
}

/* Button bounce animation */
@keyframes pulse-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}
.hero .btn {
  animation: pulse-bounce 2s ease-in-out infinite;
}

/* Gradient animated button on hover */
.btn:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  background: linear-gradient(90deg, var(--accent), #00d9d9, var(--accent));
  background-size: 200% 200%;
  animation: gradientFlow 2s linear infinite;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Floating CTA pulse animation */
#floating-cta {
  animation: floatPulse 3s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.03); }
}

/* Header gradient bar */
header::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), #00d9d9);
  position: absolute;
  bottom: 0;
  left: 0;
  animation: slideIn 1s forwards;
}
@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Will-change optimization */
.btn, .card {
  position: relative;
  will-change: transform;
}

/* Floating Action Button (FAB) styles */
#multi-cta {
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 999;
}
#fab {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}
#fab:hover { transform: rotate(45deg) scale(1.1); }

/* FAB dropdown menu */
.fab-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
#multi-cta:hover .fab-menu {
  display: flex;
}
.fab-menu a {
  background: var(--primary);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.fab-menu a:hover {
  background: var(--accent);
}

/* Exit-intent modal */
#exit-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
#exit-modal .modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  position: relative;
}

/* Language switcher styles */
.lang-switcher {
  margin-left: 20px;
}
.lang-switcher button {
  background: transparent;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
}
.lang-switcher button:hover {
  color: var(--accent);
}

/* Extra layer tweaks for hero section */
.hero .overlay {
  background: rgba(0, 51, 102, 0.5);
  z-index: 1;
}
.hero h1, .hero .btn { z-index: 2; }

#global-reach {
  position: absolute;
  bottom: 50px;
  width: 80%;
  left: 10%;
  z-index: 2;
  opacity: 0.8;
}

#lottie-hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
}

.hero h1, .hero .btn { z-index: 2; }

/* Locations Section Styling */
.locations-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

/* Responsive side-by-side layout on larger screens */
@media (min-width: 768px) {
  .locations-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}

/* Individual location block */
.location-block {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  padding: 20px;
  border-left: 3px solid var(--accent);
  transition: transform 0.3s ease;
}

.location-block:hover {
  transform: translateY(-5px);
}

/* Icon styling */
.location-icon {
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* Title styling */
.location-title {
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

/* Address text */
.location-block p {
  margin: 0;
  color: var(--text);
}

/* Custom mailto link style */
a[href^="mailto:"] {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

a[href^="mailto:"]:hover {
  color: #008080;
  text-decoration: underline;
  transition: var(--transition);
}


.partner-logos {
  display: flex;
  flex-wrap: nowrap; /* Keep all logos in one row */
  gap: 60px; /* Space between logos */
  justify-content: center; /* Center horizontally */
  align-items: center;
  overflow-x: auto; /* Optional: scroll if overflow */
  padding: 20px 0;
  scroll-behavior: smooth;
}


.partner-logos img {
  max-width: 150px; /* Adjust as needed */
  height: auto;
  display: block;
}
/* Semi-transparent, blurred popup */
#cookie-popup, #cookie-settings-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeIn 0.5s ease forwards;
}

/* Popup card styling */
.popup-content, .modal-content {
  background: rgba(255, 255, 255, 0.92);
  padding: 25px 30px;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.5s ease forwards;
}

/* Titles */
.popup-content h3, .modal-content h3 {
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 700;
}

/* Paragraph */
.popup-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

/* Buttons */
.popup-actions, .modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

#cookie-popup button, #cookie-settings-modal button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease all;
}

#cookie-popup button:hover, #cookie-settings-modal button:hover {
  transform: translateY(-2px) scale(1.05);
  background: #008080;
}

#cookie-settings-modal label {
  display: block;
  text-align: left;
  margin: 10px 0;
  font-size: 0.9rem;
  color: var(--text);
}

/* Fade-in background */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Slide-up card */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-scroll] {
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-section .bg-layer {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(0,168,168,0.08), transparent 70%);
  z-index: 0;
}

.parallax-section .content-wrapper {
  position: relative;
  z-index: 2;
}

.floating-deco {
  position: absolute;
  top: 20%;
  left: 5%;
  font-size: 3rem;
  opacity: 0.08;
  animation: floatY 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.parallax-section::before,
.parallax-section::after {
  content: '';
  position: absolute;
  left: 0; width: 100%;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.parallax-section::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}
.parallax-section::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}

@media (max-width: 768px) {
  .hero {
    padding: 0 15px;
    justify-content: flex-start;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    line-height: 1.3;
    margin-top: 100px;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 90%;
    margin-top: 10px;
  }

  .hero .btn {
    font-size: 1rem;
    padding: 10px 24px;
    margin-top: 20px;
  }

  .scroll-indicator {
    display: none;
  }

  #bg-video {
    object-fit: cover;
    height: 100%;
  }
}

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

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

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



.job-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card .card-content {
  flex-grow: 1;
}

.job-card .card-footer {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}


.loader-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease-out;
}

.loader-logo {
  width: 80px;
  height: 80px;
  animation: popIn 1.6s ease-out;
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.1;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.hidden {
  display: none !important;
}

.form-message {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.form-message.show {
  opacity: 1;
}

