 /* CSS Reset */
 *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* CSS Variables */
  :root {
    --grey-light: #e9e9e9;
    --grey-dark: #333333;
    --teal-light: #51c4ad;
    --teal-mid: #0c9f90;
    --teal-dark: #005362;
    --blue-light: #61cadd;
    --white: #ffffff;
    
    --font-display: 'Bruno Ace SC', cursive;
    --font-body: 'Montserrat', sans-serif;
    
    --hero-gradient: linear-gradient(180deg, #0c9f90 0%, #61cadd 100%);
    --features-gradient: linear-gradient(180deg, #005362 0%, #0c9f90 100%);
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-body);
    color: var(--teal-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

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

  /* a {
    text-decoration: none;
    color: inherit;
  } */

  button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
  }

  /* ==================== HEADER ==================== */
 /* ==================== HEADER ==================== */
  .atl_header {
    position: absolute;
    top: 1.4rem;
    left: 0;
    width: 100%;
    z-index: 100;
    /* background: rgba(255, 255, 255, 0.15); */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
      /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  }

  .atl_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background-color: #E3EFF1;
  }


  .atl_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1%;
    width: 80%;
  margin: auto;
  border-radius: 1rem;
  }

  .atl_nav__link {
position: relative;
padding-bottom: 4px;
}

.atl_nav__link::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 2px;
background-color: var(--teal-mid);
transition: width 0.25s ease;
}


.atl_nav__link.active::after {
width: 100%;
}

  .atl_nav__logo {
    height: 28px;
    width: auto;
  }

    .atl_nav__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--grey-dark);
  }

  .atl_nav__link {
    color: var(--grey-dark);
    font-size: 1.1rem;
    font-weight: 700;
    transition: opacity 0.2s;
  }
  .atl_nav__link:hover {
    text-decoration: none;
    color:var(--teal-mid)
  }

  .nav__link:hover {
    opacity: 0.8;
  }

  

  .atl_nav__cta {
    background-color: var(--teal-mid);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: background-color 0.2s;
  }

  .atl_nav__cta:hover {
    background-color: var(--teal-mid) !important;
    color: var(--white)!important;
    text-decoration: none;
  }

  /* ==================== HERO ==================== */
.atl_hero {
position: relative;
height: 70vh;
min-height: 80vh;
background: var(--hero-gradient);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 6rem 1.5rem 4rem;
}

  .atl_hero__globe {
    position: absolute;
    bottom: 0;
    top:-100px;
    left: 50%;
    transform: translateX(-50%) translateY(30%);
    width: 1000px !important;
    opacity: 0.3;
    pointer-events: none;
  }

  .atl_hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 100%;
  }

  .atl_hero__welcome {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 3rem;
    line-height: 1rem;
  }

  .atl_hero__title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 6rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }

  .atl_hero__description {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.8;
  }

  /* ==================== SOLUTIONS ==================== */
  .atl_solutions {
    background-color: var(--grey-light);
    padding: 4rem 1.5rem;
  }

  .atl_solutions__container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .atl_solutions__image {
    max-width: 400px;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
  }

  .atl_solutions__content {
    max-width: 500px;
  }

  .atl_solutions__title {
    font-family: var(--font-body);
    font-size: 3rem !important;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .atl_solutions__title-teal-light {
    color: var(--teal-light);
  }

  .atl_solutions__title-teal-mid {
    color: var(--teal-mid);
    text-decoration: underline;
    text-decoration-color: var(--teal-mid);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
  }

  .atl_solutions__text {
    font-size: 1rem !important;
    margin-bottom: 1rem;
    color: var(--grey-dark);
  }

  .atl_solutions__text--muted {
    opacity: 0.8;
    margin-bottom: 2rem;
  }

  .atl_solutions__taglines {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .atl_solutions__tagline {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  .atl_black {
    color:var(--grey-dark) !important;
  }

  .atl_solutions__tagline--light {
    color: var(--teal-light);
  }

  .atl_solutions__tagline--mid {
    color: var(--teal-mid);
  }

  .atl_solutions__tagline--dark {
    color: var(--teal-dark);
    font-weight: 700;
    margin-bottom: 0px !important;
  }

  /* ==================== NETWORK ==================== */
  .atl_network {
    background-color: var(--grey-light);
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .atl_network__container {
    max-width: 700px;
    margin: 0 auto;
  }

  .atl_network__title {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 700 !important;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: var(--teal-mid);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
  }

  .atl_network__text {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    color: var(--grey-dark);
  }

  .atl_network__text--muted {
    opacity: 0.8;
  }

  .atl_network__text--italic {
    font-style: italic;
    opacity: 0.7;
  }

  /* ==================== FEATURES ==================== */
 .atl_features {
background-image:
  
  url('/assets/brands/atl/images/separator-bg.png');
background-size: cover, cover;
background-position: center, center;
background-repeat: no-repeat;
padding: 2rem 1.5rem;
background-color: #0c9f90;
opacity: 0.95;
}


  .atl_features__container {
    width:100%;
    /* max-width: 1360px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .atl_feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .atl_feature__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.75rem;
    transition: transform 0.2s;
  }

  .atl_feature:hover .atl_feature__icon {
    transform: scale(1.1);
  }

  .atl_feature__title {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  /* ==================== CONTACT ==================== */
  .atl_contact {
    background-color: var(--grey-light);
    padding: 4rem 1.5rem;
  }

  .atl_contact__container {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
  }

  .atl_contact__title {
    font-family: var(--font-display);
    color: var(--teal-mid);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: var(--teal-mid);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
  }

  .atl_contact__subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
  color: var(--grey-dark);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }

  .atl_contact__description {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
    color: var(--grey-dark);
    font-weight: 500;
    opacity: 0.8;
  }

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

  .atl_contact__form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .atl_contact__input,
  .atl_contact__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgb(145, 11, 255);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--teal-mid);
    background-color: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .atl_contact__input::placeholder,
  .atl_contact__textarea::placeholder {
    color: var(--teal-mid);
  }

  .atl_contact__input:focus,
  .atl_contact__textarea:focus {
    outline: none;
    border-color: var(--teal-mid);
    box-shadow: 0 0 0 3px rgba(12, 159, 144, 0.2);
  }

  .atl_contact__textarea {
    resize: none;
    min-height: 150px;
  }

  .atl_contact__submit {
    font-family: var(--font-body);
    background-color: var(--teal-mid);
    color: var(--white);

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    transition: background-color 0.2s;
    cursor: pointer;
  }

  .atl_contact__submit:hover {
    background-color: var(--teal-dark);
  }

  .atl_contact__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* ==================== FOOTER ==================== */
  .atl_footer {
    background: #207D88;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .atl_footer__logo {
     font-family: var(--font-display);
     color:white !important;
    height: 32px;
    width: auto;
    margin: 0 auto 1rem;
  }

  .atl_footer__address >  p {
    font-family: var(--font-body) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    font-style: normal !important;
    line-height: 1.6 !important;
    margin-bottom: 0rem !important;
  }

  .atl_footer__address a {
    transition: opacity 0.2s !important;
  }

  .footer__address a:hover {
    text-decoration: underline;
  }

  .atl_footer__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--white) !important;
  }

  .atl_footer__link {
    color:var(--white) !important;
    font-weight: 600;
    transition: opacity 0.2s !important;
    font-weight: 600 !important;
  }

  .atl_footer__link:hover {
    text-decoration: underline !important;
  }

  .atl_footer__separator {
    opacity: 0.5;
  }

  /* ==================== RESPONSIVE ==================== */
  @media (min-width: 768px) {
    .atl_nav__logo {
      height: 32px;
    }

    .atl_hero {
      min-height: 450px;
      padding: 5rem 1.5rem;
    }

    .atl_hero__globe {
      width: 700px;
    }

    .atl_hero__welcome {
      font-size: 2rem;
    }

    .atl_hero__title {
      font-size: 4rem;
    }

    .atl_hero__description {
      font-size: 1rem;
    }

    .atl_solutions {
      padding: 6rem 1.5rem;
    }

    .atl_solutions__container {
      flex-direction: row;
      gap: 4rem;
    }

    .atl_solutions__image {
      max-width: 450px;
    }

    .atl_solutions__title {
      font-size: 3rem;
    }

    .atl_solutions__taglines  .atl_solutions__tagline {
font-size: 1.5rem;
margin-bottom: 0px;
    }

    .atl_footer__globe {
      height: 50px;
      width: auto;
      margin: auto;
    }

    .atl_network__title {
      font-size: 2rem !important;
    }

    .atl_network__text {
      font-size: 1rem;
      line-height: 1.5rem;
    }

    .atl_features__container {
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .atl_feature__icon {
      width: 64px;
      height: 64px;
    }

    .atl_feature__title {
      font-size: 0.875rem;
    }

    .atl_contact__form-row {
      grid-template-columns: 1fr 1fr;
    }

    .atl_contact__title {
      font-family: var(--font-body);
      font-size: 2rem;
      font-weight: 700 !important;
    }

    .atl_footer__logo {
      height: 40px;
    }
  }

  @media (min-width: 1024px) {
    .atl_hero__globe {
      width: 800px;
    }

    .atl_hero__title {
      font-size: 4rem;
    }
  }




  @media (max-width: 767px) {
.atl_header {
  top: 0.75rem;
}

.atl_hero__welcome {
    font-size:2rem;
}

.atl_nav {
  width: 98%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
}

.atl_nav__links {
  gap: 1rem;
}

.atl_nav__link {
  font-size: 0.875rem;
}

.atl_nav__logo-link {
  max-width: 30%;
}

.atl_nav__cta {
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
}
}


@media (max-width: 767px) {
.atl_hero {
  height: auto;
  min-height: 60vh;
  padding: 7rem 1rem 3rem;
}
.atl_nav__logo {
  max-width: 100%;
  object-fit: contain;
} 
.atl_hero__description {
    font-size: 0.875 !important;
}
.atl_solutions__title {
    font-size: 2rem !important;
}
.atl_hero__content {
  max-width: 100%;
}
.atl_hero__title {
  font-size: 3rem;
}
.atl_solutions__content {
          margin: auto auto;
      text-align: center;
}

.atl_footer__globe {
  height: 50px;
  width: auto;
  margin: auto;

}
}

@media (max-width: 767px) {
.atl_hero__globe {
  width: 140%;
  max-width: none;
  top: -40px;
  transform: translateX(-50%) translateY(0);
  opacity: 0.2;
}
}

