/* Globale style i resetowanie */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Math&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@font-face {
    font-family: "Colfax"; /* Choose a name you'll use in CSS */
    src:
      url("./assets/fonts/colfax_regular.otf") format("otf"), /* Modern browsers */
      url("./assets/fonts/colfax_regular.ttf") format("truetype");
    font-weight: normal; /* Or 400 */
    font-style: normal;
    font-display: swap; /* Recommended: Shows fallback font while loading */
}
@font-face {
    font-family: "Colfax"; /* Choose a name you'll use in CSS */
    src:
      url("assets/fonts/colfax_italic.otf") format("otf"), /* Modern browsers */
      url("./assets/fonts/colfax_italic.ttf") format("truetype");
    font-weight: normal; /* Or 400 */
    font-style: italic;
    font-display: swap; /* Recommended: Shows fallback font while loading */
}
@font-face {
    font-family: "Colfax"; /* Choose a name you'll use in CSS */
    src:
      url("./assets/fonts/colfax_bold.otf") format("otf"), /* Modern browsers */
      url("./assets/fonts/colfax_bold.ttf") format("truetype");
    font-weight: medium; /* Or 400 */
    font-style: normal;
    font-display: swap; /* Recommended: Shows fallback font while loading */
}
@font-face {
    font-family: "General Sans Variable"; /* Choose your CSS name */
    src:
      url("assets/fonts/GeneralSans-Variable.ttf") format("truetype");
    font-weight: 100 900;
    font-display: swap; /* Highly recommended */
  }

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

  .header-mobile {
    display: none;
}
  
  body {
    font-family: "Montserrat", "Colfax",  "General Sans Variable", "Segoe UI", "Helvetica Neue";
    line-height: 1.6;
    color: #333;
    /* Dodajemy padding-top równy wysokości navbara, aby treść nie chowała się pod nim */
    padding-top: 80px; /* Dostosuj tę wartość do faktycznej wysokości navbara */
  }
  html {
    scroll-behavior: smooth;
}
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background-color: #f8f9fa; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
    height: 80px; /* Ustaw stałą wysokość dla navbara */
    display: flex;
    align-items: center; /* Wyśrodkowanie elementów w pionie */
    transition: all 150ms ease-in-out;
  }

  .navbar.scrolled {
    background-color: #F8F8F7; /* Or 'white' or your desired near-white */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: add shadow when scrolled */
  }
  
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .logo {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.2;
    color: #333;
    text-align: center;
  }
  
  .logo-highlight {
    color: #00a9e0; /* Jasnoniebieski kolor z logo */
    font-weight: 600;
  }

  .logo-eko {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.2;
    color: #333;
    text-align: center;
  }
  
  .logo-highlight-eko {
    color: #00d072; /* Jasnoniebieski kolor z logo */
    font-weight: 600;
  }

  .logo-container {
    display: flex;
    flex-direction: row;
  }

  .logo-divider {
    width: 1px;
    height: 40px;
    background-color: #464646;
    margin: 0 30px;
  }
  
  .navbar nav ul:not(.dropdown) {
    list-style: none;
    display: flex;
  }
  
  .navbar nav ul li:not(.dropdown li) {
    margin-left: 25px;
  }

    .no-deco {
    text-decoration: none;
  }

  .link-dropdown-content {
    display: none;
  }

  .link-dropdown-content ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    max-width: 100%;
    white-space: normal;       /* allow wrapping */
    word-wrap: break-word;
  }
  
  .navbar nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .navbar nav ul li a:hover {
    color: #007bff;
  }

  .nav-item {
  position: relative; /* needed for absolutely-positioned dropdown */
}

.nav-link {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

  .nav-link:hover {
  background-color: #444;
}

/* Dropdown styles */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background-color: #f0f0f0;
  min-width: 150px;
  display: none;    /* hidden by default */
  border-radius: 12px;
  padding: 10px 5px;
}

.dropdown-link {
  display: block;
  padding: 10px 15px;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-link:hover {
  color: #555;
}

.faq-toggle {
  background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: #212529;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 500; /* Slightly bolder */
    margin-bottom: 0.5rem; /* Space before content opens */
    transition: color 0.2s ease-in-out;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown {
  display: block;
}

  .main {
    position: relative;
    top: -80px;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .bg {
    background-image: url('assets/backgrounds/bg_main.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 110vh;
    width: 100vw;
    z-index: -10;
  }
  
  /* Sekcja Hero */
  .hero-section {
    padding: 90px 0;
    padding-top: 120px;
    position: relative;
    min-height: calc(
      100vh - 80px
    ); /* Minimalna wysokość, aby wypełnić ekran */
    align-items: center;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .hero-left {
    flex: 1; /* Zajmuje dostępną przestrzeń */
    padding-right: 40px;
  }
  
  .hero-left h1 {
    font-size: 4rem; /* Duży rozmiar czcionki */
    font-weight: 500;
    line-height: 1.12;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    color: #212529; /* Ciemny kolor nagłówka */
    font-family: 'Colfax', "Segoe UI", "Helvetica Neue";
  }
  
  .highlight-dark {
    background-image: linear-gradient(
        90deg,
        #00ADD0,
        #1A606E
    ); /* Your desired text gradient */
    color: #1A606E; /* Example fallback color */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Make the actual text color transparent */
    /* This allows the clipped gradient background to show through */
    -webkit-text-fill-color: transparent;
    /* For browsers that support standard property: */
    color: transparent;
    background-size: 100%;
    background-repeat: repeat;
  }

  .highlight-green {
    background-image: linear-gradient(
        90deg,
        #00d072,
        #19671b
    ); /* Your desired text gradient */
    color: #1A606E; /* Example fallback color */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Make the actual text color transparent */
    /* This allows the clipped gradient background to show through */
    -webkit-text-fill-color: transparent;
    /* For browsers that support standard property: */
    color: transparent;
    background-size: 100%;
    background-repeat: repeat;
  }
  
  .highlight-light {
    color: #20c9e0; /* Jaśniejszy turkusowy */
  }
  
  .hero-left p {
    font-size: 1.25rem;
    line-height: 1.45;
    font-weight: 300;
    color: #4F4F4F; /* Ciemnoszary kolor tekstu */
    max-width: 450px; /* Ograniczenie szerokości tekstu */
    margin-bottom: 40px;
  }

  .home-hero-link {
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1.45;
    font-weight: 300;
    color: #4F4F4F; /* Ciemnoszary kolor tekstu */
    max-width: 450px; /* Ograniczenie szerokości tekstu */
  }

  /* Modern Hero Buttons */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }

  .hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #006fbe;
    min-width: 280px;
    max-width: 320px;
  }

  .hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); */
    transition: left 0.5s;
  }

  .hero-button:hover::before {
    left: 100%;
  }

  .hero-button.primary {
    /* background: linear-gradient(135deg, #00ADD0 0%, #1A606E 100%); */
    color: rgb(0, 0, 0);
    box-shadow: 0 4px 15px rgba(0, 173, 208, 0.3);
  }

  .hero-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 173, 208, 0.4);
  }

  .hero-button.secondary {
    color: #333;
    border: 2px solid #00d072;
  }

  .hero-button.secondary:hover {
    border-color: #00d072;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .button-text {
    font-weight: 500;
    z-index: 1;
    position: relative;
  }

  .button-arrow {
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
  }

  .hero-button:hover .button-arrow {
    transform: translateX(4px);
  }

  .home-eko-promo {
    padding: 10px 20px 50px 20px;
    margin: 0 auto;
    max-width: 1200px;
  }

  .home-eko-promo p {
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1.45;
    font-weight: 500;
    color: #2d7644;
  }
  
  .hero-right {
    padding-left: 40px;
    flex: 1; /* Zajmuje dostępną przestrzeń */
    display: flex;
    flex-direction: column;
    gap: 50px; /* Odstęp między boxami */
  }
  
  .info-box {
    background-image: url('./assets/backgrounds/info_card_bg.webp'); /* Lekko przezroczyste białe tło */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    border: 1px #BCBCBC solid;
  }

  .info-box-overlay {
    background-image: linear-gradient(
        220deg,
        #f6f6f658,
        #f6f6f6d1,
        #f6f6f6,
        #f6f6f6
    ); 
    padding: 20px 25px;
    border-radius: 32px;
  }
  
  .info-box h2 {
    font-family: 'Colfax', "Segoe UI", "Helvetica Neue";
    font-size: 1.95rem;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000000b1;
  }
  
  .info-box p {
    font-size: 1.05rem;
    width: 85%;
    color: #757575;
  }
  
  /* Responsywność */
  @media (max-width: 992px) {
    .hero-left h1 {
      font-size: 2.8rem;
    }
    .hero-left p {
      font-size: 1rem;
    }
    .info-box h2 {
      font-size: 1.6rem;
    }
    .info-box p {
      font-size: 0.9rem;
    }

  }
  
  @media (max-width: 768px) {
    body {
      padding-top: 70px; /* Dostosuj, jeśli navbar zmienia wysokość */
    }
    .navbar {
      height: 70px; /* Mniejszy navbar na mniejszych ekranach */
    }
    .navbar-content {
      flex-direction: column;
      align-items: flex-start; /* Logo i nav jedno pod drugim */
      padding: 10px 20px; /* Dodaj padding dla wersji mobilnej */
    }
    .navbar nav ul {
      margin-top: 10px; /* Odstęp między logo a nav */
      padding-left: 0; /* Usuń domyślny padding listy */
      flex-wrap: wrap; /* Pozwól linkom się zawijać */
    }
    .navbar nav ul li {
      margin-left: 0;
      margin-right: 15px; /* Odstęp między linkami */
      margin-bottom: 5px; /* Odstęp w pionie, jeśli się zawiną */
    }
  
    .hero-section {
      padding: 40px 0;
      margin-top: 100px;
      min-height: auto; /* Usuń min-height na mobilnych */
    }
    .hero-content {
      flex-direction: column; /* Kolumny jedna pod drugą */
    }
    .hero-left {
      padding-right: 0;
      margin-bottom: 0px;
    }
    .hero-left p {
      max-width: 100%; /* Pełna szerokość na mobilnych */
      margin: 0 auto 20px auto; /* Wyśrodkowanie i margines */
    }
    
    .hero-buttons {
      gap: 12px;
      margin-top: 24px;
    }
    
    .hero-button {
      min-width: 100%;
      max-width: 100%;
      padding: 14px 20px;
      font-size: 1rem;
    }
    .hero-right {
      width: 100%; /* Pełna szerokość */
      padding-left: 0px;
      gap: 20px;
    }
  }
  
  /* @media (max-width: 480px) {
    .hero-left h1 {
      font-size: 2.2rem;
    }
    .navbar nav ul li a {
      font-size: 0.8rem;
    }
  } */

/* --- Font Definition (Example - Add Colfax if you have it locally) --- */
/* If you have Colfax font files, add @font-face rules here */
/* @font-face { */
/*   font-family: 'Colfax'; */
/*   src: url('path/to/colfax-regular.woff2') format('woff2'); */
/*   font-weight: normal; */
/* } */
/* @font-face { */
/*   font-family: 'Colfax'; */
/*   src: url('path/to/colfax-bold.woff2') format('woff2'); */
/*   font-weight: bold; */
/* } */

/* --- Section 2: Features --- */

.features-section {
    padding-bottom: 60px; /* Space at the bottom of the section */
    padding-top: 50px;
    background-color: #fff; /* White background for the section */
    width: 100%;
    position: relative; /* Needed if using pseudo-elements for border later */
  }
  
  .divider {
    height: 1px;
    background-color: #e0e0e0; /* Light grey color */
    width: 100%;
    margin-bottom: 30px; /* Space ABOVE feature cards */
  }
  
  .bottom-divider {
    margin-top: 50px; /* Space BELOW feature cards */
    margin-bottom: 0; /* Reset bottom margin if it's the last element */
  }
  
  .features-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Make cards same height */
    /* gap: 30px; Space between cards */
    flex-wrap: wrap;
  }
  
  .feature-card {
    flex: 1; /* Allow cards to grow/shrink */
    min-width: 280px;
    max-width: 350px;
    box-sizing: border-box;
    text-align: left;
    padding: 18px 23px; /* Internal padding */
    position: relative; /* Needed for some border techniques if used */
    background-color: #fff; /* Inner background color */
    border-radius: 25px; /* Rounded corners */
  }
  
  /* --- Gradient Border (Method 2: Background Clip) --- */
  .gradient-border {
    border: 2px solid transparent; /* Create space, make transparent */
    background:
      /* 1. Inner background (white), clipped to padding box */
      linear-gradient(white, white) padding-box,
      /* 2. Outer background (gradient border), clipped to border box */
      linear-gradient(135deg, #20cae0bb, #ffffff, #ffffff, #20cae0bb) border-box;
    /* Adjust gradient colors/angle as needed */
  }
  
  /* --- Icon Placeholder --- */
  .feature-icon {
    display: inline; 
    height: 45px;
    width: auto; 
    margin: 0 auto 10px auto;
  }

  .benefits-subtitle {
    font-size: 1.1rem;
    font-weight: 500; /* Bold subtitle */
    color: #1f1f1f;
    font-family: 'Colfax';
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem; /* Space before benefit boxes */
  }
  
  /* --- Card Text Styling --- */
  .card-text {
    font-family: "Colfax", "Poppins", sans-serif; /* Colfax requested, Poppins as fallback */
    font-size: 1.8rem; /* Adjust size */
    color: #333;
    line-height: 1.3;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 500; /* Make text slightly bolder */
    text-align: left;
  }

  .card-subtext {
    font-family: "Montserrat", "Poppins"; /* Colfax requested, Poppins as fallback */
    font-size: 0.95rem; /* Adjust size */
    color: #4b4b4b;
    line-height: 1.25;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 400; /* Make text slightly bolder */
    text-align: left;
  }
  
  /* --- Gradient Text Highlight --- */
  .highlight-gradient-text {
    /* Define the gradient for the text */
    background-image: linear-gradient(
      45deg,
      #008c9e,
      #007788
    ); /* Darker teal gradient */
  
    /* Fallback color for browsers that don't support gradient text */
    color: #008c9e;
  
    /* Clip the background to the text shape */
    -webkit-background-clip: text;
    background-clip: text;
  
    /* Make the actual font color transparent */
    -webkit-text-fill-color: transparent;
    color: transparent; /* Standard property, may be overridden */
  
    /* Ensure it behaves like text */
    display: inline; /* Keep it flowing with text */
    font-weight: 700; /* Make highlighted text bold */
  }
  
  /* --- Responsiveness --- */
  
  @media (max-width: 992px) {
    .features-container {
      gap: 25px;
    }
    .feature-card {
      padding: 30px 25px;
    }
    .card-text {
      font-size: 1.65rem;
    }
  }
  
  @media (max-width: 768px) {
    .divider {
      margin-bottom: 40px;
    }
    .features-container {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
    .feature-card {
      flex: none;
      max-width: 400px;
      min-width: unset;
    }
    .bottom-divider {
      margin-top: 40px;
    }
  }
  

  .team-section {
    width: 100%;
    padding-top: 0px;
    padding-bottom: 40px;
    background-color: #fff;
}

.team-section-title {
    font-family: 'Colfax', sans-serif;
    font-size: 2.85rem;
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000;
}

.title-underline {
    display: block;
    width: 200px;
    height: 4px;
    background-image: linear-gradient(90deg, #00ADD0, #1A606E);
    margin-bottom: 40px;
}

.scroller {
  display: none;
  width: 100vw;        /* fill the viewport width */
  overflow-x: auto;    /* enable horizontal scrolling */
  /* no height set: container height = max(child heights) */
}

.scroller::-webkit-scrollbar {
  height: 8px;
}

.scroller::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: flex-start;
    align-items: center;
}

.team-card {
    flex: 0 0 calc(33.333% - 24px);
    background-color: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #D5D5D5;
    position: relative;
    flex-grow: 1;
}

.avatar-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #2c7da0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.avatar-img {
  width: 76px;
  height: 76px;
}



.team-card-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}

.team-member-name {
    font-size: 1.6rem;
    line-height: 1.35;
    font-weight: 400;
    margin-left: 15px;
    color: #000;
}

.team-member-bio {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.team-dot {
    background-color: #40ABC1;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    margin: 0px 8px;
}

@media (max-width: 992px) {
    .team-card {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 20px;
    }
    .team-dot {
        display: none;
    }
    .team-grid {
      display: none;
    }
    .scroller {
        display: flex;
    }
}

@media (max-width: 768px) {
    .team-card {
        flex: 0 0 100%;
    }
}

.important-info-section {
    width: 100%;
    background-color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #313131;
    font-family: 'General Sans Variable';
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.info-columns {
    display: flex;
    gap: 40px;
    position: relative;
}

.info-columns:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #e0e0e0;
}

.info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: 'Colfax';
    color: #000;
}

.title-underline {
    display: block;
    width: 200px;
    height: 4px;
    background-color: #3498db;
    margin-bottom: 30px;
}

.info-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.info-description strong {
    font-weight: bold;
}

.info-link {
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    border-radius: 30px;
    /* border: 2px solid transparent; 
    background:
      linear-gradient(white, white) padding-box,
      linear-gradient(135deg, #20cae0bb, #ffffff, #ffffff, #20cae0bb) border-box;  
    */
    border: 2px solid #20cae0bb;  
    transition: all 0.3s ease;
    max-width: fit-content;
}

.info-link:hover {
    background-color: #f8f8f8;
    border-color: #ccc;
}

.arrow {
    margin-left: 8px;
}

@media (max-width: 768px) {
    .info-columns {
        flex-direction: column;
        gap: 50px;
    }
    
    .info-columns:after {
        display: none;
    }
    
    .info-title {
        font-size: 2rem;
        line-height: 1.3;
    }
}

.learning-process-section {
    margin-top: 60px;
    padding-bottom: 50px;
}

.section-title {
    font-family: 'Colfax', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
    margin-top: 20px;
    color: #000;
}

.title-underline {
    display: block;
    width: 12.5rem;
    height: 0.25rem;
    background-color: #3498db;
    margin-bottom: 3rem;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 1;
    width: 35%;
}

.timeline-line.top {
    top: 1rem;
    left: 15%;
}

.timeline-line.bottom {
    bottom: 1rem;
    right: 15%;
}

.process-step {
    position: relative;
    width: 30%;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-right: 25px;
}

.step-title {
    font-family: 'General Sans Variable';
    font-size: 1.7rem;
    font-weight: 500;
    color: #333333;
}

.step-dot {
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #e0e0e0;
    border-radius: 50%;
    left: 50%;
    /* transform: translateX(-50%); */
}

.step-dot.top {
    top: -1.25rem;
}

.step-dot.bottom {
    bottom: -1.25rem;
}

.step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-step {
        width: 100%;
    }
    
    .step-dot {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.6rem;
    }
}

.course-offerings-section {
    padding-bottom: 50px;
}

.section-title {
    font-family: 'Colfax', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.625rem;
    color: #000;
}

.title-underline {
    display: block;
    width: 12.5rem;
    height: 0.25rem;
    background-color: #3498db;
    margin-bottom: 2.5rem;
}

.courses-container {
    display: flex;
    margin-bottom: 1.5rem;
    position: relative;
}

.courses-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vertical-divider {
    width: 1px;
    background-color: #e0e0e0;
    margin: 0 1.5rem;
}

.home-section1-consent-banner {
    position: fixed;
    left: 5px;
    bottom: 5px;
    width: 33vw;
    height: 33vh;
    padding: 25px;
    box-sizing: border-box;
    z-index: 20;
    background-color: #F8F8F8;
    box-shadow: 4px 4px 12px 0px rgba(66, 68, 90, 0.6);
    border-radius: 12px;
    overflow-y: auto;
    display: none;
}

.home-section1-consent-banner h2 {
    margin: 0px;
    color: #242424;
    font-weight: 500;
    font-size: 20px;
}

.home-section1-consent-banner p {
    color: #363636;
    font-weight: 400;
    font-size: 14px;
    margin: 10px 0px;
}

.home-section1-consent-banner label {
    margin: 0px;
    color: #363636;
    font-weight: 400;
    font-size: 14px;
    margin: 5px 0px;
    margin-right: 0px;
}

.home-section1-consent-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 20px;
}

.home-section1-consent-button {
    background-color: #004B80;
    height: 40px;
    width: 40%;
    border-radius: 4px;
    color: white;
    font-family: 'General Sans Variable';
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-section1-consent-button:nth-child(2) {
    background-color: #fff;
    border: 1px solid #004B80;
    color: #004B80;
}

.home-section1-consent-button:hover {
    background-color: #006fbe;
}

.home-section1-consent-button:active {
    background-color: #004B80;
}

.home-section1-consent-button:nth-child(2):hover {
    background-color: #e9e9e9;
}

.home-section1-consent-button:nth-child(2):active {
    background-color: #d2d2d2;
}


.special-offers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.course-card {
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    padding: 1.5rem;
    color: white;
}

.gradient-blue-green {
    background: linear-gradient(135deg, #00ADD0 0%, #80b998 55%, #ffc45f 100%);
}

.gradient-blue-purple {
    background: linear-gradient(135deg, #00ADD0 0%, #80AEE2 55%, #FFAFF4 100%);
}

.gradient-package {
    background: linear-gradient(135deg, #00ADD0 0%, #00ADD0 55%, #6AF1CF 100%);
}

.course-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.course-title {
    font-size: 1.5rem;
    line-height: 1.82rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 500;
}

.course-details {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.features-list {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.features-list li {
    position: relative;
    padding-left: 0.3rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 600;
    color: white;
    font-size: 1.15rem;
}

.package-offer {
    padding: 16px;
    border: 2px solid transparent; /* Create space, make transparent */
    background:
      /* 1. Inner background (white), clipped to padding box */
      linear-gradient(white, white) padding-box,
      /* 2. Outer background (gradient border), clipped to border box */
      linear-gradient(135deg, #20cae0bb, #ffffff, #ffffff, #20cae0bb) border-box;
    border-radius: 24px;
    box-sizing: border-box;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: -1rem;
}

.course-button {
    display: inline-block;
    background-color: rgba(213, 213, 213, 0.55);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.05rem;
    border-radius: 2rem;
    align-self: flex-end;
    font-weight: 700;
    transition: background-color 0.3s;
    text-align: center;
    border: 2px solid #20cae0;
}

.course-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.materials-box {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #e0e0e0;
}

.materials-box li {
    margin-left: 20px;
}

.materials-box a {
    text-decoration: none;
    color: #333;
}

.materials-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.materials-note {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.guarantee-box {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid transparent; /* Create space, make transparent */
    background:
      /* 1. Inner background (white), clipped to padding box */
      linear-gradient(white, white) padding-box,
      /* 2. Outer background (gradient border), clipped to border box */
      linear-gradient(135deg, #20cae0bb, #ffffff, #ffffff, #20cae0bb) border-box;
}

.guarantee-box li {
    margin-left: 20px;
}

.guarantee-box a {
    text-decoration: none;
    color: #333;
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guarantee-note {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.learn-more-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 992px) {
    .courses-grid,
    .special-offers {
        grid-template-columns: 1fr;
    }

    .courses-container {
        flex-direction: column;
        gap: 20px;
    }

    .vertical-divider{
        width: 90%;
        height: 1px;

    }
    
    .course-card {
        flex-direction: column;
    }
    
    .course-info {
        margin-bottom: 1.5rem;
    }
    
    .course-button {
        align-self: flex-start;
    }
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-title {
    font-family: 'Colfax', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    color: #000;
}

.section-title.accent {
    color: #3498db;
}

.title-underline {
    display: block;
    width: 12.5rem;
    height: 0.25rem;
    background-color: #3498db;
    margin-top: 1rem;
}

.materials-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 35px;
}

.material-card {
    flex: 1;
    border: 2px solid transparent; /* Create space, make transparent */
    background:
      /* 1. Inner background (white), clipped to padding box */
      linear-gradient(white, white) padding-box,
      /* 2. Outer background (gradient border), clipped to border box */
      linear-gradient(135deg, #20cae0bb, #ffffff, #ffffff, #20cae0bb) border-box;
    border-radius: 1rem;
    padding: 1.5rem;
    padding-top: 1.35rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;

}

.material-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.card-content {
    width: 100%;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000;
    font-family: 'Colfax';
}

.card-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #555;
}

@media (max-width: 768px) {
    .materials-container {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.cta-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cta-content {
    width: calc(50% - 1px);
}

.cta-title {
    font-family: 'Colfax';
    font-size: 3rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    color: #000;
}

.cta-title.accent {
    color: #3498db;
}

.contact-form-container {
    width: calc(50% - 1px);
    padding: 2rem;
    border-left: 1px solid #c4c4c4;
}

.form-title {
    font-family: 'Colfax';
    font-size: 2.1rem;
    font-weight: 500;
    color: #000;
}


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

.form-group {
    width: 100%;
}

.form-input, 
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    background-color: #fff;
}

.form-input:focus, 
.form-textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: relative;
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #8eda8e;
    border-radius: 0.25rem;
    margin-right: 0.5rem
}

.home-section7-name {
  font-family: "General Sans Variable";
    font-size: 14px;
    border-radius: 8px;
    line-height: 1.5;
    padding: 5px 10px;
    transition: box-shadow 100ms ease-in, border 100ms ease-in, background-color 100ms ease-in;
    border: 2px solid #ececec;
    color: rgb(14, 14, 16);
    background: #f8f8f8;
    display: block;
    height: 32px;
    width: 85%;
    margin-bottom: 15px;
    :hover {
        border-color: #ccc;
    }
    :focus{
        border-color: #9147ff;
        background: #fff;
    }
}

label input {
  margin-right: 8px;
}

.home-section7-name:nth-child(2) {
    margin-top: 0px;
}

.home-section7-name:nth-child(4) {
    min-height: 96px;
    resize: none;
    font-family: 'Montserrat';
}


.home-section7-button {
    background-color: #5bb0ffbd;
    height: 40px;
    width: 230px;
    border-radius: 8px;
    color: white;
    font-family: 'General Sans Variable';
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.home-section7-button:hover {
    background-color: #33aaff;
}

.home-section7-button:active {
    background-color: #29a6ff;
}


.form-divider {
    background-color: #999;
    height: 100%;
    width: 2px;
}

.home-enlist-dialog-button {
    background-color: #5bb0ffbd;
    height: 40px;
    width: 40%;
    border-radius: 8px;
    color: white;
    font-family: 'General Sans Variable';
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

 .course-pdf-link {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border: 2px solid #37dcfc; /* Light teal border */
    border-radius: 50px; /* Pill shape */
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition:
      background-color 0.2s ease-in-out,
      border-color 0.2s ease-in-out;
    align-self: flex-start; /* Prevent stretching full width */
    background-color: #bcbcbc6e;
  }
  
  .course-pdf-link:hover {
    background-color: #e0f8fc; /* Light teal background on hover */
    border-color: #63e5f8;
  }

@media (max-width: 992px) {
  .home-eko-promo {
    padding: 10px 20px 30px 20px;
    margin: 0 auto;
    max-width: 1200px;
  }

  .home-enlist-dialog {
        z-index: 22;
        border: 1px #d2d2d2 solid;
        border-radius: 8px;
        width: 95vw;
        padding: 20px;
    }
    .header-mobile {
        display: flex;
        width: 100vw;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 12;
        /* flex-flow: row wrap;
        justify-content: space-around;
        
        padding-top: 16px;
        padding-left: 8px;
        padding-right: 8px; */
        transition: all 1000ms ease-in-out;
        -webkit-transition: all 1000ms ease-in-out;
        background-color: white;
      }

      .header-mobile .logo {
        position: absolute;
        top: 15px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
    
      nav {
        background-color: transparent;
        height: 65px;
      }

      .hero-button.secondary {
        
        display: block;
      }
      
      
      #menuToggle {
        display: flex;
        flex-direction: column;
        position: relative;
        top: 25px;
        left: 25px;
        z-index: 10;
        -webkit-user-select: none;
        user-select: none;
      }
      
      #menuToggle input
      {
        display: flex;
        width: 40px;
        height: 32px;
        position: absolute;
        cursor: pointer;
        opacity: 0;
        z-index: 11;
      }
      
      #menuToggle span:not(.arrow)
      {
        display: flex;
        width: 29px;
        height: 2px;
        margin-bottom: 5px;
        position: relative;
        background: rgb(0, 0, 0);
        border-radius: 3px;
        z-index: 10;
        transform-origin: 5px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
      }
      
      #menuToggle span:first-child
      {
        transform-origin: 0% 0%;
      }
      
      #menuToggle span:nth-last-child(2)
      {
        transform-origin: 0% 100%;
      }
      
      #menuToggle input:checked ~ span
      {
        opacity: 1;
        transform: rotate(45deg) translate(-3px, -1px);
        background: #2c2c2e;
      }
      #menuToggle input:checked ~ span:nth-last-child(3)
      {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
      }
      
      #menuToggle input:checked ~ span:nth-last-child(2)
      {
        transform: rotate(-45deg) translate(0, -1px);
      }
      
      #menu
      {
        position: absolute;
        width: 70vw;
        height: 100vh;
        box-shadow: 0 0 5px #85888C;
        margin: -50px 0 0 -50px;
        padding: 50px;
        padding-top: 125px;
        background: rgb(165, 182, 232);
        -webkit-font-smoothing: antialiased;
        transform-origin: -100% -100%;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        border-radius: 32px;
        overflow-y: auto;    /* vertical scroll when content overflows */
        overflow-x: hidden;
      }
      
      #menu li:not(.link-dropdown-content li)
      {
        padding: 10px 0;
        /* transition-delay: 2s; */
      }
      
      #menuToggle input:checked ~ ul
      {
        transform: none;
      }
    
      ul {
        padding: 0;
        list-style-type: none;
      }
    
      .header-mobile a {
        text-decoration: none;
        color: #3a3a3a;
        opacity:1;
        font-size: 2em;
        font-weight: 400;
        transition: 200ms;
      }
      .header-mobile a:hover {
        opacity:0.5;
      }

      .navbar {
        display: none;
      }
      .home-section1-consent-banner {
        position: fixed;
        bottom: 5px;
        width: 100vw;
        height: 38vh;
        padding: 25px;
        box-sizing: border-box;
        z-index: 20;
        background-color: #F8F8F8;
        box-shadow: 4px 4px 12px 0px rgba(66, 68, 90, 0.6);
        border-radius: 12px;
        overflow-y: auto;
        display: none;
    }
}

@media (max-width: 720px) {
    .cta-container {
        flex-direction: column;
    }
    .cta-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    .cta-content {
        width: 100%;
    }
    .contact-form-container {
        margin-top: 35px;
        width: 100%;
        padding: 0;
        border: none;
    }
}

footer {
  background-color: #2c3e50; /* Dark, elegant background */
  color: #ecf0f1; /* Light text color for contrast */
  padding: 40px 0 20px 0; /* Generous padding */
}

.footer-content {
  max-width: 1100px; /* Max width for content */
  margin: 0 auto; /* Center content */
  padding: 0 20px; /* Padding on sides */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  gap: 20px; /* Spacing between items when they wrap */
}

/* Logo Styling */
.footer-logo a {
  font-size: 1.8em;
  font-weight: bold;
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-logo a:hover {
  color: #3498db; /* Accent color on hover */
}

/* Navigation Links Styling */
.footer-nav a {
  color: #bdc3c7; /* Slightly muted link color */
  text-decoration: none;
  margin: 0 15px; /* Spacing between links */
  font-size: 1em;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
  text-decoration: underline;
  text-decoration-color: transparent; /* Hide underline initially */
}

.footer-nav a:hover {
  color: #ecf0f1; /* Brighter on hover */
  text-decoration-color: #ecf0f1; /* Show underline on hover */
}

/* Social Icon Link Styling */
.footer-social a {
  color: #bdc3c7; /* Initial color for the icon */
  text-decoration: none;
  display: inline-block; /* For proper alignment and sizing */
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ecf0f1; /* Brighter icon color on hover */
}

.footer-social a svg {
  width: 24px;
  height: 24px;
  fill: currentColor; /* SVG inherits color from parent 'a' tag */
  vertical-align: middle; /* Aligns icon nicely */
}

/* Footer Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #34495e; /* Subtle separator line */
  font-size: 0.85em;
  color: #95a5a6; /* Muted text color for copyright */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
    text-align: center;
  }

  .footer-nav {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column; /* Stack nav links vertically */
    gap: 10px; /* Space between stacked nav links */
    height: auto;
  }

  .footer-nav a {
    margin: 5px 0; /* Adjust margin for vertical layout */
  }

  .footer-logo {
    margin-bottom: 10px;
  }
}

.promo-info{
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 1.8rem;
    margin-top: 1.3rem;
    width: 75%;
  }
  
.promo-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  bottom: 0.1rem;
  width: 4px;
  background-image: linear-gradient(
      90deg,
      #00ADD0,
      #1A606E
  );
  border-radius: 2px;
}

.promo-info p {
  font-size: 1.1rem;
}

.promo-info a {
  font-weight: 600;
  color: #000000;
  text-decoration: underline;
  letter-spacing: 0.5px;
  transition: color 0.2s ease-in-out;
}

.promo-info a:hover {
  color: #08a0b8;
}

.scroller-item {
  flex: 0 0 90vw;     /* each child is exactly viewport-wide */
  margin-right: 20px;
}

.home-enlist-dialog {
    z-index: 22;
    border: 1px #d2d2d2 solid;
    border-radius: 8px;
    min-width: 50vw;
    padding: 20px;
    box-sizing: border-box;
    margin: auto auto;
}

@media (max-width: 768px) {
  .home-enlist-dialog {
    margin: 10px 20px;
  }
}

.home-enlist-dialog h1 {
    font-size: 36px;
    font-weight: 400;
    color: #1D1D1D;
    margin-top: 0px;
    margin-bottom: 0px;
}

.home-enlist-dialog p {
    margin-top: 15px;
    margin-bottom: 20px;
}

.home-enlist-dialog-name {
    font-size: 14px;
    border-radius: 8px;
    line-height: 1.5;
    padding: 5px 10px;
    transition: box-shadow 100ms ease-in, border 100ms ease-in, background-color 100ms ease-in;
    border: 2px solid #ececec;
    color: rgb(14, 14, 16);
    background: #f8f8f8;
    display: block;
    height: 32px;
    width: 85%;
    margin-top: 15px;
    :hover {
        border-color: #ccc;
    }
    :focus{
        border-color: #9147ff;
        background: #fff;
    }
}

.home-enlist-dialog-name:nth-child(3) {
    margin-top: 0px;
}

.home-enlist-dialog-name:nth-child(6) {
    min-height: 96px;
    resize: none;
    font-family: 'Colfax';
}


.home-enlist-dialog-button {
    background-color: #5bb0ffbd;
    height: 40px;
    width: 40%;
    border-radius: 8px;
    color: white;
    font-family: 'General Sans Variable';
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.home-enlist-dialog-button:hover {
    background-color: #33aaff;
}

.home-enlist-dialog-button:active {
    background-color: #29a6ff;
}

.home-enlist-dialog-button:nth-child(2) {
    background-color: #fff;
    border: 1px solid #5CBBFF;
    color: #5CBBFF;;
}

.home-enlist-dialog-button:hover {
    background-color: #33aaff;
}

.home-enlist-dialog-button:active {
    background-color: #29a6ff;
}

.home-enlist-dialog-button:nth-child(2):hover {
    background-color: #e9e9e9;
}

.home-enlist-dialog-button:nth-child(2):active {
    background-color: #d2d2d2;
}

.home-dialog-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.home-enlist-dialog input {
    margin-top: 15px;
    margin-right: 10px;
}

.home-enlist-dialog label {
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 300;
}

.home-enlist-dialog-comment {
    color: #0e0e0e;
    font-size: 16px;
    font-weight: 500;
    display: none;
}

.dialog-overlay {
    z-index: 21;
    background-color: #3636368e;
    backdrop-filter: blur(3px);
    height: 100vh;
    width: 100vw;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
}

.home-section6-button {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border: 2px solid #00b1d4; /* Light teal border */
    border-radius: 50px; /* Pill shape */
    color: #1b1f23;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition:
      background-color 0.2s ease-in-out,
      border-color 0.2s ease-in-out;
    align-self: flex-start; /* Prevent stretching full width */
    background-color: #ffffff;
    margin-top: 12px;
  }
  
.home-section6-button:hover {
    background-color: #e0f8fc; /* Light teal background on hover */
    border-color: #63e5f8;
  }

  .home-enlist-dialog {
    z-index: 22;
    border: 1px #d2d2d2 solid;
    border-radius: 8px;
    min-width: 50vw;
    padding: 20px;
    box-sizing: border-box;
}

.home-enlist-dialog h1 {
    font-size: 36px;
    font-weight: 400;
    color: #1D1D1D;
    margin-top: 0px;
    margin-bottom: 0px;
}

.home-enlist-dialog p {
    margin-top: 15px;
    margin-bottom: 20px;
}

.home-enlist-dialog-name {
    font-size: 14px;
    border-radius: 8px;
    line-height: 1.5;
    padding: 5px 10px;
    transition: box-shadow 100ms ease-in, border 100ms ease-in, background-color 100ms ease-in;
    border: 2px solid #ececec;
    color: rgb(14, 14, 16);
    background: #f8f8f8;
    display: block;
    height: 32px;
    width: 85%;
    margin-top: 15px;
    :hover {
        border-color: #ccc;
    }
    :focus{
        border-color: #9147ff;
        background: #fff;
    }
    .home-enlist-dialog {
        z-index: 22;
        border: 1px #d2d2d2 solid;
        border-radius: 8px;
        width: 95vw;
        padding: 20px;
    }
}

.home-enlist-dialog-name:nth-child(3) {
    margin-top: 0px;
}

.home-enlist-dialog-name:nth-child(6) {
    min-height: 96px;
    resize: none;
    font-family: 'Montserrat';
}


.home-enlist-dialog-button {
    background-color: #5bb0ffbd;
    height: 40px;
    width: 40%;
    border-radius: 8px;
    color: white;
    font-family: 'General Sans Variable';
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.home-enlist-dialog-button:hover {
    background-color: #33aaff;
}

.home-enlist-dialog-button:active {
    background-color: #29a6ff;
}

.home-enlist-dialog-button:nth-child(2) {
    background-color: #fff;
    border: 1px solid #5CBBFF;
    color: #5CBBFF;;
}

.home-enlist-dialog-button:hover {
    background-color: #33aaff;
}

.home-enlist-dialog-button:active {
    background-color: #29a6ff;
}

.home-enlist-dialog-button:nth-child(2):hover {
    background-color: #e9e9e9;
}

.home-enlist-dialog-button:nth-child(2):active {
    background-color: #d2d2d2;
}

.home-dialog-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.home-enlist-dialog input {
    margin-top: 15px;
    margin-right: 10px;
}

.home-enlist-dialog label {
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 300;
}

.home-enlist-dialog-comment {
    color: #0e0e0e;
    font-size: 16px;
    font-weight: 500;
    display: none;
}

.dialog-overlay {
    z-index: 21;
    background-color: #3636368e;
    backdrop-filter: blur(3px);
    height: 100vh;
    width: 100vw;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
}
.section-animate {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-animate.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.section-animate.from-right {
    transform: translateX(80px);
}

.section-animate.from-right.is-visible {
    transform: translateX(0);
}

