
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2f4d5a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #67b0d1; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #042b50;  /* The default color of the main navmenu links */
  --nav-hover-color: #67b0d1; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #67b0d1; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #273f49;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #395c6a;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #67b0d1;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #8ec4dd;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 1);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0px;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 120px;
  margin-right: 8px;
}

.header .logo-partner {
  height: 200px; /* Force it to use this height */
  max-height: none;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}

.scrolled .header {
  --background-color: #ffffff; /* Solid white background when scrolled */
  background-color: var(--background-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 15px;
    margin-left: 2px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    margin: 0;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 80%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 80%;
    visibility: visible;
  }
}


/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* Ensure full-page layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Push the footer to the bottom */
.main-content {
  flex: 1;
}

/* Footer Styles */
.footer {
  position: relative;
  width: 100%;
  background-color: var(--background-color);
  background-image: url('../images/footerbg2.jpg'); /* Add this line */
  background-size: cover; /* Makes sure the image covers the entire footer */
  background-position: center; /* Ensures the image is centered */
  background-repeat: no-repeat; /* Ensures the image doesn't repeat */
  padding: 0px 0;
  margin-top: auto; /* Pushes the footer down */
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Add an overlay to the footer to apply the transparent effect */
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,4), rgba(0,0,0,0)); /* smooth fade */
  z-index: 0;
  pointer-events: none;
}

.footer {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9); /* Sharper contrast glow */ /* Shadow for readability */
  position: relative;
  z-index: 1;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9); /* Sharper contrast glow */
}

.footer .footer-about p { /*for social media acc */
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9); /* Sharper contrast glow */
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  text-shadow:  1px 1px 6px rgba(0, 0, 0, 0.9);
  font-size: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: #67b0d1;
  color: #fff;
  border-color: #67b0d1;
}

.footer h4 {
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9); /* Sharper contrast glow */
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9); /* Make headings more prominent */
}

.footer .footer-links ul li { /*gap between the footer the page */
  padding: 6px 0;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #ffffff !important;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 1.4); /* Make headings more prominent */
  font-weight: 600;
}


.footer .footer-links ul a:hover {
  background-color: #67b0d1;
  color: #ffffff;
}

.footer .footer-contact p {
  font-size: 16px;  /* Increase font size */
  font-weight: 600;  /* Bold contact text */
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9); /* Sharper contrast glow */
  color: #ffffff;  /* Set the text color to white for contrast */
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  display: flex;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  flex: 1;
  border: none;
  padding: 6px 10px;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  color: #49b5ff; /* Accent hover */
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}

.footer .copyright {
  text-align: center;
  padding: 25px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 10px rgba(0,0,0,0.9); /* much sharper contrast */
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  font-size: 16px;       /* Increase from default (maybe 13px) */
  font-weight: 700;      /* Make it bold */
  color: #ffffff;        /* Force white for contrast */
  margin-top: 6px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 1.4);
}




/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 74px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 82px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url(../img/section-title-bg.png) no-repeat;
  z-index: -1;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap'); /* Import the font */

/* Hero Section Styles */
.hero h2, .hero p {
  font-family: 'Roboto', sans-serif;  /* Apply the new font */
  font-weight: 1000; /* Make the text bold */
}

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 90%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  margin-top: 50%; /* Move text down */
  font-size: 65px;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 1.4);
}

.hero p {
  color: var(--default-color);
  margin: 10px 0 0 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 1.2);
}


@media (max-width: 640px) {
  .hero h1 {
    font-size: 30px;
    line-height: 36px;
  }
}

.hero .btn-scroll {
  transition: 0.4s;
  color: var(--default-color);
  font-size: 24px;  /* Larger font size for better visibility */
  display: block;
  margin-top: 30px;
  animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
}

.hero .btn-scroll i {
  font-size: 48px;
}

.hero .btn-scroll:hover {
  color: var(--accent-color);
}

@keyframes btn-up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

/* General container for career opportunities section */

/* Container utility */
.container{max-width:1100px;margin:0 auto;padding:24px}

/* ===== HERO (image only) ===== */
.career-hero{width:100%;overflow:hidden}
.career-hero__img{width:100%;height:420px;object-fit:cover;display:block}

/* Hide old overlay/content if still in DOM */
.career-hero__overlay{display:none !important}
.career-hero__content{display:none !important}

/* ===== TEXT BELOW IMAGE ===== */
.career-intro{text-align:center;padding-top: 0;background:transparent}
.career-title{font-size:48px;font-weight:700;color:#003366;margin:0 0 10px}
.career-sub{font-size:18px;color:#003366;margin:0}

/* ===== CARDS ===== */
.career-section--tight{padding-top:10px}
.career-cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:18px}
.career-card{background:linear-gradient(180deg,#f9fcff,#eef6fb);border:1px solid #d6e6f0;border-radius:16px;overflow:hidden;box-shadow:0 6px 18px rgba(6,39,77,.06);display:flex;flex-direction:column}
.career-card__media img{width:100%;height:200px;object-fit:cover;display:block}
.career-card__body{padding:16px}
.career-card__title{margin:.2rem 0 .4rem}
.career-card__badges{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:6px}
.badge{background:#fff;border:1px solid #dbe8f2;padding:4px 8px;border-radius:10px;font-size:12px}
.career-card__highlights{margin:10px 0 0 18px}
.career-card__highlights li{margin:6px 0}
.career-card__footer{display:flex;gap:10px;justify-content:flex-end;padding:12px 16px}

/* Buttons */
.btn{padding:10px 14px;border-radius:12px;border:1px solid transparent;cursor:pointer;font:inherit}
.btn.primary{background:#0b6fb3;color:#fff}
.btn.ghost{background:#fff;border-color:#cfe1ee;color:#0b6fb3}

/* ===== APPLY FORM ===== */
.apply-block h2{margin:20px 0 8px}
.apply-form .grid{display:grid;gap:12px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.apply-form label{display:grid;gap:6px;font-weight:600;color:#123}
.apply-form input,.apply-form textarea{padding:10px 12px;border:1px solid #d6e1ea;border-radius:12px}
.apply-form .wide{grid-column:1/-1}
.apply-form .btn{margin-top:10px}

/* ===== MODAL ===== */
.modal{position:fixed;inset:0;background:rgba(8,20,35,.55);display:grid;place-items:center;padding:20px;z-index:9999}
.modal[hidden]{display:none}
.modal__dialog{background:#fff;border-radius:16px;max-width:880px;width:100%;padding:22px 22px 16px;box-shadow:0 20px 60px rgba(3,16,31,.3)}
.modal__close{float:right;border:none;background:transparent;font-size:24px;cursor:pointer}
.readable{line-height:1.55;color:#234;margin:0 0 8px 0}
.muted{color:#5a6b77;font-size:14px;margin-top:6px}
.columns-2{columns:2;gap:24px}
.tabs{display:flex;gap:8px;margin:10px 0 6px}
.tab{border:1px solid #dbe8f2;background:#f7fbfe;padding:8px 12px;border-radius:10px;cursor:pointer}
.tab.active{background:#0b6fb3;color:#fff;border-color:#0b6fb3}
.tabpanels .tabpanel{display:none}
.tabpanels .tabpanel.active{display:block}
.modal__cta{display:flex;justify-content:flex-end;gap:10px;margin-top:8px}

/* Embed frame tidy */
.interactive-frame{border:1px solid #e4edf4;border-radius:14px;overflow:hidden}

