@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

:root {
  --primary-color: #009845;
  --secondary-color: #7201b4;
  --tertiary-color: #d03e00;
  --light-blue: #00a89d;
  --gradient-color: #007335;
  --button-yellow: #f9dc05;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
}

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

/* WEBSITE STILL UNDER CONSTRUCTION */
.topNotice {
  background-color: #720184;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 37px;
}

.topNotice p {
  flex-grow: 1;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

/* --- HAMBURGER MENU & MOBILE NAV --- */
.desktop-utility {
  display: none;
}

.menu-toggle {
  display: block;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 20;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

.menu-toggle[aria-expanded="true"] .hamburger {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
}

/* MOBILE NAV STYLES */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  z-index: 15;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  margin: 1rem 0;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-utility-icons {
  display: flex;
  flex-direction: column;
}

.mobile-utility-icons a span {
  margin-right: 8px;
  display: inline-block;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* Background video and overlay */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: -1;
}

/* --- HEADER --- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 10;
  border-radius: 7px;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.2rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f6c121;
}

/* --- HERO CONTENT --- */
.hero-content {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.hero-content h1 {
  font-size: 36.67px;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-style: bold;
  line-height: 40.33px;
}

.hero-content p {
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 140%;
  letter-spacing: 3%;
}

/* --- PHOTO CAROUSEL --- */
.photo-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0 2rem;
}

.carousel-row {
  display: flex;
  gap: 0.7rem;
  width: max-content;
  margin-bottom: 10px;
}

.video-item {
  position: relative;
  width: 200.23px;
  height: 163.65px;
  overflow: hidden;
  border-radius: 3.85px;
  cursor: pointer;
}

.video-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 5;
}

.video-item:hover .video-overlay {
  opacity: 1;
  pointer-events: auto;
}

.row-top {
  animation: slide-left 25s linear infinite;
}

.row-bottom {
  animation: slide-right 25s linear infinite;
}

.photo-carousel:hover .row-top,
.photo-carousel:hover .row-bottom {
  animation-play-state: paused;
}


@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes slide-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* --- PROGRAM TIERS SECTION --- */
.card-structure-desktop {
  display: none;
}

.tiers-container,
.why-tngs-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f7;
}

.card-structure-mobile {
  padding: 0 5px;
}

.tiers-container-heading {
  color: var(--primary-color);
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  padding: 32px;
}

.tiers-container-heading h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 3%;
  margin: 0;
  line-height: 105px;
}

.cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.program-card {
  position: relative;
  width: 398px;
  height: 720px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: #fff;
  display: flex;
  align-items: flex-start;
  padding: 2rem;
  overflow: hidden;
  background: url("assets/students_card_default.jpg") no-repeat center
    center/cover;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 442px;
  height: 398px;
  opacity: 0.9;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(163, 0, 81, 0.7) 100%
  );
}

.program-card .text-content {
  position: relative;
  z-index: 2;
  max-width: 300px;
  margin-top: 50px;
}

.program-card h3 {
  font-size: 45px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 1rem;
}

.program-card p {
  font-size: 20px;
  font-weight: 200;
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  margin-bottom: 1.5rem;
  line-height: 34px;
  letter-spacing: 1%;
}

/* Icon Button Styling */
.more-info-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.more-info-btn:hover {
  background-color: #fff;
  color: #000;
}

/* --- Specific Color Overlays --- */

.pink-overlay::before {
  background: linear-gradient(to bottom, #a30051 0%, rgba(163, 0, 81, 0) 50%);
}

.pink-overlay {
  background-image: url("/assets/images/programCards/early-years.webp");
}

.purple-overlay::before {
  background: linear-gradient(
    to bottom,
    #59008d 0%,
    rgba(89, 0, 141, 0.9) 20%,
    rgba(89, 0, 141, 0) 50%
  );
}

.purple-overlay {
  background-image: url("/assets/images/programCards/primary.webp");
}

.green-overlay::before {
  background: linear-gradient(
    to bottom,
    #007d39 0%,
    rgba(0, 125, 57, 0.9) 20%,
    rgba(0, 125, 57, 0) 50%
  );
}
.green-overlay {
  background-image: url("/assets/images/programCards/secondary.webp");
}

/* --- SECTION HEADING --- */
.section-heading {
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  margin: 3rem 0 2rem;
  color: var(--primary-color);
  line-height: 42.4px;
}

.why-tngs-section {
  padding-top: 0;
}

.feature-card {
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.feature-card img {
  width: 398px;
  height: 300px;
  display: block;
  object-fit: cover;
}

.feature-card-green,
.feature-card-purple,
.feature-card-orange,
.feature-card-blue {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2.5rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  text-align: left;
}

.feature-card-green img,
.feature-card-purple img,
.feature-card-orange img,
.feature-card-blue img {
  width: 398px;
  height: 300px;
  display: block;
  object-fit: cover;
}

.feature-card-green .content img,
.feature-card-purple .content img,
.feature-card-orange .content img,
.feature-card-blue .content img {
  width: 136px;
  height: 47px;
}

.feature-card-green .feature-content {
  background-color: var(--primary-color);
  padding: 3rem 1.5rem;
}

.feature-card-purple .feature-content {
  background-color: var(--secondary-color);
  padding: 3rem 1.5rem;
}

.feature-card-orange .feature-content {
  background-color: var(--tertiary-color);
  padding: 3rem 1.5rem;
}

.feature-card-blue .feature-content {
  background-color: var(--light-blue);
  padding: 3rem 1.5rem;
}

.feature-content h3 {
  font-size: 35px;
  font-weight: 300;
  line-height: 130%;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.feature-content p {
  font-size: 16px;
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 26px;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* .cta-button {
  transition: transform 0.3s ease;
  border-radius: 27%;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.3);
} */

/*THE PROMISE*/
.promise-section {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.promise-section .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.promise-section .promise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d2f1f;
  opacity: 0.9;
  z-index: 2;
}

.promise-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 700px;

  padding: 50px 30px;
}

.promise-content h1 {
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 2rem;
}

.promise-content p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 26px;
  margin-bottom: 1.5rem;
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--primary-color);
  color: #ffffff;
  text-align: center;
  padding: 3rem 1.5rem 1rem;
}

.footer-mobile {
  display: block;
}

.footer-desktop {
  display: none;
}

.site-footer .separator {
  width: 95%;
  border: 0;
  height: 1px;
  background-color: white;
  margin: 1.5rem auto;
}

.footer-logo img {
  width: 270px;
  height: 65.27px;
}

.contact-heading {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3%;
  line-height: 140%;
  margin: 0;
  padding-bottom: 1rem;
}

.contact-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem 0;
  font-size: 1rem;
}

.contact-detail span {
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3%;
  margin-right: 0.5rem;
  line-height: 26px;
}

.contact-block a:not(.tngs-btn) {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #ffffff;
  border-radius: 40px;
  color: #009845;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.map-button span {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  line-height: 1;
}

/* --- Slogan Block --- */

.slogan-text {
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #d8ffec;
  margin: 0;
}

/* --- Social and Copyright --- */

.social-links {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  width: 260px;
  margin: 0 auto;
}

.social-icon {
  color: #ffffff;
}

.copyright {
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", "Helvetica Neue", sans-serif;
  margin-top: 1.5rem;
  line-height: 30.47px;
}

.linkedin img {
  width: 38;
  height: 39;
}

/* BUTTONS*/

.explore-btn {
  display: flex;
  align-items: center;
  padding: 12px 12px 12px 30px;
  border-radius: 50px;
  background-color: white;
  width: 185px;
  height: 50px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
  justify-content: center;
}

.explore-btn:hover {
  background-color: var(--button-yellow);
}

.btn-text {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 15px; /* Space between text and circle */
}

.btn-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-green);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease-in-out;
}

/* Styling for the image icon. Using the correct class/element selector here: .btn-icon */
.btn-icon-circle .btn-icon {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.3s ease;
}

/* Optional: Add a slight scale/bounce to the icon on hover */
.explore-btn:hover .btn-icon-circle .btn-icon {
  transform: translateY(2px) scale(1.05);
}

.cta-btn {
  display: flex;
  align-items: center;
  padding: 12px 12px 12px 30px;
  border-radius: 50px;
  background-color: white;
  width: 128px;
  height: 50px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}

.cta-btn:hover {
  background-color: var(--button-yellow);
}

/* --- TABLET: --- */
@media (min-width: 768px) and (max-width: 1023px) {
  .cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 40px auto;
  }

  .program-card.pink-overlay {
    grid-column: 1 / 3;
    width: 100%;
    height: 450px;
    margin-bottom: 0;
    padding: 3rem;
  }

  .pink-overlay::before {
    background: linear-gradient(to bottom, #a30051 0%, rgba(163, 0, 81, 0) 50%);
    width: 100%;
    height: 100%;
  }

  .sub-card-container {
    grid-column: 1 / 3;
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
  }

  .sub-card-container .program-card {
    width: 50%;
    height: 450px;
    margin-bottom: 0;
    padding: 2rem;
  }

  .program-card h3 {
    font-size: 32px;
    line-height: 1.2;
  }

  .program-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .card-structure-mobile {
    display: block;
  }

  .program-card .pink-overlay .more-info-btn {
    position: absolute;
    bottom: 5px;
    left: 250px;
    right: auto;
  }

  .card-structure-desktop {
    display: none;
  }
}

/* --- TABLET --- */
@media (max-width: 1023px) {
  .topNotice {
    height: 43px;
  }

  .topNotice p {
    font-size: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .video-item {
    width: 250px;
    height: 200px;
  }

  .hero-section .overlay {
    background: linear-gradient(
      to bottom,
      var(--primary-color) 0%,
      var(--gradient-color) 100%
    );
    opacity: 0.9;
  }
}

@media (min-width: 1024px) {
  .topNotice {
    height: 54px;
  }

  .topNotice p {
    font-size: 24px;
  }

  .site-header {
    position: absolute;
    top: 0;
    left: 5;
    background-color: rgba(0, 0, 0, 0.05);
    border: none;
    padding: 1.1rem 5%;
    justify-content: space-between;
    width: 97%;
    max-width: 1480px;
    margin-top: 10px;
  }

  .logo {
    width: 227px;
    height: 55px;
  }

  .mobile-nav,
  .menu-toggle {
    display: none !important;
  }

  .desktop-utility {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
  }

  .utility-icons {
    display: flex;
    gap: 1rem;
  }

  .utility-icons a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
  }

  .parent-login {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 5%;
  }

  .icon-whatsapp {
    width: 16.24px;
    height: 16.24px;
  }

  .icon-email {
    width: 20.47px;
    height: 14.82px;
  }

  .join-us-btn {
    background-color: #ffffff;
    color: #009845;
    padding: 16px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
  }

  /* HERO SECTION CONTAINER */
  .hero-section {
    min-height: 1401px;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  /* HERO TEXT CONTENT */
  .hero-content {
    z-index: 5;
    position: absolute;
    top: 27%;
    transform: translateY(-50%);
    max-width: 1200px;
    padding: 0 5%;
  }

  .hero-content h1 {
    font-size: 80px;
    line-height: 88px;
    font-weight: 700;
  }

  .hero-content p {
    font-size: 16px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 400;
    margin: 0.5rem auto;
    padding-bottom: 20px;
  }

  /* PHOTO CAROUSEL */
  .photo-carousel {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    z-index: 4;
    padding: 0 0 5rem 0;
  }

  .video-item {
    width: 416px;
    height: 314px;
    border-radius: 5px;
  }

  /* TIERS SECTION */
  .tiers-container-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 80%;
    max-width: 1200px;
    margin: 45px auto;
    height: 30px;
    padding: 20px;
  }

  .card-structure-mobile {
    display: none;
  }

  .card-structure-desktop {
    display: block;
  }

  .cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90vw;
    margin: 0 auto 55px auto;
    gap: 15px;
  }

  .sub-card-container {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .purple-overlay,
  .green-overlay {
    width: 536px;
    height: 300.62px;
  }

  .pink-overlay {
    width: 960px;
    height: 624px;
    text-align: flex-start;
  }

  .program-card {
    position: relative;
    width: 100%;
    margin: 0;
    transition: transform 0.3s ease;
    border-radius: 10px;
  }

  .desktop-more-info-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
  }

  .program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .program-card .text-content {
    margin-top: 0;
  }

  .program-card p {
    margin-bottom: 2rem;
  }

  .program-card .more-info-btn {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 10;
    bottom: 1rem;
    right: 2rem;
  }

  .green-overlay .text-content h3,
  .purple-overlay .text-content h3 {
    font-size: 28px;
    line-height: 120%;
    font-weight: 700;
  }

  .program-card::before {
    width: 529px;
    height: 624px;
  }

  .pink-overlay::before {
    background: linear-gradient(to right, #a30051 0%, rgba(163, 0, 81, 0) 50%);
  }

  .pink-overlay {
    background-image: url("/assets/images/programCards/early-years.webp");
    background-size: 180%;
    background-position: 80% 80%;
    object-fit: cover;
  }

  .purple-overlay::before {
    background: linear-gradient(
      to right,
      #59008d 0%,
      rgba(89, 0, 141, 0.9) 20%,
      rgba(89, 0, 141, 0) 50%
    );
  }

  .purple-overlay {
    background-image: url("/assets/images/programCards/primary.webp");
    background-size: 110%;
    background-position: 110% 90%;
    object-fit: cover;
  }

  .green-overlay::before {
    background: linear-gradient(
      to right,
      #007d39 0%,
      rgba(0, 125, 57, 0.9) 20%,
      rgba(0, 125, 57, 0) 50%
    );
  }
  .green-overlay {
    background-image: url("/assets/images/programCards/secondary.webp");
    background-size: 110%;
    background-position: 110% 80%;
    object-fit: cover;
  }

  /* WHY TNGS */

  .why-tngs-section {
    padding: 0 5rem 5rem 5rem;
  }

  .section-heading {
    margin: 0 auto 25px auto;
  }

  .feature-card-green,
  .feature-card-purple,
  .feature-card-orange,
  .feature-card-blue {
    max-width: none;
    height: 512px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0;
  }

  .feature-card-green img,
  .feature-card-purple img,
  .feature-card-orange img,
  .feature-card-blue img,
  .feature-content {
    width: 50%;
    height: 512px;
  }

  .feature-card-green img,
  .feature-card-purple img,
  .feature-card-orange img,
  .feature-card-blue img {
    width: 50%;
    height: 100%;
    object-fit: cover;
  }

  .feature-card-green .content img,
  .feature-card-purple .content img,
  .feature-card-orange .content img,
  .feature-card-blue .content img {
    width: 136px;
    height: 47px;
  }

  .feature-card-green,
  .feature-card-orange {
    flex-direction: row-reverse;
  }

  .feature-content {
    text-align: left;
  }

  .content {
    width: 410px;
    height: 311.41ox;
    margin: 35px;
  }

  .content h3 {
    font-size: 35px;
    font-weight: 200;
    line-height: 130%;
  }

  .content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: 3%;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
  }

  .feature-card-purple .explore-btn .btn-icon-circle .btn-icon {
    width: 20px !important;
    height: 20px !important;
  }

  /* PROMISE SECTION */
  .promise-section {
    height: 472px;
  }

  .promise-title {
    font-size: 40px;
    font-weight: 200;
  }

  .promise-content p {
    font-size: 16px;
    font-weight: 300;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    letter-spacing: 3%;
    line-height: 26px;
  }

  /* FOOTER */
  .footer-mobile {
    display: none;
  }

  .footer-desktop {
    display: block;
  }

  .desktop-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    gap: 50px;
  }

  .desktop-contact-group {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    width: 823px;
  }

  .desktop-slogan-row {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .desktop-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
  }

  .footer-logo img {
    width: 195.44px;
    height: 47.25px;
  }

  .contact-heading {
    font-size: 16px;
    font-weight: 700;
    padding: 0;
    letter-spacing: 10%;
  }

  .contact-detail {
    font-size: 15px;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
  }

  .contact-detail a {
    color: white;
    text-decoration: none;
  }

  .slogan-text {
    font-size: 130px;
    font-weight: 700;
    line-height: 120%;
  }

  .copyright {
    font-size: 14px;
    font-weight: 400;
    margin-top: 0;
  }

  .social-links {
    width: 476px;
  }

  .social-icon img {
    width: 16px;
    height: 16px;
  }

  .linkedin img {
    width: 24px;
    height: 24px;
  }
}

.tngs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 24px;
  background-color: #fff;
  color: #009845;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

.tngs-btn::after {
  font-family: "Material Icons";
  content: "arrow_forward";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #009845;
  color: #fff;
  font-size: 24px;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}

.tngs-btn:hover {
  background-color: #ebe718;
  color: #003619;
}

.tngs-btn:hover::after {
  background-color: #fff;
  color: #003619;
  transform: rotate(-45deg);
}

/* @media (min-width: 1600px) {
  .hero-content .cta-button {
    margin-bottom: 30px;
  }
} */
