* {margin: 0; padding: 0; box-sizing: border-box;}

body {font-family: "Oswald", sans-serif; line-height: 1.6; background: #f4f4f4; color: #1f313f;}

a {text-decoration: none; color: inherit;}

.site-header {
  position: absolute; top: 0; left: 0; width: 100%; padding: 20px 0; z-index: 100;
  background-color: rgb(8,24,35);
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.container {
  width: 100%; margin: 5px auto; max-width: 1500px;
  padding: 0 20px; display: flex; align-items: center; justify-content: space-between;
}

.site-nav ul {
  display: flex; list-style: none; gap: 1.5rem;
}

/* ——— Updated hover-underline ——— */
.site-nav ul li a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  padding-bottom: 6px;
}

.site-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease, left 0.3s ease;
  transform-origin: center;
}

.site-nav ul li a:hover::after,
.site-nav ul li a:focus::after {
  width: 100%;
  left: 0;
}

/* ——— Logo & actions & button (unchanged) ——— */
.logo {
  position: absolute; left: 50%; transform: translateX(-50%);
}
.logo img {
  height: 45px;
  display: block;
}
.header-actions {
  display: flex; align-items: center; gap: 1rem;
}
.contact-number {
  color: #fff; font-weight: 600;
}
.hire-btn {
  background-color: #f27000; color: #fff;
  padding: 0.75rem 1.5rem; font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  border: none; border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; will-change: transform, box-shadow;
}
.hire-btn:hover {
  background-color: #f25900;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.hire-btn:focus {
  outline: none;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.1),
    0 0 0 3px rgba(30, 144, 255, 0.4);
}

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
}
.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  display: block; width: 25px; height: 2px; background: #fff;
  position: relative; transition: all 0.3s;
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle .hamburger::before { top: -8px; }
.nav-toggle .hamburger::after  { top:  8px; }

.site-nav .has-submenu {
  position: relative;
}
.site-nav .submenu {
  display: none; list-style: none; margin: 0; padding: 0;
}
.site-nav .has-submenu > a {
  display: inline-flex; align-items: center;
}
.site-nav .has-submenu > a i {
  margin-left: 0.5rem; transition: transform 0.3s ease;
}

/* ——— Updated dropdown styling ——— */
@media (min-width: 1025px) {
  .site-nav .has-submenu:hover > a i {
    transform: rotate(180deg);
  }
  .site-nav .has-submenu:hover > .submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgb(8,24,35);
    padding: 0.5rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    white-space: nowrap;
    z-index: 1000;
  }
  .site-nav .submenu li a {
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 400;
    color: #fff;
  }
  .site-nav .submenu li a:hover {
    background: rgba(255,255,255,0.1);
  }
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }
  .header-actions {
    display: none;
  }
  .site-nav {
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-header.nav-open .site-nav {
    max-height: 450px;
  }
  .site-nav ul {
    flex-direction: column;
    padding: 2rem 0;
  }
  .site-nav ul li {
    text-align: center;
    margin-bottom: 0.3rem;
  }
  .site-nav .has-submenu.open > a i {
    transform: rotate(180deg);
  }
  .site-nav .has-submenu.open > .submenu {
    display: block;
    padding-left: 1rem;
  }



  .action-cards {flex-direction: column;}
  .service {flex: 1 1 100%;}
  .container.highlight-content {flex-direction: column;}
  .highlight-image,
  .highlight-text {width: 100%;}
  .highlight-text h2 {font-size: 1rem; margin-bottom: 1rem;}
  .highlight-text p {margin-bottom: 1.5rem;}
  .site-footer .container {
flex-direction: column;align-items: flex-start;   gap: 1rem;text-align: left; padding: 0 20px;            
  }

  .footer-center ul,
  .footer-right ul {
display: flex;flex-direction: column;gap: 0.5rem;width: 100%;align-items: flex-start;    text-align: left;margin: 0;padding: 0;
  }
  .banner-inner {
    flex-direction: column;
  }

  .services {
    flex-direction: column;
    gap: 1.5rem; 
  }
  .services .service {
    flex: 1 1 100%;
  }

  .features {
    flex-direction: column;
    gap: 1.5rem; 
  }
  .features .feature {
    flex: 1 1 100%;
  }

  

}



.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .slide {
  position: absolute;   
  inset: 0;
  background-size: cover;
  background-position: center;

  opacity: 0;         
  transition: opacity 1s ease-in-out;
  will-change: opacity;
    pointer-events: none;
  display: grid;        
  place-items: center;


}

.hero .slide.active {
  opacity: 1;
  pointer-events: auto;  
}


.hero .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px) saturate(180%);
  border-radius: 12px;
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  animation: contentIn 1s ease-out 0.5s forwards;
}

@keyframes contentIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero .slide h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.hero .slide p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}


.hero-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}


.hero-tabs {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-tabs button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.hero-tabs button.active {
  background: #f27000;
}

/* responsive tweaks */
@media (max-width: 640px) {
  .hero-content {
    padding: 1.5rem 1rem;
    margin: 5px;
  }
  .hero-tabs {
    gap: 0.25rem;
  }
  .hero-tabs button {
    width: 10px;
    height: 10px;
  }
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  color: #1f313f;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #f27000;
}

.social-links a i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

  .video-teaser {
    text-align: center;
    margin: 1.5rem auto;
  }
  .video-poster {
    position: relative;
    display: inline-block;
    width: 300px;
    max-width: 90%;
    cursor: pointer;
  }
  .video-poster img {
    display: block;
    width: 100%;
    border-radius: 6px;
  }
  .video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    border: none; border-radius: 50%;
    padding: 0.5rem; color: #fff;
    font-size: 1rem; cursor: pointer;
  }
  .video-teaser p {
    margin-top: 0.75rem; font-size: 1rem; color: #1f313f;
  }
  .video-teaser .watch-video {
    font-weight: 600; color: #f27000;
  }

  /* Modal overlay */
  .video-modal {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center; align-items: center;
    z-index: 1000;
  }
  /* Container for the video + close button */
  .video-modal-content {
    position: relative;
    width: 90%; max-width: 400px;
    background: #000; border-radius: 8px;
    overflow: hidden;
  }
  /* Injected video */
  .video-modal-content video {
    width: 100%; display: block;
  }
  /* Close button */
  .video-modal-close {
    position: absolute; top: 8px; right: 8px;
    background: transparent; border: none;
    color: #fff; font-size: 1.5rem;
    cursor: pointer; z-index: 10;
  }



.action-cards {display: flex; gap: 1rem; margin: 2rem auto; max-width: 1400px; padding: 0 1rem;}
.card {position: relative; flex: 1; overflow: hidden; border-radius: 0.5rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.3s ease, box-shadow 0.3s ease;}

.card img {display: block; width: 100%; height: auto; object-fit: cover; transition: transform 0.5s ease;}

.card-overlay {position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(8,24,35,0.6); color: #fff; text-align: center; padding: 1rem; transition: background 0.3s ease;}
.card:hover .card-overlay {background: rgba(8,24,35,0.8);}
.card-overlay h3 {font-size: 2rem; line-height: 1;margin-bottom: 0.5rem;}
.card-overlay p {font-size: 1rem; margin: 0.5rem 0 1rem; max-width: 100%;}
.card-cta {background-color: #f27000; color: #fff; padding: 0.75rem 1.5rem; font-weight: 600; border: none; cursor: pointer; transition: background 0.3s;}
.card-cta:hover {background-color: #f25900;}

.services {
display: flex;flex-wrap: wrap;gap: 2rem;max-width: 1400px;margin: 2rem auto;padding: 0 1rem;
}
.service {
flex: 1 1 calc(33.333% - 2rem);text-align: center;padding: 1.5rem;background: #fff;border-radius: 0.5rem;box-shadow: 0 4px 12px rgba(0,0,0,0.1);transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service:hover {
 transform: translateY(-4px);box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.service i {
font-size: 2.5rem;color: #f27000;margin-bottom: 0.75rem;
}
.service h4 {
font-size: 1.5rem;margin-bottom: 0.5rem;
}
.service p {font-size: 1rem;line-height: 1.4; color: #555;
}

.info-section {
  background: #fff;
  padding: 3rem 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 0 1rem;         /* ensure inner padding on all devices */
}

.info-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f313f;
}

.info-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;     /* give breathing room between paragraphs */
}

.info-content ul,
.info-content ol {
  padding-left: 1.5rem;    /* indent bullets and numbers */
  margin-bottom: 1rem;     /* breathing room below list */
  list-style-position: outside;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .info-section {
    padding: 2rem 0.5rem;   /* a bit less vertical, tighter horizontal */
  }

  .info-content {
    padding: 0;             /* already handled by .info-section */
    margin: 0.5rem;         /* small gutter so text never hits the very edge */
  }

  .info-content h2 {
    font-size: 1.75rem;     /* scale heading down slightly on small screens */
  }

  .info-content p {
    font-size: 0.95rem;     /* slightly smaller body text for readability */
  }

  .info-content ul,
  .info-content ol {
    padding-left: 1rem;     /* slightly less indent on small screens */
  }
}



.highlight-section {background: #fff; padding: 4rem 1rem;}
.container.highlight-content {display: flex; align-items: center; gap: 2rem; max-width: 1400px; margin: 0 auto;}
.highlight-image {width: 50%; border-radius: 0.5rem; object-fit: cover; box-shadow: 0 4px 12px rgba(0,0,0,0.1);}

.highlight-text h2 {font-size: 2.5rem; margin-bottom: 1rem; color: #1f313f;}
.highlight-text p {font-size: 1.125rem; line-height: 1.6; margin-bottom: 2rem; color: #555;}
.highlight-cta {display: inline-block; background-color: #f27000; color: #fff; padding: 0.75rem 1.5rem; font-weight: 600; transition: background 0.3s;}
.highlight-cta:hover {background-color: #f25900;}

.site-footer {
background-color: rgb(8,24,35);color: #fff;padding: 20px 0;
}
.site-footer .container {
display: flex;align-items: flex-start;justify-content: space-between;
}


.footer-brand {
  font-weight: 700;font-size: 1.25rem;
}


.footer-center ul {
display: flex;flex-direction: column;gap: 0.5rem;list-style: none;margin: 0;padding: 0;text-align: center;
}

.footer-right ul {
  display: flex;flex-direction: column;gap: 0.5rem;list-style: none;margin: 0;padding: 0;text-align: right;
}

.footer-nav a {
  color: #fff;font-weight: 600;padding-bottom: 6px;background-image: linear-gradient(#fff, #fff);background-size: 0 2px;background-position: left bottom;background-repeat: no-repeat;transition: background-size 0.3s ease;
}
.footer-nav a:hover {
  background-size: 100% 2px;
}

.footer-brand img {
  display: block;height: 75px;width: auto;
}


.hire-banner {
  background-color: #1f313f;padding: 2.5rem 0; box-shadow: 1px 4px 8px rgba(242, 132, 7, 0.696);
}
.banner-inner {
  display: flex;align-items: center;justify-content: center;flex-wrap: wrap;gap: 1rem;
}
.hire-banner p {
  color: #fff;font-size: 1rem;margin: 0;min-width: 200px;
}
.hire-banner .hire-btn {
  padding: 0.5rem 1rem;font-size: 1rem;
}

.carousel-banner {
margin-top: 10px;overflow: hidden;background: #1f313f;padding: 1rem 0;
}
.carousel-wrapper {
position: relative;
}
.carousel-track {
display: flex;width: calc(20 * 150px); animation: scroll-left 30s linear infinite;
}
.carousel-track img {
  flex: 0 0 auto;width: 150px;height: auto;margin-right: 1rem;object-fit: cover;
}


.carousel-overlay {
  position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);text-align: center;pointer-events: none;
}
.carousel-overlay h2 {
color: #fff;font-size: 2rem;margin-bottom: 0.5rem;pointer-events: auto;
}
.carousel-overlay .hire-btn {
  pointer-events: auto;
}


@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.training-banner {
margin-bottom: 10px;background: url('../resources/training-banner.webp') center/cover no-repeat;position: relative;padding: 3rem 1rem;color: #fff;
}
.training-banner::before {
  content: '';position: absolute;inset: 0;background: rgba(0,0,0,0.5);
}
.training-banner .container {
  position: relative;z-index: 1;
}
.training-inner {
  max-width: 800px;margin: 0 auto;text-align: center;
}
.training-inner h2 {
  font-size: 2.5rem;margin-bottom: 1rem;
}
.training-inner p {
  font-size: 1.125rem;line-height: 1.6;margin-bottom: 1.5rem;
}
.training-inner .hire-btn {
background-color: #f27000;color: #fff;padding: 0.75rem 1.5rem;font-weight: 600;transition: background 0.3s;
}
.training-inner .hire-btn:hover {
  background-color: #f25900;
}

.features {
display: flex;flex-wrap: wrap;gap: 1rem;max-width: 1400px;margin: 2rem auto;padding: 0 1rem;
}
.feature {
flex: 1 1 calc(25% - 1rem);background: #fff;padding: 2rem 1rem;text-align: center;border-radius: 0.5rem;box-shadow: 0 4px 12px rgba(0,0,0,0.08);transition: transform 0.3s, box-shadow 0.3s;
}
.feature:hover {
transform: translateY(-4px);box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.feature i {
  font-size: 2.5rem;color: #f27000;margin-bottom: 1rem;
}
.feature h3 {
  font-size: 1.5rem;margin-bottom: 0.75rem;color: #1f313f;
}
.feature p {
  font-size: 1rem;line-height: 1.6;color: #555;margin-bottom: 1rem;
}
.feature-link {
  color: #f27000;font-weight: 600;text-decoration: none;border-bottom: 2px solid transparent;transition: border-color 0.3s;
}
.feature-link:hover {
  border-color: #f27000;
}


.quick-nav {
position: fixed;right: 1rem;top: 50%;transform: translateY(-50%);background: rgba(8,24,35,0.4);backdrop-filter: blur(8px);border-radius: 8px;padding: 0.5rem;z-index: 500;
}
.quick-nav ul {
  list-style: none;margin: 0;padding: 0;
  display: flex;
    flex-direction: column;
    align-items: flex-end;
    
}
.quick-nav li {
  margin: 0.5rem 0;
}
.quick-nav a {
  display: flex;align-items: center;width: 3rem;height: 3rem;color: #fff;text-decoration: none;border-radius: 4px;transition: width 0.3s ease, background 0.3s ease;overflow: hidden;white-space: nowrap;background: rgba(0,0,0,0.2);
}
.quick-nav a i {
flex-shrink: 0;font-size: 1.25rem;width: 3rem;text-align: center;
}
.quick-nav a span {
opacity: 0;margin-left: 0.5rem;transition: opacity 0.3s ease;
}
.quick-nav a:hover {
  width: 9rem;background: rgba(0,0,0,0.6);
}
.quick-nav a:hover span {
  opacity: 1;
}
.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;
}

.quick-nav-toggle {
display: none;position: fixed;bottom: 1rem;right: 1rem;z-index: 600;background: rgba(8,24,35,0.9);color: #fff;border: none;padding: 0.75rem;border-radius: 50%;font-size: 1.25rem;cursor: pointer;backdrop-filter: blur(8px);
}



@media (max-width: 768px) {
 
  .quick-nav-toggle {
    display: block;position: fixed;bottom: 0.5rem;right: 0.5rem;z-index: 600;background: rgba(8,24,35,0.9);color: #f27000; border: none;padding: 0.75rem;border-radius: 50%;font-size: 1.25rem;cursor: pointer;backdrop-filter: blur(8px);
  }


  .quick-nav {
position: fixed;left: 1rem;right: 1rem;bottom: -4.5rem;           top: auto !important;        transform: none !important;  background: rgba(8,24,35,0.9);backdrop-filter: blur(8px);padding: 0.5rem 0;border-radius: 8px;transition: bottom 0.3s ease;z-index: 500;
  }


  .quick-nav.open {
    bottom: 4.5rem;              
  }


  .quick-nav ul {
display: flex;justify-content: space-around;flex-direction: row;margin: 0;padding: 0;
  }
  .quick-nav li {
    margin: 0;
  }
  .quick-nav a {
flex: 1;display: flex;align-items: center;justify-content: center;padding: 0.5rem;color: #fff;text-decoration: none;
  }
  .quick-nav a span {
    display: none;  
  }
}