
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --------------------------------------------- */
/* HEADER */

header {
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 15px;
}

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.nav-brand img {
  height: clamp(32px, 8vw, 52px);
  width: auto;
  margin-right: 10px;
}

.nav-toggle {
  display: none; /* hidden on desktop */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 10px;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 0.9rem;
}

.social-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  font-size: 1.1rem;
}

.social-icon.bordered {
  border: 1px solid #111;
  border-radius: 50%;
  padding: 5px 6px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: flex;
    align-self: flex-end; /* moves toggle to the far right */
    top: 5%;
    position: absolute;
    border: none;
    cursor: pointer;

  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
  }

  .nav-links.is-open {
    display: flex;
    position: absolute;
    align-items: center;
    align-self: flex-end;
    top: 25px;
    right: -15px;;
    padding: 10px;
    background-color: #f3f2f2;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
}
/* --------------------------------------------- */
/* HERO SECTION */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4vh 6vw 8%; /* up, side side, down */
  background-color: rgba(217, 218, 219, 0.719);
  
 
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-title {
  position: absolute;
  top: 8%;
  left: 16%;
  color: #fff;
  font-size: clamp(0.8rem, 4vw, 3.8rem);
  font-weight: 700;
  width: 80%;
  margin: 0;
  text-align: end;
}
.btn-start {
  background-color: #1a1a2e;
  color: #fff;
  text-decoration: none;
  padding: clamp(12px, 2vw, 30px) clamp(24px, 4vw, 60px);
  border-radius: 50px;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 1.5px;
  font-weight: 600;
  display: inline-block;
  margin-top: clamp(20px, 5vw, 60px);
}
/* --------------------------------------------- */
/* LANDING PAGE FEATURED SECTION */

.featured-title {
    text-align: center;
    margin-bottom: 2%;
    font-size: clamp(1rem, 4vw, 1.8rem);
    margin-top: 3%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 3vw;
    margin-bottom: 5%;
}

.wrapper img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 1.5;
    object-fit: cover;
    border-radius: 8px;
    max-width: 250px;
    margin: 0 auto;
    margin-top: 10px
}

.card-1,
.card-2 {
    background-color: rgba(157, 187, 199, 0.781);
}

.card-main {
    order: -1;
}

.card-1,
.card-2,
.card-main {
    padding: 20px 40px;
    border-radius: 15px;
    border: 2px solid navy;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.card-1 h1,
.card-2 h1,
.card-main h1 {
    font-size: clamp(1rem, 4vw, 2rem);
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}



@media (min-width: 768px) {
    .wrapper {
        flex-direction: row;
    }
    
    .card-1 {
        order: -2;
    }

    .card-1,
    .card-2 {
        margin-top: 5%;
    }
}

/* --------------------------------------------- */
/* FOOTER */

footer {
  background-color: #d4d4d4;
  padding: 50px 60px;
}

.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo img {
  display: block;
  height: 80px;
  width: auto;
  background-color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  border: 2px solid rgb(19, 19, 146);;
}


.explore-follow-wrapper {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.footer-explore,
.footer-follow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-explore h4,
.footer-follow h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.footer-explore a,
.footer-follow a {
  text-decoration: underline;
  color: #444;
  font-size: 0.9rem;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-title {
  font-size: 0.95rem;
  color: #7a6a3a;
  font-weight: 500;
  text-align: center;
}

.newsletter-row {
  display: flex;
  gap: 10px;
}

.newsletter-row input {
  padding: 14px 20px;
  border: 1px solid #ccc;
  border-radius: 50px 0 0 50px;
  font-size: 0.85rem;
  outline: none;
  width: 220px;
  background: #fff;
}

.newsletter-row button {
  padding: 14px 20px;
  background-color: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 50px 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

.newsletter-sub {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

@media (max-width: 975px) {
  .footer-inner {
    flex-direction: column;
  }
  .footer-newsletter {
    width: 100%;
    align-items: center;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
  }
  
  .explore-follow-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }

}
/* --------------------------------------------- */
                 /* PAGES */
/* --------------------------------------------- */


/* LEARNING PAGE */
.learning-hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.learning-intro {
  text-align: center;
  padding: 50px 40px;
  background-color: hsl(240, 80%, 18%)
}
.learning-intro h1 {
  font-size: 3.2rem;
  font-weight: 400;
  color: #ffffff;
}
.page-wrapper {
  position: relative;
  overflow: hidden;
}
.bg-flightpath {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%) rotate(-40deg);
  transform-origin: center center;
  width: auto;
  height: 90%;
  z-index: 1;
  pointer-events: none; /* so it never blocks clicks on cards/links */
  filter: brightness(100%) saturate(100%);
  opacity: 1.0; /* increase from 0.12 since pure black at low opacity reads as gray */
  object-fit: cover;
}
/* --------------------------------------------- */
/* Learning Content - Youtube Video */

.featured-videos-padding {
    background-color: #d4d4d475;
    padding: 40px 60px;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-heading h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color:#2767b6;
}
.section-heading a {
  text-decoration: underline;
  color: #152ea0;
  font-size: 1.1rem;
  padding-top: 10px;
}
.video-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.video-carousel {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.video-card {
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background-color: #f0f0f0; /* match your page background, opaque */
}
.video-card iframe {
  width: 340px;
  height: 200px;
  border-radius: 12px;
  border: none;
}
.yt-link {
  font-size: 0.8rem;
  color: #555;
  text-decoration: underline;
  cursor: pointer;
}
.carousel-btn {
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  cursor: pointer;
  flex-shrink: 0;
}
/* COLOR BREAK */
.color-break-blue {
    height: 20vh;
    background-color: rgb(9, 9, 83);
}
.color-break-white {
    height: 2vh;
    background-color: rgb(255, 255, 255);
}

/* --------------------------------------------- */
/* Learning Content - Blogs */
.grid-wrapper{
    padding: 40px 60px;
    background-color: rgba(212, 212, 212, 0.5);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: hsla(44, 96%, 9%, 0.507);
  border-radius: 10px;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.08);
  text-decoration: none;
  display: block;
  width: 100%;
  z-index: 2;
  transition: transform 0.3s ease-in-out;
  
}

.card:hover {
  border-color: rgba(255,255,255,0.25);
  transition: transform 0.3s ease-in-out;
  transform: scale(1.02);
}

.card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.card-info {
  padding: 12px;
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d317e;
  margin-bottom: 6px;
}

.card-title {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.card-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.774);
  margin-top: 6px;
}


/*---------------------------------------  */
             /* CONTACT PAGE */
/* -------------------------------------- */ 
/* * {
  border: 1px solid red;
} */


/* MOBILE FIRST - Default styles for mobile devices */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem;
  background-color: #e8e5e073;
  min-height: 100vh;
}

.contact-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0;
  flex: 1;
}

.contact-right h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #111;
  margin: 0;
}

.contact-desc {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  color: #444;
  line-height: 1.6;
  max-width: 100%;
  margin: 0;
}

.contact-email {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #555;
  text-decoration: underline;
}

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

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

.form-group > label {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 600;
  color: #111;
}

.required {
  font-weight: 400;
  color: #666;
}

.name-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.field-label {
  font-size: 0.75rem;
  color: #555;
}

input[type="text"],
input[type="email"],
.full-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #000000;
  border-radius: 50px;
  background-color: #e8e5e0;
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
}

input[type="text"]:hover,
input[type="email"]:hover,
.full-input:hover {
  background-color: #f0ede8;
}

.btn-send {
  background-color: #1a1a2e;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  width: fit-content;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.btn-send:hover {
  background-color: #0f0f1e;
}

/* ===== TABLET (640px and up) ===== */
@media (min-width: 640px) {
  .contact-section {
    gap: 2.5rem;
    padding: 2.5rem;
  }

  .contact-image img {
    max-height: 400px;
  }

  .name-row {
    flex-direction: row;
    gap: 1.5rem;
  }

  .form-group {
    gap: 0.75rem;
  }

  .contact-form {
    gap: 2rem;
  }
}

/* ===== TABLET/SMALL DESKTOP (768px and up) ===== */
@media (min-width: 768px) {
  .contact-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem;
    min-height: auto;
  }

  .contact-image {
    flex-shrink: 0;
  }

  .contact-image img {
    width: 350px;
    height: 450px;
    max-height: none;
  }

  .contact-right {
    flex: 1;
    padding-top: 1rem;
  }

  .contact-form {
    gap: 2rem;
    margin-top: 2rem;
  }

  .field-label {
    font-size: 0.8rem;
  }

  input[type="text"],
  input[type="email"],
  .full-input {
    padding: 1rem 1.25rem;
  }

  .btn-send {
    padding: 1rem 2rem;
  }
}

/* ===== DESKTOP (1024px and up) ===== */
@media (min-width: 1024px) {
  .contact-section {
    gap: 4rem;
    padding: 4rem 6rem;
  }

  .contact-image img {
    width: 450px;
    height: 550px;
  }

  .contact-form {
    gap: 2.5rem;
    margin-top: 2.5rem;
  }

  .name-row {
    gap: 2rem;
  }

  input[type="text"],
  input[type="email"],
  .full-input {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .btn-send {
    padding: 1.25rem 2.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
  }
}

/* ===== EXTRA LARGE DESKTOP (1440px and up) ===== */
@media (min-width: 1440px) {
  .contact-section {
    gap: 5rem;
    padding: 5rem 8rem;
  }

  .contact-image img {
    width: 500px;
    height: 600px;
  }

  .contact-right h1 {
    font-size: 3.5rem;
  }

  .contact-form {
    max-width: 600px;
  }

  .contact-right h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
}
/* --------------------------------------------- */
                    /* ABOUT PAGE */
/* --------------------------------------------- */

/* --------------------------------------------- */
/* ABOUT PAGE */


.title-text {
  text-align: center;
  padding: 10px 10px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  
}
/* holding Image, H2, P */
.image-text-wrapper {
    height: auto;
    overflow: hidden;
    margin: 3%;
}
.image-wrapper {
    position: relative;
}
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
/* "who we are" */
.image-text {
    position: absolute;
    bottom: 10%;
    left: 5%;
    margin: 0;
    font-size: clamp(1.0rem, 8vw, 8.0rem);
    font-weight: 700;
    color: #ffffff;
}
/* long text section */
.text-wrapper {
    height: auto;
}
.long-text {
    font-size: clamp(0.8rem, 4.5vw, 5.0rem);
    font-weight: 700;
    margin-top: 15px;
    padding: 5px;
    background-color: hsla(22, 12%, 41%, 0.281);
    color: rgb(117, 96, 53);
    border-radius: 8px;
}
@media (min-width: 760px) {
    .title-text {
        font-size: clamp(1.0rem, 5vw, 8.0rem);
        font-weight: 700;
        color: #460000;
    }
}
@media (min-width: 1000px) {

    .image-wrapper {
        width: 45%;
        display: flex;
        float: right;
        margin: 15px;
        margin-left: 15px;
    }

    /* "who we are" */
    .image-text {
        font-size: clamp(1.0rem, 5vw, 8.0rem);
        left: 2%;
    }

    .long-text {
        font-size: clamp(0.8rem, 2.5vw, 4rem);
        margin-top: 0;
        padding: 15px;
        text-align: left;
    }
    .title-text {
        font-size: clamp(1.0rem, 3.5vw, 8.0rem);
        font-weight: 700;
    }
}
/* --------------------------------------------- */
                    /* Blog Template */
/* --------------------------------------------- */

