/* === ISCA Landing Page Styles (Based on Figma Dev Mode) === */

/* --- Variables & Basic Reset --- */
:root {
    --primary-orange: #FF4F00;
    --black: #000000;
    --dark-grey-1: #111111;
    --dark-grey-2: #222222;
    --dark-grey-3: #333333;
    --white: #FFFFFF;
    --text-grey-1: #CCCCCC;
    --text-grey-2: #AAAAAA;
    --input-bg: #FFFFFF;
    --input-text: #333333;

    /* TODO: Define font families based on Figma inspection */
    --font-heading: 'HeadingNow', sans-serif;
    --font-body: 'NHaasGroteskTXPro', sans-serif;
}

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

@font-face {
    font-family: 'HeadingNow';
    src: url('../fonts/HeadingNow-46Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'HeadingNow';
    src: url('../fonts/HeadingNow-46BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'NHaasGroteskTXPro';
    src: url('../fonts/NHaasGroteskTXPro-55Rg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'NHaasGroteskTXPro';
    src: url('../fonts/NHaasGroteskTXPro-75Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }
  

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: #ccc;
    line-height: 1.6;
    font-size: 16px; /* Base font size */
    overflow-x: hidden; /* Prevent horizontal scroll */
    padding-top: 80px; /* equal to .nav-wrapper height */
    width: 100%;
}

html {
    scroll-behavior: smooth;
      overflow-x: hidden;
    width: 100%;
}

.site-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-size: 3.33rem;

    font-weight: 700;
    color: #fff; /* Or black depending on background */
    text-transform: uppercase;
  }

  h2 {
    font-style: italic;
  }



p {
    margin-bottom: 1rem;
    color: var(--text-grey-1);
}

a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-orange);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 80px 0; /* Adjust based on Figma */
}



/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px; /* Adjust based on Figma */
    border: none;
    cursor: pointer;
    font-weight: 700; /* Bold */
    text-transform: uppercase;
    font-family: var(--font-secondary);
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    border-radius: 4px; /* Slight rounding */
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e04500; /* Darker orange */
    color: var(--white);
}

.btn-secondary {
    background-color: var(--black);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-submitted {
    background-color: var(--dark-grey-3);
    color: var(--text-grey-2);
    cursor: default;
}

/* --- Header --- */
#main-header {
    background-color: var(--black);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--dark-grey-3);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#main-header .logo img {
    height: 40px; /* Adjust based on Figma */
}

#main-header nav {
    display: block; /* Changed for mobile nav */
}

#main-header nav ul {
    display: flex;
    align-items: center;
}

#main-header nav ul li {
    margin-left: 30px; /* Adjust based on Figma */
}

#main-header nav ul li a {
    font-weight: 600; /* Semi-bold */
    font-size: 1.1rem;
    font-family: 'HeadingNow';
    text-transform: uppercase;
}

.menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}
/* --- Hero Section --- */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px; /* leave space for the fixed nav */
    background-color: var(--black);
    padding: 60px 0; /* Add vertical breathing room */
  }
  
  .hero-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    padding: 0;
    justify-content: space-between;
    align-items: center; /* Center both sides vertically */
    padding: 0 20px;
    z-index: 0;
  }
  
  
.hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-left .site-container {
  padding: 0;
  margin: 0 auto;
}

.hero-left img {
  max-width: 90%;
  height: auto;
  display: block;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  max-width: 120%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: -40px;
}

/* Optional: tweak for smaller screens */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .hero-left, .hero-right {
    width: 100%;
    justify-content: center;
    margin-bottom: 0;
  }

  .hero-left img,
  .hero-right img {
    max-width: 100%;

  }
}
  
/* --- Partner Logos Section --- */
/* --- Partner Logos Section --- */
#partners{
  background: var(--primary-orange);
  padding: 30px 0;
  overflow: hidden;
}

.partner-bar{
  display:flex;
  align-items:center;
  max-width:100%;
}

.partner-static{flex:0 0 auto;padding:0 20px;color:#000;}

.partner-static h3{font-size:1.25rem;font-weight:700;line-height:1.3;text-transform:uppercase;margin:0;}
.partner-static h3 span{font-weight:400;}

.logo-strip{flex:1 1 auto;overflow:hidden;}
.logo-track{
  display:flex;
  gap:30px;
  width:max-content;                 /* natural width – grows as we clone */
  animation: marquee 30s linear infinite;
}
.logo-track img{height:40px;flex-shrink:0;display:block;}

@keyframes marquee{
  0%   {transform:translateX(0);}
  100% {transform:translateX(calc(-1 * var(--set-width)));}  /* see JS */
}



/* --- Text Sections (Overview, Training) --- */
.text-section {
    background-color: var(--dark-grey-1);
}

.text-section h2 {
    color: var(--white);
}

.text-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.1rem;
}

/* --- Careers Section --- */
#careers {
    background-color: var(--black);
}

#careers h2 {
    color: var(--white);
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.career-item {
    background-color: var(--dark-grey-2);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--dark-grey-3);
    color: var(--text-grey-1);
    /* Add icon styles if applicable */
}



/* --- CTA Section --- */
#cta-section {
    background-color: white;
    padding: 100px 0 0;
    position: relative;
    color: #000000;

  }
  
  .cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .cta-left {
    flex: 1 1 60%;
  }
  
  .cta-left h2 {
    font-size: 3.33rem !important;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  
  
  .cta-left .highlight-orange {
    color: var(--primary-orange);
    display: inline-block;
  }

  .cta-left .highlight-black {
    color: #000000;
    font-style: italic;
  }
  
  .cta-left p {
    font-family: 'Neue Haas Grotesk Display Pro Roman', sans-serif;

    color: #111111;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    max-width:  300px;
  }
  
  .cta-left a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
  }
  
  .cta-right {
    flex: 1 1 35%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .cta-footer-banner {

    width: 100%;
    margin-top: -5px;
  }
  
  .cta-footer-banner img {
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .cta-container {
      flex-direction: column;
      text-align: center;
      align-items: center;
      gap: 30px;
      
    }

    #cta-section {
    background-color: white;
    padding: 0 0 0;
    position: relative;
    color: #000000;

  }
  
 .cta-left{
  margin-top: 40px;
    display:flex;              /* make it a flex box            */
    flex-direction:column;     /* stack heading + paragraph      */
    align-items:center;        /* centre horizontally            */
    text-align:center;         /* centre the inline text itself  */
  }

  .cta-left p{
    max-width:300px;           /* optional: keep line-length tidy */
    margin:0 auto;             /* auto side-margins safeguard    */
  }

    .cta-right {
      justify-content: flex-start;
      width: 100%;
    }
  }

   .cta-footer-banner {
    height: 50px;
    width: 100%;

    overflow-y: hidden;
    margin-top: -5px;
  }
  
  .cta-footer-banner img {
    
    min-width: 800px;
    display: block;
    height: 50px;
  }
  
/* --- Footer --- */
#main-footer {
    background-color: var(--dark-grey-1);
    color: var(--text-grey-2);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding-top: 0 !important;
    font-family: 'Neue Haas Grotesk Display Pro Roman', sans-serif;
  }

  .footer-left img {
    display: none;
  }

  .footer-logo {
    margin-bottom: 0;
    display: block;
  }

  .footer-socials {
    margin-top: 20px;
    justify-content: center;
    order: 3; /* Position it after both partners */
  }

  .footer-centre {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .partner {
    width: 100%;
  }

  .partner title img{
    margin-top: 10px;
  }


  .footer-centre-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-legal {
    padding: 0 20px;
    font-size: 0.7rem;
    text-align: center;
  }
}


/* TODO: Add footer logo, nav, social links, RTO info */

/* --- Modal Styles --- */

.register-modal {
  max-width: 1200px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--black);
    margin: 5% auto;
    width: 90%;
    max-width: 1400px;
    position: relative;
    display: flex;
    border: 1px solid var(--dark-grey-3);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--text-grey-2);
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    z-index: 10;
}

.close-btn:hover {
    color: var(--white);
}

.modal-image {
    flex: 1;
    min-height: 500px; /* Adjust */
    background-color: var(--dark-grey-2); /* Fallback */
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-form, .modal-text {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal h2 {
    color: var(--primary-orange);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modal p {
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* --- Form Styles --- */
#registration-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
 
}

#registration-form input[type="text"],
#registration-form input[type="email"],
#registration-form input[type="tel"],
#registration-form select {
    width: 100%;
    padding: 12px;
    background-color: var(--input-bg);
    border: 1px solid var(--dark-grey-3);
    color: var(--input-text);
    font-size: 1rem;
    font-family: var(--font-primary);
    border-radius: 4px;
}

#registration-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FF4F00' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); /* Simple orange arrow */
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

#registration-form button[type="submit"] {
    width: auto;
    margin-top: 1rem;
}

#registration-form small {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-grey-2);
}

/* --- Responsive Styles --- */

/* Tablet Styles (<= 992px) */
@media (max-width: 992px) {
    h2 { font-size: 2.2rem; }
    section { padding: 60px 0; }

    #main-header .container {
        position: relative;
    }
    #main-header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--black);
        border-top: 1px solid var(--dark-grey-3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
    }
    #main-header nav.active {
        max-height: 500px; /* Adjust as needed */
    }
    #main-header nav ul {
        flex-direction: column;
        padding: 20px 0;
        align-items: flex-start;
    }
    #main-header nav ul li {
        margin: 10px 0;
        margin-left: 5%; /* Indent mobile links */
        width: 90%;
    }
    #main-header .register-btn {
        display: none; /* Hide desktop button */
        font-family: 'HeadingNow';
        font-size: 1.25rem;

    }
    .menu-toggle {
        display: block; /* Show hamburger */
    }

    #hero {
        min-height: 70vh;
    }
    #hero h1 { font-size: 4rem; }
    #hero .hero-content { max-width: 70%; }

    .trimesters-container {
        grid-template-columns: 1fr; /* Stack trimesters */
    }

    .modal-content { flex-direction: column; max-width: 500px; margin: 10% auto; }
    .modal-image { min-height: 250px; }
}

/* Mobile Styles (<= 768px) */
@media (max-width: 768px) {
    h2 { font-size: 1.8rem; }
    section { padding: 40px 20px; /* Reduce section padding */ }

    #hero {
        min-height: 60vh;
    }
    #hero h1 { font-size: 3rem; }
    #hero .hero-content { max-width: 85%; }

    .logo-scroll { gap: 25px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding: 0 5%; }
    .logo-scroll::-webkit-scrollbar { display: none; } /* Hide scrollbar */
    .logo-scroll { -ms-overflow-style: none; scrollbar-width: none; } /* Hide scrollbar */

    .career-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }

    #registration-form .form-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 0; /* Remove bottom margin */
    }
    #registration-form .form-row > * {
        margin-bottom: 1rem; /* Add margin to individual elements */
    }

    #cta h2 { font-size: 2.2rem; }
    #cta p { font-size: 1rem; }

    .modal-form, .modal-text { padding: 30px; }
    .modal h2 { font-size: 2rem; }

    h1, h2, h3 {
        font-size: 1.8rem; /* Adjust heading sizes */
    }
    p {
        font-size: 0.9rem; /* Smaller body text */
        line-height: 1.4;
    }

    .cta-container {
      gap: 20px; /* Reduce gaps between elements */
    }
}

/* Smaller Mobile Styles (<= 576px) */
@media (max-width: 576px) {
    h2, .curriculum-title { font-size: 1.4rem; }
    section { padding: 40px 0; }

    #hero {
        min-height: 50vh;
    }
    #hero h1 { font-size: 2.5rem; }
    #hero .hero-content { max-width: 90%; }

    .career-grid { grid-template-columns: 1fr; }
    .btn { padding: 10px 18px; font-size: 0.9rem; }

    .modal-content { margin: 15% auto; width: 95%; }
    .modal-form, .modal-text { padding: 25px; }
    .modal h2 { font-size: 1.8rem; }

    .footer-socials {
        justify-content: center;
        margin-bottom: 10px;
      }
    
      .footer-logo {
        margin: 0 auto 20px;
      }
    
      .footer-legal {
        padding-top: 10px;
      }

.signup-right h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .video-text h2 {
    font-size: 1.6rem;
  }
}


/* === CUSTOM NAVIGATION BAR STYLING === */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    background-color: #242424;
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    font-size: 1.25rem !important;
  }
  
  .nav-left {
    background: white;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 70px;
  }
  
  .nav-left img {
    height: 40px;
  }
  
  .nav-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;


  }
  
  .nav-center ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
  }
  
  .nav-center ul li a {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.25rem !important;
    transition: color 0.3s ease;
    
  }
  
  .nav-center ul li a:hover {
    color: var(--primary-orange);
  }
  
  .nav-right {
    background: var(--primary-orange);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 1.25rem !important;
  }
  
  .nav-right .register-btn {
    font-family: 'HeadingNow';
    background: none;
    border: none;
    color: #000;
    font-weight: 800;
    font-size: 1.25rem !important;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  
  .nav-right .register-btn img.btn-icon {
    width: 20px;
    height: 20px;
  }
 

  @media (max-width: 768px) {
    .nav-wrapper {
      flex-wrap: wrap;
      height: auto;
      display: none;
    }
  
    .nav-left,
    .nav-right {
      width: 100%;
      justify-content: space-between;
      padding: 10px 20px;
      clip-path: none;
    }
  
    .nav-left {
      background: white;
      padding: 10px 20px;
    }
  
    .nav-right {
      background: var(--primary-orange);
      justify-content: center;
      padding: 10px;
    }
  
    .menu-toggle {
      display: block;
      background: none;
      border: none;
      color: #242424;
      font-size: 2rem;
      margin-left: auto;
    
    }
  
    .nav-center {
      width: 100%;
      background: #000;
      display: none;
      flex-direction: column;
      z-index: 999;
      top: 60px;
    }
  
    .nav-center.active {
      display: flex;
    }
  
    .nav-center ul {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 20px 0;
    }
  
   
  }
  

  
  .logo-strip {
    overflow: hidden;
    position: relative;
  }
  
  .logo-track {
    display: flex;
    width: max-content;
    gap: 60px; /* This creates spacing between the two sets */
    animation: scrollLoop 30s linear infinite;
    padding: 0 10px;
  }
  
  .logo-set {
    display: flex;
    gap: 60px;
  }
  
  .logo-set img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
  }
  
  @keyframes scrollLoop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  

  #partners {
    background-color: var(--primary-orange);
    padding: 0;
    overflow: hidden;
  
  }
  
  .partner-bar {
    display: flex;
    align-items: center;
  }
  
  .partner-static {
    flex-shrink: 0;
    padding: 20px 30px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000 !important;
    width: 180px;
    background-color: var(--primary-orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .partner-static p {
    margin: 0;
    color: #000 !important;
    text-align: left;
    line-height: 1.2;
  }
  
  .logo-strip {
    overflow: hidden;
    flex: 1;
    position: relative;
  }
  
  .logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollLoop 30s linear infinite;
  }
  
  .logo-set {
    display: flex;
    gap: 40px;
  }
  
  .logo-set img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
  }
  
  @keyframes scrollLoop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  @media (max-width: 768px) {
    .partner-static {
      display: none;
    }

    #partners {
    padding: 30px 0 !important;
  }
  
    .logo-track{
    animation: none;
    transform: none !important;   /* cancel any inline transform */
    overflow: hidden;
    width: 100%;
  }

  .logo-track .logo-set:not(:first-child){
    display: none;                /* hide any clones if JS ran */
  }

  /* 2. Lay out the seven logos so they all fit */
  .logo-set{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 3vw;                     /* responsive gap ≈ 3 % of viewport */
  }

  .logo-set img{
    /* clamp(): never smaller than 40 px, never larger than 80 px,
       scales fluidly in between so seven logos + gaps ≈ 100 vw   */
    width:  clamp(40px, 11vw,  40px);
    height: clamp(40px,  4vw,  30px);
    flex:   0 0 auto;             /* prevent stretching */
  }

}
  /* VIDEO SECTION */
#video-section {
  background-color: #000;
  padding: 60px 20px 40px;
  color: white;
  text-align: center;
}

.video-text {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Neue Haas Grotesk Display Pro Roman', sans-serif;
}

.video-text h2 {
  font-size: 3.8rem !important; /* ≈48pt */
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 54px;
}

.industry-wrapper {
  position: relative;   /* establishes a containing block */
}


.aboveimage-text {
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: 600px;
  margin: 0;
  margin-top: 50px;

  font-family: 'Neue Haas Grotesk Display Pro Roman', sans-serif;  z-index: 2;           /* higher than the image */
  pointer-events: none; /* keeps the image clickable, if needed */
}


.aboveimage-text h2 {
  font-size: 3.8rem !important; /* ≈48pt */
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 54px;
   z-index: 1;
   font-family: 'HeadingNow', sans-serif; /* replace with your actual font if needed */
}

.aboveimage-text span {
  color: black;
  font-size: 3.8rem ; /* ≈48pt */
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 54px;
}

.aboveimage-text p {
  color: rgb(255, 255, 255);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 24px;
  
}



@media (max-width: 768px) {
 .aboveimage-text{
  position:static;                        /* drop out of absolute flow   */
  transform:none;
  max-width:600px;
  margin:0 auto 2rem;
  padding: 40px;
}

  @media(max-width:768px){
   .industry-image-desktop{ display:none; } 
}

  /* shrink ALL parts of the headline together */
  .aboveimage-text h2,
  .aboveimage-text h2 span,
  .aboveimage-text h2 em{
    font-size:clamp(3.33rem,7vw,3.33rem) !important;   /* same size */
    line-height:1.0 !important;
  }

  .aboveimage-text p{
    font-size:clamp(0.9rem,4.5vw,1.1rem) !important;
    line-height:1.4;
    font-style: normal;
    width: 100%;
    
  }
}


.video-text .highlight-orange {
  color: var(--primary-orange);
}

.video-text em {
  font-style: italic;
  font-weight: 600;
}

.video-text p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin: 30px 0;
  padding: 0 10px;
}

/* Video Wrapper */
.video-wrapper {
  width: 100% !important;
  max-width: 1200px;
  margin: 60px auto 40px;
  aspect-ratio: 16 / 9;
  position: relative;
  padding: 0 !important;
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100% !important;
  height: auto !important;
  display: block;
  border: none;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .video-wrapper {
    max-width: 100%;
    margin: 0 auto 40px;
  }

  .video-text h2 {
    font-size: 2.8rem !important;
    line-height: 2.6rem !important;
  }

  .register-button-cta .register-btn {
    padding: 14px 40px;
    font-size: 1rem !important;
  }
}

/* CTA Button */
.register-button-cta {
  text-align: center;
  font-size: 1.25rem !important;
  margin-bottom: 60px;
}

.register-button-cta .register-btn {
  background-color: var(--primary-orange);
  font-family: 'HeadingNow';
  color: black;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.25rem !important;
  padding: 16px 80px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  cursor: pointer;
}



.register-button-cta .btn-icon {
  width: 20px;
  height: 20px;
}


/* PROGRAM OVERVIEW */

  #program-overview {
    background-color: #000;
    padding: 30px 30px;
    color: white;
    font-family: 'Neue Haas Grotesk Display Pro Roman', sans-serif;
  }
  
  .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .overview-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .overview-card img {
    max-width: 540px;
    height: auto;
    margin-bottom: 20px;
     cursor: pointer; 
  }

@media (max-width: 768px) {
    .overview-card img {
    max-width: 98%;
    height: auto;
    margin-bottom: 20px;
     cursor: pointer; 
  }
}
  
  .overview-card h3 {
   
    font-size: 2.2rem !important;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 24px;
    line-height: 0.5;
    font-style: normal !important; /* remove italics */
    font-weight: 700;
  }
  
  .overview-card .highlight-orange {
    color: var(--primary-orange);
    display: block;
    font-style: normal !important; /* remove italics */

  }
  
  .overview-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 420px;
    font-style: normal !important; /* remove italics */

  }

  #facility-img {
  transition: opacity 0.3s ease-in-out;
}
#facility-img.fade-out {
  opacity: 0;
}

  /* SCROLL BANNER */

  #scroll-banner {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 80px !important;
    padding-bottom: 0 !important;
  

  }
  
  .scroll-banner {
    position: relative;
    width: 100%;
    height: auto;
  }
  
  .scroll-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
  
  .scroll-image.bg {
    z-index: 1;
  }
  
  .scroll-image.fg {
    z-index: 2;
  }

  @media (max-width: 768px) {
  #scroll-banner {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  
  }
  }

  

  #career-paths {
    background-color: #000;
    font-family: 'NHaasGroteskTXPro', sans-serif;
    position: relative;
    margin-top: 50px;
    padding: 200px 0 0;
    overflow: visible;
    z-index: 0;
}

 @media (min-width: 2000px) {
     #career-paths {
   padding: 240px 0 0;
     }
 }

  @media (min-width: 2400px) {
     #career-paths {
   padding: 300px 0 0;
     }
 }

   @media (min-width: 2800px) {
     #career-paths {
   padding: 400px 0 0;
     }
 }


  
  .career-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 180px 5% 100px; 
    z-index: 2;

  }
  
  .career-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000 0%, rgba(0,0,0,0) 100%), url("../images/backgrounds/studentbackground.png") no-repeat center right;
    background-size: cover;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  @media (max-width: 768px) {
  .career-container::before {
    background: #000; /* or remove entirely */
    background-image: none;
  }
}
  
  .career-left {
    flex: 1;
    max-width: 55%;
   
    z-index: 2;
  }
  
  .career-left h2 {
    font-family: 'HeadingNow', sans-serif; /* replace with your actual font if needed */
    font-weight: 700;
    font-size: 3.75rem !important;
    line-height: 54px;
    margin-bottom: 40px;
    text-align: left;
    text-transform: uppercase;
  }
  
  .career-left h2 .highlight-orange {
    color: var(--primary-orange);
    font-style: italic;
    display: inline-block;
  }
  
  .career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .career-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: white;
  }
  
  .career-icon-card {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-bottom: 10px;
  }
  
  .career-icon-card img {
    max-width: 80px;
    height: auto;
  }
  
  .career-item p {
    font-size: 0.85rem;
    margin: 0;
    
  }
  
  @media (max-width: 768px) {
    .career-container {
      flex-direction: column;
      text-align: center;
   
    }
  
    .career-left,
    .career-right {
      max-width: 100%;
    }

    #career-paths {
        padding-top: 0;
      }

      .career-grid {
        grid-template-columns: repeat(2, 1fr); /* or 1fr for single-column */
        gap: 16px;
      }
    
      .career-item p {
        font-size: 0.85rem;
        line-height: 1.3;
        padding: 0 5px;
      }
    
      .career-left h2 {
        font-size: 3.33rem !important;
        text-align: center;
      }
    
      .career-left {
        max-width: 100%;
        padding: 0 10px;
      }

      


  }
  
  
  .career-orange-tilt {
    position: relative;
    margin-top: -80px;
    left: 0;
    width: 100vw;
    height: 100px;
    background-color: var(--primary-orange);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    z-index: 3;
    pointer-events: none;
    bottom: -1px;
  }

  
  
  

 #connected-industry {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: -1px;
  margin-top: -1px;
  background: #ff5100;
  overflow: hidden; /* Or set a background if needed */
  
}





.industry-image-mobile {
  display: none;
}

.industry-image-desktop {
  display: block;
  width: 100%;

  height: auto;
}

  /* Mobile override */
@media (max-width: 768px) {
  #connected-industry {
   position:relative;
  background:#ff5100;                     /* same orange */
  padding:0;                              /* image now supplies no padding */
  overflow:hidden;          
  }
  .industry-image-desktop {
    display: none !important;
  }

  .industry-image-mobile {
    position: relative;
    display: block !important;
    max-width:80%;          /* whatever breathing-room you like     */
  width:100%;             /* or leave it auto – just not 100 vw   */
  margin:0 auto 50px;     /* auto L/R centres the image           */
  padding-bottom:50px;  
  }

  .industry-wrapper {
   background:#ff5100;                     /* colour comes from CSS now   */
   clip-path:polygon(0 6vw, 100% 0, 100% 100%, 0 100%);  text-align:center;
   padding: 3rem   clamp(1rem,5vw,2.5rem)  4rem;               /* gives copy breathing room   */
  position:relative;

  }

.industry-wrapper h2,
.industry-wrapper h2 span,
.industry-wrapper h2 em{
  font-size:clamp(1.8rem,7vw,3.33rem);
  line-height:1.2;
}

}


  /*TESTIMONIALS SECTION*/
  #testimonials {
    background-color: #fff;
    color: #000;
    padding: 100px 20px;
    font-family: 'NHaasGroteskTXPro-55Rg', sans-serif;
  }
  
  .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }

  #testimonials-container::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px; /* Height of the white angled section */
    background-color: white;
    /* Create a downward slope from left (full height) to right (zero height) */
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    z-index: 5;
    
  }
  
  
  .testimonials-container h2 {
    font-family: 'HeadingNow', sans-serif;
    font-weight: bold;
    font-style: italic;
    color: #000;
    font-size: 3.33rem !important;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 60px;
    line-height: 0.9;
  }
  
  .testimonials-container h2 .highlight-orange {
    color: var(--primary-orange);
  }
  
  .testimonial-carousel {
    position: relative;
  }
  .testimonial-slide {
    display: none;
    justify-content: center;
    margin-bottom: 60px;
  }

  .testimonial-slide.active {
    display: flex;
  }
  
  .testimonial-content {
    display: flex;
    flex-direction: row;
    align-items: center;
  
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-quote p span.numbers {
    font-family: 'Arial', sans-serif; /* Fallback for just numbers */
  }
  
  .testimonial-img-wrapper {
    width: 290px;
    height: 290px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .testimonial-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-quote {
    max-width: 800px;
    text-align: left;

  }
  
  .testimonial-quote p {
    font-family: 'HeadingNow', sans-serif !important;
    color: var(--primary-orange);
    font-weight: 700;
    font-style: italic;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .testimonial-quote cite {
    font-family: 'NHaasGroteskTXPro-55Rg', sans-serif;
    font-size: 0.95rem;
    color: #000;
    font-style: normal;
    display: block;
  }
  
  @media (max-width: 768px) {
    .testimonial-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .testimonial-quote {
      text-align: center;
    }
  }
  
  
  .testimonial-pagination {
    margin-top: 30px;
    text-align: center;
  }
  
  .testimonial-pagination .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #999;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .testimonial-pagination .dot.active {
    background-color: var(--primary-orange);
  }
  
    
  /* WHAT DO I STUDY */
  #study-at-isca {
    background-color: var(--black);
   
    position: relative;
    padding: 120px 0 0;
    overflow: visible;
    z-index: 0;
  }
  

  
  #study-at-isca::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px; /* Height of the white angled section */
    background-color: white;
    /* Create a downward slope from left (full height) to right (zero height) */
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    z-index: 5;
    
  }
  /*
  #study-at-isca::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px; 
    background-color: var(--primary-orange);
  
    
    clip-path: polygon(0 90%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
  } */

    
  .study-orange-tilt {
    position: relative;
    margin-top: -180px;
    left: 0;
    bottom: -1px;
    width: 100vw;
    height: 100px;
    background-color: var(--primary-orange);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
    z-index: 3;
    pointer-events: none;
  }
    
  .study-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    position: relative;
    padding: 0 ;
  }
  
  .study-left {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    display: flex;
    align-items: flex-end;

  }
  
  .student-img {
    width: 100%;
    z-index: 1;
    margin-left: 0px;
    margin-bottom: 100px;
    
    
    position: relative;
  }
  
  .arrow-bg {
    position: absolute;
    top: -80px;
    left: 0;
    max-width: 60%;
    margin-left: 180px;
    z-index: 0;
    opacity: 0.8;
  }
  
  .study-right {
    padding-top: 60px;
    flex: 1;
    color: white;
  }
  
  .study-right h2 {
    font-family: 'HeadingNow', sans-serif;
    font-weight: bold;
    font-style: italic;
    text-align: left; /* Figma shows left-aligned */
    text-transform: uppercase !important;
    font-size: 3.33rem !important;
    line-height: 1;
  }
  
  .study-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
  }
  
  .study-item {
    border-bottom: 2px solid var(--primary-orange);
    margin-bottom: 20px;
  }
  
  .study-header {
    font-family: 'HeadingNow', sans-serif;
    font-size: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    font-weight: 600;
    font-size: 1.1rem;
     text-transform: uppercase !important;
  }

  .study-header span {
    font-size: 2rem;
    font-weight: 600;
  }
  
  .plus-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('../images/icons/plus.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .highlight-orange {
    color: var(--primary-orange);
    font-style: italic;
  }
  
  
  .study-content {
    max-height: 0;
    font-family: 'Neue Haas Grotesk Display Pro Roman', sans-serif;
    margin-bottom: 20px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    font-size: 0.95rem;
    color: var(--text-grey-1);
    padding-top: 0;
  }
  
  .study-item.active .study-content {
    max-height: 300px;
    opacity: 1;
    padding-top: 10px;
  }
  
  .study-item.active .plus-icon {
    transform: rotate(45deg); /* + becomes × */
  }

  
/* Responsive tweaks */
@media (max-width: 768px) {
    .study-container {
      flex-direction: column;
      align-items: flex-start;
      padding: 0 20px;
      max-width: 90%;
    }

    .study-list
    {
      
        margin-bottom: 100px !important;
    }
    
    .study-left {
        padding-bottom: 20px;
        display: none;
    }
  
    .student-img {
      margin-left: 0;
      width: 80%;
    }
  
    .study-right {
      padding-left: 0;
      width: 100%;
      padding-top: 40px;
    }

    .study-right h2 {
       font-size: 3.33rem !important;
        line-height: 1;
        text-align: center;
        
      }

      .study-header {
        padding: 15px 10px;
        font-size: 1rem;
        text-transform: uppercase !important;
      }
    
      .study-content {
        font-size: 0.9rem;
        
        line-height: 1.5;
      }
    
      .plus-icon {
        width: 24px;
        height: 24px;
      }

      .study-orange-tilt {
        height: 60px;
        margin-top: 20px;
      }

}

/* Course Curriculum */
    #course-curriculum {
        position: relative;
        background-color: var(--primary-orange);
        color: white;
        padding: 100px 20px;
        z-index: 1;
        overflow: hidden;
    
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
      }
      
      .curriculum-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
      }
      
      .curriculum-title {
        font-size: 3.33rem !important;
        line-height: 1;
        font-weight: 900;
      }

      .curriculum-title .highlight-black {
        color: #000000;
        font-style: italic;
      }
      
      .curriculum-title .highlight-orange {
        font-family: 'HeadingNow', sans-serif;
        font-weight: bold;
        font-style: italic;
        color: white;
        font-style: italic;
        font-weight: 900;
      }
      
      .curriculum-subtitle {
        font-family: 'HeadingNow', sans-serif;
        font-size: 1.5rem !important;
        color: white;
        text-transform: uppercase;
        font-weight: 100;
        margin-top: 20px;
        margin-bottom: 40px;
        line-height: 1.1;
      }
      
      .curriculum-table {
        width: 100%;
        border-collapse: separate;
        background-color: #ff5100;
        color: black;
      }
      .curriculum-table th,
      .curriculum-table td {
        width: 50%;
        text-align: left;
        border: 1px solid var(--primary-orange);
        padding: 16px;
        font-size: 1rem;
        font-family: 'Neue Haas Grotesk Display Pro Bold', sans-serif;

      }

      .curriculum-table th {
        background-color: black;
        color: white;
        font-family: 'Neue Haas Grotesk Display Pro Bold', sans-serif;
      }

      .curriculum-table td {
        font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
        background-color: white;
      }

      .curriculum-table .group-row td {
        background-color: #242424;
        color: white;
        font-weight: bold;
        font-family: 'Neue Haas Grotesk Display Pro Bold', sans-serif;
        text-align: left;
        padding: 12px;
        border: none;
      }
  

  



      /* === FAQ Section === */
#faq {
    background-color: var(--black);
    position: relative;
    padding: 80px 0;
    color: white;
    overflow: hidden;
    
    

  }
  
    .faq-skew-bottom {
    position: absolute;
    clip-path: polygon(100% 0, 0 100%, 100% 100%, 100% 0);

    left: 0;
    width: 100%;
    bottom: -1px;
    height: 80px;
    background-color: #ffffff;
    z-index: 1;
    
  }
  
  .faq-skew-top {
    top: 0;
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 0);   
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #ff5100;
    z-index: 1;
    
  }

  

  
  .faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
  }
  
  .faq-heading {
    text-align: center;
    font-size: 3.33rem !important;
    line-height: 1;
    margin-bottom: 50px;
    text-transform: uppercase;
  }
  
  .faq-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
  }
  
  .faq-item {
    border-bottom: 2px solid var(--primary-orange);
    margin-bottom: 15px;
  }
  
  .faq-question {
    font-family: 'HeadingNow', sans-serif;
    font-size: 1.8rem !important;
    background: none;
    border: none;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    padding-top: 15px;
    padding-bottom: 28px;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
  }

 @media (max-width: 768px) {
  .faq-question {
    max-width: 100%; /* Full width for the button */
  }

   .faq-question span{
    line-height: 1; /* Full width for the button */
  }

   .faq-question-container {
    max-width: 70%; /* Full width for the button */
  }

  .faq-heading {
    text-align: center;
    font-size: 3.33rem !important;
    line-height: 1;
    margin-top: 50px;
    margin-bottom: 50px;
    text-transform: uppercase;
  }

    
  .faq-container {
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
  }

  .faq-question::before {
    content: attr(data-question);
    display: inline-block;
    max-width: 70%;
    white-space: normal;
    word-wrap: break-word;
  }

  .faq-question span.faq-icon {
    margin-left: auto;
  }
}
  
.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary-orange);
  margin-left: auto;
  flex-shrink: 0;
}

  
  .faq-answer {
  font-family: 'Neue Haas Grotesk Display Pro Roman', sans-serif;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 1rem;
  line-height: 1.8;
  padding: 0;
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 20px 0; /* Even top and bottom spacing */
}
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  #main-footer {
    background-color: #000;
    color: #fff;
    font-size: 0.75rem;
    padding: 40px 20px 20px;
  }
  
  .footer-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }
  
  .footer-left {
    width: 55%;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .footer-logo {
    width: 250px;
    margin-bottom: 150px;
  }
  
  .footer-socials {
    display: flex;
    gap: 12px;
  }
  
  .footer-socials img {
    width: 28px;
    height: 28px;
  }
  
  .footer-centre {
    padding-top: 80px;
    display: flex;
    gap: 60px;
    align-items: center; /* Changed from flex-start */
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  

  .footer-centre-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 20px;
  }


  .partner {
    text-align: center;
  }
  
  .partner-title {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 0.75rem;
    margin-bottom: 8px;
    align-items: left;
    text-align: left;
    font-family: 'Neue Haas Grotesk Display Pro Roman', sans-serif;

  }
  
  .partner img {
    max-height: 50px;
  }
  
  .footer-legal {
    margin-top: 80px;
    color: #aaa;
    line-height: 1.6;
    text-align: left;
    font-size: 0.75rem;
    max-width: 100%;
    font-family: 'Neue Haas Grotesk Display Pro Roman', sans-serif;
  }
  
  @media (max-width: 768px) {
    .footer-wrapper {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-left,
    .footer-centre,
    .footer-centre-wrapper 
    .partner {
    margin-top: 0 !important;
    padding-top: 0 !important;

    }

    .footer-legal {
      text-align: center;
      margin: 0 auto;
    }
  
    .footer-legal {
      text-align: center;
    }
  }
  

  .signup-modal {
    display: none; /* Set to 'flex' to show */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
  }
  
  .signup-content {
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: transparent;
    position: relative;
    color: white;
    font-family: 'Neue Haas Grotesk Display Pro Roman', sans-serif;

  }
  
  .signup-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .signup-left img {
    max-height: 800px;
    width: auto;
  }
  
  .signup-right {
    flex: 1;
    padding: 40px 20px;
  }
  
  .signup-right h2 {
    font-size: 3.33rem !important;
    margin-bottom: 10px;
  }
  
  .signup-right h2 .orange {
    color: var(--primary-orange);
    font-weight: 800;
  }
  
  .signup-right h2 .white {
    color: #fff;
    font-weight: 800;
  }
  
  .signup-right p {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-grid input,
  .form-grid select {
    padding: 12px;
    background: white;
    border: none;
    font-size: 0.95rem;
    color: #000;
    border-radius: 0;
  }
  
  .submit-btn {
    background-color: var(--primary-orange);
    color: #000;
    font-weight: 800;
    padding: 12px 30px;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
  }
  
  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }
  
  .close-btn img {
    width: 20px;
    height: 20px;
  }
  
  .signup-right small {
    font-size: 0.7rem;
    color: var(--primary-orange);
    margin-top: 10px;
    display: inline-block;
  }
  
  @media (max-width: 768px) {
    .signup-content {
      flex-direction: column;
      padding: 20px;
      overflow-y: auto;
      max-height: 90vh;
    }
  
    .form-grid {
      grid-template-columns: 1fr;
    }
  
    .signup-left,
    .signup-right {
      width: 100%;
      flex: none;
    }
  
    .signup-left img {
      height: auto;
      max-height: 250px;
      object-fit: contain;
    }
  
    .signup-right {
      padding: 0;
    }
  
    .close-btn {
      top: 10px;
      right: 20px;
    }
  }
  

  #form-success-message {
    text-align: left;
    color: white;
    padding: 20px 0;
  }
  
  #form-success-message h2 {
    font-size: 3.33rem !important;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  #form-success-message h2 .orange {
    color: var(--primary-orange);
    font-weight: 800;
  }
  
  #form-success-message h2 .white {
    color: white;
    font-weight: 800;
  }
  
  #form-success-message p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 20px;
    color: white;
  }

  .form-success-highlight {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
  }
  
  
  #form-success-message .submit-confirm-btn {
    background-color: var(--primary-orange);
    color: #000;
    font-weight: 800;
    padding: 12px 30px;
    margin-top: 10px;
    cursor: default;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    display: inline-block;
  }


#partnerships {
  background-color: var(--primary-orange);
  padding: 60px 20px;
  text-align: center;
  color: white;
  display: none; /* Hidden by default */
}

.partnerships-container {
  max-width: 600px;
  margin: 0 auto;
}

#partnerships h2 {
  font-family: 'HeadingNow', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

#partnerships .highlight {
  font-style: italic;
  font-weight: 700;
}

.partnerships-description {
  font-family: 'NHaasGroteskTXPro', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: white;
}

.partnerships-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  justify-items: center;
}

.partnerships-logos img {
  max-height: 50px;
  width: auto;
}

/* Show only on mobile */
@media (max-width: 768px) {
  #partnerships {
    display: block;
  }
}


@media (max-width: 768px) {

.mobile-nav {
  display: flex;
  height: 60px;
  width: 100vw; /* Force full-width */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  margin: 0;
  padding: 0;
  background-color: white;
}

/* LEFT: Logo fills remaining space */
.mobile-nav .logo {
  flex: 1;
  background: white;
  display: flex;
  align-items: center;
  padding-left: 16px;

}

.mobile-nav .logo img {
  height: 24px;
  margin-right: 8px;
}

.mobile-nav .logo span {
  font-family: 'HeadingNow', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgb(255, 254, 254);
  text-transform: uppercase;
}

/* CENTER: Register with matching slants */
.mobile-nav .register {
  width: 250px;
  background: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'HeadingNow', sans-serif;
  font-weight: 800;
  color: black;
  gap: 6px;
  text-transform: uppercase;
  font-size: 1.25rem;
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0% 100%);
  position: relative;
  z-index: 10;
  margin-right: 80px; /* leave space for absolute hamburger */
}

.mobile-nav .register span {
  font-size: 1.45rem !important;
  font-weight: 800;
  color: black;
}


.mobile-nav .register img {
  width: 30px;
  height: 30px;
}

.mobile-nav .menu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 130px;
  background:  #242424;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

}




.mobile-nav .menu-toggle span {
  width: 30px;
  height: 2px;
  margin-left: 30px;
  background: var(--primary-orange);
}


.register {
  margin-right: 80px; /* reserve space */
  position: relative;
  z-index: 1;
}}

/* Remove desktop nav padding-top on small screens */
@media (max-width: 768px) {
  body {
    padding-top: 0 !important;
  }

  .mobile-nav {
    display: flex;
  }
}

@media (max-width: 468px) {
  body {
    padding-top: 0 !important;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-nav .menu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 120px;
  background:  #242424;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

}

  .mobile-nav .register {
  width: 200px;
  background: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'HeadingNow', sans-serif;
  font-weight: 800;
  color: black;
  gap: 6px;
  text-transform: uppercase;
  font-size: 1.25rem;
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0% 100%);
  position: relative;
  z-index: 10;
  margin-right: 70px; /* leave space for absolute hamburger */
}
}

/* Hide on desktop */
@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}






@media (max-width: 768px) {
  /* 1. Make the wrapper visible (only for position/layout) */
  header .nav-wrapper {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 60px;       /* right below the mobile bar */
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;
  }
  /* 2. Hide the desktop bits we don’t want on mobile */
  header .nav-left,
  header .nav-right {
    display: none !important;
  }
  /* 3. Hide the links by default, but make them vertical */
  header .nav-center {
    display: none;
    flex-direction: column;
  }
  /* 4. When “active” is added, show the menu */
  header .nav-center.active {
    display: flex;
  }
  /* 5. Tidy up the link look */
  header .nav-center ul {
    flex-direction: column;
    padding: 20px 0;
  }
  header .nav-center ul li {
    margin: 10px 0;
    text-align: centre;
  }
}
