:root {
  --bg-dark: #26388a;
  --text-main: #e5e7eb;
  --text-muted: #ffffff;
  --accent: #22c55e;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-main);
  background: #ffffff;
}
h1, h2, h3 {
  font-family: 'Roboto', system-ui, sans-serif;
  color: #f7f4f4;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);

}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
h5 {
  font-family: 'Roboto', system-ui, sans-serif;
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }
  
p {
  color: var(--text-muted);
  margin-bottom: 1.2em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);

}
p2 {
  font-family: 'Roboto', system-ui, sans-serif;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.2em;
}

a {
  color: var(--text-main);
}

a:hover {
  color: var(--accent);
}
.banner-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.book-btn,
button {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
 background: #020820;
  color: #fffcfc;
  line-height: 1.6;
}

  .hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(40, 68, 92, 0.425), rgba(38, 56, 80, 0.466)),
    url("back-logo2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 75px;
}
.hero-slider {
  position: relative;
  height: 80vh;            /* adjust for mobile */
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideFade 15s infinite;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 5s;
}
.slide:nth-child(3) {
  animation-delay: 10s;
}

@keyframes slideFade {
  0%, 33% { opacity: 1; }
  33.01%, 100% { opacity: 0; }
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  max-width: 1200px;
  margin: 0 10;   /* centers nav */
  padding: 28px 20px;
  display: flex;
  align-items: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 92px;        /* main control */
  max-width: 460px;   /* prevents stretching */
  width: auto ;
}

.book-btn {
  margin-left: 32px;
  white-space: nowrap;
}
.book-btn {
  background: #22c55e;
  color: #020617;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.hero-content {
  max-width: auto;
  margin-top: 0.5px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 24px;
  background: white;
  color: #f8f9fa;
  border-radius: 6px;
  text-decoration: slateblue;
  font-weight: 600;
  border: navy;
  cursor: pointer;
}

.primary {
  background: #4e5f86;
  color: white;
}

section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.inpiclogo-photo img {
  width:45%;
  border-radius: 8px;
  border-style: none;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #06103d;
  padding: 30px;
  border-radius: 10px;
}

input, textarea, select {
  padding: 12px;
  border-radius: 6px;
  border: none;
}

footer a {
  color: #22c55e;
  text-decoration: none;
  margin: 0 1px;
}

footer a:hover {
  text-decoration: underline;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.price-card {
  background: #020617;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.price-card h4 {
  margin: 15px 0;
  font-size: 1.5rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.price-card li {
  margin-bottom: 10px;
}

.featured {
  border: 2px solid #22c55e;
  transform: scale(1.03);
}
.about-hero {
  min-height: 60vh;
}

.about-page {
  padding: 80px 20px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
}

.about-photo img {
  width:25%;
  border-radius: 8px;
  border-style: solid;
}

.about-text h2 {
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text ul {
  margin: 20px 0;
  padding-left: 20px;
}

.about-text li {
  margin-bottom: 30px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* enough for any answer */
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.cert-card {
  background: #020617;
  padding: 20px;
  border-radius: 12px;
  border: 4px solid #22c55e;
}

.cert-card h4 {
  margin-bottom: 8px;
  font-weight: 600;
}

.cert-card p {
  font-size: 0.9rem;
  opacity: 0.85;
}
.cert-logo {
  max-width: 80px;
  margin-bottom: 10px;
}
#faq {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.faq-container {
  margin-top: 40px;
}

.faq-item {
  background: #020617;
  border-radius: 10px;
  border: 4px solid #22c55e;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  color: #fff;
  border: rgb(218, 235, 229);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0;
  opacity: 0.9;
}
.legal-page {
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;
}

.legal-page h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-page p {
  opacity: 0.9;
  line-height: 1.7;
}
.video-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
  max-width: 720px;
  border-radius: 36px;
  box-shadow: 0 10px 30px rgba(65, 60, 60, 0.4);
}
/* =========================
   MOBILE FIRST ADJUSTMENTS
   ========================= */

/* Global text scaling */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  section {
    padding: 60px 16px;
  }
}

/* =========================
   NAVIGATION (MOBILE)
   ========================= */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

}

/* =========================
   HERO SECTION (MOBILE)
   ========================= */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    margin-top: 60px;
    text-align: center;
  }
  .img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
}

/* =========================
   PRICING CARDS (MOBILE)
   ========================= */
@media (max-width: 768px) {
  .pricing {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 24px;
  }

  .featured {
    transform: none;
  }
}

/* =========================
   VIDEO (MOBILE)
   ========================= */
@media (max-width: 768px) {
  .video-wrapper iframe,
  .video-wrapper video {
    max-width: 100%;
    height: auto;
  }
}

/* =========================
   ABOUT PAGE (MOBILE)
   ========================= */
@media (max-width: 768px) {

  .about-section {
    padding: 40px 16px;
    display: flex;
    justify-content: center;
  }

  .about-box {
    max-width: 780px;
    width: 200%;
    background:none;
    border-radius: 18px;
    padding: 26px 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  }

  .about-photo img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 22px;
    display: block;
    border-radius: 14px;
  }

  .about-text {
    text-align: left;
  }

  .about-text h2 {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
  .about-text h1 {
    text-align: center;
    font-size: 0.6rem;
    margin-bottom: 16px;
  }
  .about-text p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}



/* =========================
   LEGAL PAGES (MOBILE)
   ========================= */
@media (max-width: 768px) {
  .legal-page {
    padding: 60px 16px;
  }
}
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: #020617;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
}


.main-nav {
  display: flex;
  align-items: left;
  justify-content: space-between;
  padding: 28px 20px;
}

.logo img {
  height: 180px;        /* main control */
  max-width: 480px;   /* prevents stretching */
  width: auto;
}


/* Menu */


/* CTA */
.book-btn {
  background: #22c55e;
  color: #020617;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}




 

  
 

#backToTop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #22c55e;
  color: #020617;
  border: none;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 999;
}
.top-banner {
  width: 100%;
  background: #020617; /* solid banner */
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 180px;        /* main control */
  max-width: 480px;   /* prevents stretching */
  width: auto;
}


/* Navigation */
.banner-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.banner-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 600;
}

.banner-nav a:hover {
  color: #22c55e;
}

/* CTA */
.book-btn {
  background: #22c55e;
  color: #020617;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  white-space: nowrap;
  
 
}

.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}
.training-options {
  padding: 100px 20px;
  text-align: center;
}

.training-options h2 {
  margin-bottom: 50px;
}

.options-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.option-card {
  background: #020617;
  border-radius: 12px;
  border: 2px solid #01162e;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(133, 125, 125, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.option-card img,
.option-card image {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.option-card h3 {
  margin: 20px 20px 10px;
}

.option-card p {
  margin: 0 20px 24px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .options-grid {
    grid-template-columns: 1fr;
  }

  .option-card img,
  .option-card image {
    height: 200px;
  }
}
.contact form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #e5e7eb;
}

.contact input,
.contact textarea {
  margin-top: 6px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
}

.contact textarea {
  min-height: 140px;
  resize: vertical;
}
.form-status {
  margin-top: 16px;
  font-weight: 600;
}

.form-status.success {
  color: #22c55e;
}

.form-status.error {
  color: #ef4444;
}
.hero-slider {
  position: relative;
  height: 35vh;
  min-height: 300px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background: #203dbd;
  border-radius: 12px;
  border: 2px solid #01162e;
  box-shadow: 0 10px 30px rgba(133, 125, 125, 0.35);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  max-width: 1200px;
  max-height: 600px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: auto;
  inset: 01;
  background: rgba(0, 0, 0, 0.55);
}

.overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.overlay h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.overlay p {
  font-size: 1.25rem;
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }

  .overlay h1 {
    font-size: 2.2rem;
  }

  .overlay p {
    font-size: 1rem;
     }
}
.option-card2 {
  background: #656f8b;
  border-radius: 2px;
  border: 0.5px solid #656f8b;
  opacity: 0.75;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 10 10px 30px rgba(27, 13, 13, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.option-card2 {
  max-width: 800px;
  max-height: 800px
}

.option-card2:hover {
  transform: translateY(-6px);
  box-shadow: 10 20px 40px rgba(68, 36, 36, 0.5);
}

.option-card2 img,
.option-card image {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.option-card2 h3 {
  margin: 20px 20px 10px;
}

.option-card2 p {
  margin: 0 20px 24px;
  color: #9ca3af;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;     /* desktop size control */
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;  /* optional polish */
}

.video-poster {
  position: relative;
  cursor: pointer;
}

.video-poster img {
  width: 100%;
  border-radius: 12px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: 0.5px solid #080101;
  border-radius: 50%;
  padding: 12px 18px;
}

/* =========================
   HEADER + NAV (FINAL)
   ========================= */

.top-banner {
  position: relative;
  z-index: 1000;
  background: #020617;
}

.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 120px;
  width: auto;
}

/* Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Nav */
.banner-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* Dropdown desktop */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 220px;
  border-radius: 6px;
  display: none;
}

.dropdown a {
  display: block;
  padding: 12px 16px;
}

.nav-item:hover .dropdown {
  display: block;
}

/* CTA */
.book-btn {
  background: #22c55e;
  color: #020617;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .banner-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #020617;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .banner-nav.active {
    max-height: 600px;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-item a {
    display: block;
    padding: 16px 0;
  }

  /* Disable hover dropdowns on mobile */
  .dropdown {
    display: none !important;
  }

  /* Hide CTA on mobile */
  .book-btn {
    display: none;
  }
}

