@font-face {
  font-family: 'Author';
  src: url('../Font/Author/Author-Variable.eot?#iefix') format('embedded-opentype'),
    url('../Font/Author/Author-Variable.eot') format('eot'),
    url('../Font/Author/Author-Variable.woff2') format('woff2'),
    url('../Font/Author/Author-Variable.woff') format('woff'),
    url('../Font/Author/Author-Variable.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Author';
  src: url('../Font/Author/Author-Medium.eot?#iefix') format('embedded-opentype'),
    url('../Font/Author/Author-Medium.eot') format('eot'),
    url('../Font/Author/Author-Medium.woff2') format('woff2'),
    url('../Font/Author/Author-Medium.woff') format('woff'),
    url('../Font/Author/Author-Medium.ttf') format('ttf');
  font-weight: 500;
  font-style: normal;
}


/* ========== Start Globally Section ========== */
body,
html {
  font-family: 'Author', sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: 'Author';
  color: #005154;
  font-weight: 500 !important;
}

h1 {
  font-size: 2rem !important;
}

h2 {
  font-size: 1.75rem !important;
}

h3 {
  font-size: 1.5rem !important;
}

p {
  font-size: 1.25rem !important;
  color: gray !important;
}

hr {
  border-width: 1px !important;
  border-bottom: hidden !important;
  opacity: 25% !important;
  border-color: gray !important;
}

/* ========== End Globally Section ========== */


/* ========== Start General Section ========== */
.content-section-TandC {
  padding: 20px 20px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin: auto;
}

.container-fluid-TandC {
  margin-block: 40px;
}


@media (max-width: 768px) {
  .content-section-TandC {
    padding: 20px;
  }
}

/* ========== End General Section ========== */


/* ========== Start Header Section ========== */
.HeaderParent {
  width: 100%;
  background-color: white;
  transition: box-shadow 0.3s ease-in-out;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 999;

}

.HeaderParent.scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 30px;
  box-sizing: border-box;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
}

.logo img {
  width: 150px;
  height: auto;
}

.header-right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
  justify-content: end;
}

.auth-buttons {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.login-btn {
  background-color: #0b4a4e;
  color: white;
  padding: 4px 16px;
  border: 1px solid #0b4a4e;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  color: #005c63;
  background-color: white;
}

.register-btn {
  border: 1px solid #0b4a4e;
  background-color: white;
  color: #005c63;
  border-radius: 8px;
  padding: 4px 16px;
  transition: all 0.3s ease;
}

.register-btn:hover {
  color: white;
  background-color: #0b4a4e;
}

.register-btn-menu {
  border: 1px solid #0b4a4e;
  background-color: white;
  color: #005c63;
  border-radius: 8px;
  padding: 4px 16px;
  transition: all 0.3s ease;
}

.register-btn-menu:hover {
  color: white;
  background-color: #0b4a4e;
}

.login-btn-menu {
  background-color: #0b4a4e;
  color: white;
  padding: 4px 16px;
  border: 1px solid #0b4a4e;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.login-btn-menu:hover {
  color: #005c63;
  background-color: white;
}

.header-links {
  display: flex;
  justify-content: end;
  gap: 20px;
  align-items: center;
  position: relative;
}

.header-links a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.header-links a:hover {
  color: #005154;
}

.dropdown-icon {
  font-size: 18px;
  vertical-align: middle;
}

.header-links .submenu {
  display: none;
  position: absolute;
  background-color: white;
  padding: 10px 0;
  top: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
}

.header-links .has-submenu:hover .submenu {
  display: block;
}

.dropdown-left {
  position: absolute;
  right: 0;
}

.header-links .submenu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

.header-links .submenu a:hover {
  background-color: #f5f5f5;
  color: #0b4a4e;
}

.burger-menu {
  display: none;
  width: 40px;
  height: 12px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.burger-menu.active {
  position: fixed;
  right: 20px;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0b4a4e;
  position: absolute;
  left: 0;
  transition: 0.4s ease;
  border-radius: 12px;
}

.burger-menu span:nth-child(1) {
  top: 0;
}

.burger-menu span:nth-child(2) {
  bottom: 0;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 30%;
  background-color: white;
}

.burger-menu.active span:nth-child(2) {
  transform: rotate(-45deg);
  bottom: 55%;
  background-color: white;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00695c 0%, #005154 100%);
  z-index: 999;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  color: white;
  font-size: 24px;
  margin: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-nav a:hover {
  color: #b5b5b5;
}

.dropdown {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  font-size: 10px;
}

.dropdown.show {
  display: flex;
}

.dropdown a {
  font-size: 20px;
}

.close-cross {
  position: absolute;
  top: 57px;
  right: 22px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.close-cross div {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

.close-cross div:first-child {
  transform: rotate(0);
}

.close-cross div:last-child {
  transform: rotate(0);
}

.close-cross.active div:first-child {
  transform: rotate(45deg);
}

.close-cross.active div:last-child {
  transform: rotate(-45deg);
}

@media (max-width: 1050px) {
  .header-right {
    display: none;
  }

  .burger-menu {
    display: block;
  }
}

@media (max-width: 556px) {
  .logo img {
    width: 120px;
    height: auto;
  }

  .close-cross {
    top: 50px;
    right: 23px;
  }

}

.arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
  transform-origin: center;
  vertical-align: middle;
}

.arrow-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.arrow-icon.rotate-up {
  transform: rotate(-180deg);
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: top 0.3s;
}

.hide-header {
  top: -100px;
}

a img {
  width: 10px;
}

img,
svg {
  vertical-align: revert !important;
}

/* ========== End Header Section ========== */

#instam-subscribe-for-our-email-mvqmhh{
    margin-top:0px !important;
}
/* ========== Start Newsletter Section ========== */
.newsletter-section {
  padding: 40px 20px;
 /*background-color: #eef2f3;*/
  background-color: transparent !important;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  margin: 0px auto 0px auto;
}

.newsletter-title {
  font-size: 1.8rem;
  color: #005154;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-text {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
}

.input-group {
  display: flex;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  justify-content: end;
}

.form-control {
  flex: 1;
  padding: 12px;
  border: none;
  font-size: 1rem;
  outline: none;
  border-radius: 0;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  z-index: 0;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  z-index: 10;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.containerEmail {
  max-width: 600px;
  margin: auto;
}

.btn-subscribe {
  background-color: #005154;
  color: white;
  padding: 12px 20px;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background-color: #005154c5;
  color: white;
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }

  .btn-subscribe {
    border-radius: 0 0 0 30px;
    width: 100%;
  }
}

.btn .btn-subscribe {
  border: none !important;
}

/* ========== End Newsletter Section ========== */

/* ========== Start Footer Section ========== */
.footer-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px;
  box-sizing: border-box;
}

.footer {
  background: linear-gradient(90deg, #00695c 0%, #005154 100%);
  color: white;
  padding: 40px 0;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.footer-column img {
  width: 150px;
  height: auto;
}

.footer h5 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer a,
.footer p {
  color: #d1e7e0 !important;
  font-size: 1rem !important;
  margin-bottom: 10px;
  text-decoration: none;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #ffffff !important;
}

.footer-separator {
  height: auto;
  width: 0.5px;
  background-color: #d1e7e0da;
  margin: 0 30px;
}

.Copyright-separator {
  height: 0.5px;
  width: auto;
  background-color: #d1e7e0da;
  margin: 20px auto 0px auto;
}

.CopyRight {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 0px 20px;
}

@media (max-width: 888px) {
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-separator {
    height: 1px;
    width: 100%;
    margin: 20px 0;
  }
}

/* ========== End Footer Section ========== */

/* ========== Start Dropdown Links Animation Mobile Nav Section ========== */
@keyframes staggeredDropdownFadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown.show .staggered-dropdown {
  opacity: 0;
  transform: translateY(-10px);
  animation: staggeredDropdownFadeSlideIn 0.3s forwards;
}

/* Apply delay to each dropdown item for staggered effect */
.dropdown.show .staggered-dropdown:nth-child(1) {
  animation-delay: 0.1s;
}

.dropdown.show .staggered-dropdown:nth-child(2) {
  animation-delay: 0.2s;
}

.dropdown.show .staggered-dropdown:nth-child(3) {
  animation-delay: 0.3s;
}

.dropdown.show .staggered-dropdown:nth-child(4) {
  animation-delay: 0.4s;
}

/* ========== End Dropdown Links Animation Mobile Nav Section ========== */




/* ========== Start GDPR Cookie Privacy Section ========== */
#cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #005154 0%, #00695c 100%);
  padding: 15px;
  z-index: 1000;
  text-align: center;
}

#cookie-consent-banner p {
  display: inline-block;
  margin: 0 10px;
  color: white !important;
  font-size: 1rem;
}

#cookie-consent-banner a {
  color: white;
  border-bottom: 1px solid white !important;
  transition: all 0.3s ease;
  text-decoration: none;
}

#cookie-consent-banner a:hover {
  color: rgb(224, 224, 224);
  border-bottom: 1px solid rgb(224, 224, 224) !important;

}

.cookie-button-group {
  display: inline-flex;
  gap: 10px;
}

#cookie-consent-banner button {
  padding: 4px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  border: 1px solid white;
  transition: all 0.3s ease;
}

#cookie-consent-banner button:nth-child(1):hover {
  background: none;
  color: white;
}

#cookie-consent-banner button:nth-child(2):hover {
  background: white;
  color: #005154;
}


#accept-cookies {
  background-color: white;
  color: #005154;
  border: none;
}

#reject-cookies {
  color: white;
  background: none;
  border: 1px solid white;
}

@media (max-width: 985px) {
  .cookie-button-group {
    margin-top: 0.5rem;
  }
}

/* Responsive Styles */
@media (max-width: 576px) {
  #cookie-consent-banner {
    padding: 10px;
    text-align: left;
  }

  #cookie-consent-banner p {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem !important;
  }

  .cookie-button-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 0.5rem;
    /* Adds margin-top when wrapped */
  }

}

/* ========== End GDPR Cookie Privacy Section ========== */

/* ========== Start Cookie Privacy Section ========== */
.content-section-CP {
  padding: 20px 20px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin: auto;
}

.container-fluid-CP {
  margin-block: 40px !important;
}

.content-section-CP h2 {
  color: #005154;
  font-size: 1.75rem;
  font-weight: 600;
}

.content-section-CP p {
  font-size: 1.25rem;
  color: gray;
}

/* ========== End Cookie Privacy Section ========== */


/* ========== Start Data Privacy Policy Section ========== */
.content-section-DP {
  padding: 20px 20px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin: auto;
}

.container-fluid-DP {
  margin-block: 40px;
}


@media (max-width: 768px) {
  .content-section-DP {
    padding: 20px;
  }
}

/* ========== End Data Privacy Policy Section ========== */

/* ========== Start Human Traficking Policy Section ========== */

.content-section-HT {
  padding: 20px 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.content-section-HT p,
.content-section-HT li {
  color: gray;
  font-size: 1.25rem;
  max-width: 1200px;
  width: 100%;
}

.content-section-HT li {
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .content-section-HT {
    padding: 20px;
  }
}


.container-fluid-HT {
  margin-block: 40px;
}

/* ========== End Human Traficking Policy Section ========== */



.container-AboutIAM {
  padding: 60px 20px;
  text-align: center;
  border: 1px solid #0051546b;
  border-radius: 12px;
  max-width: 1200px;
  margin-top: 2rem;
  margin-inline: auto;
}

.description-AboutIAM {
  font-size: 1.15rem;
  color: #003847;
  margin: 0;
}

/* ========== Start IAM Vision & Mission Cards Section ========== */
.cards-section-VM {
  padding: 30px 20px 30px 20px;
  background-color: #ffffff;
}

.cards-section-IAM-Values2 {
  padding: 0px 20px 30px 20px;
  background-color: #ffffff;
}


.cards-containerVM {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .cards-containerVM {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .cards-containerVM {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {
  .cards-containerVM {
    grid-template-columns: 1fr;
  }
}

.card-itemVM {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #005154 0%, #00695c 100%);
}

.card-itemVM:nth-child(2) {
  background: linear-gradient(90deg, #00695c 0%, #005154 100%);

}

.card-itemVM img {
  width: 75px;
  height: 75;
  margin-bottom: 20px;
}

.card-itemVM h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.card-itemVM p {
  color: rgb(226, 226, 226) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .card-itemVM {
    padding: 20px;
  }

  .card-itemVM h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .card-itemVM h3 {
    font-size: 1.3rem;
  }

  .card-itemVM img {
    width: 50px;
    height: 50;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .card-itemVM {
    padding: 20px;
  }

  .card-itemVM h3 {
    font-size: 1.2rem;
  }

  .card-itemVM p {
    font-size: 0.9rem;
  }
}

/* ========== End IAM Vision & Mission Cards Section ========== */

/* ========== START Our IAM Values Section ========== */
.cards-section-IAM-Values {
  padding: 60px 20px 30px 20px;
  background-color: #ffffff;
}

.cards-container-IAM-Values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.card-item-IAM-Value {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-item-IAM-Value:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-item-IAM-Value img {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}


.card-item-IAM-Value h3 {
  font-size: 1.6rem;
  color: #005154;
  margin-bottom: 15px;
}

.card-item-IAM-Value p {
  color: gray;
  font-size: 1.15rem;
  line-height: 1.5;
}

.cards-container-IAM-Values2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.card-item-IAM-Value2 {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-item-IAM-Value2:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-item-IAM-Value2 img {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}


.card-item-IAM-Value2 h3 {
  font-size: 1.6rem;
  color: #005154;
  margin-bottom: 15px;
}

.card-item-IAM-Value2 p {
  color: gray;
  font-size: 1.15rem;
  line-height: 1.5;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .card-item-IAM-Value {
    padding: 20px;
  }

  .card-item-IAM-Value h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .card-item-IAM-Value h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .card-item-IAM-Value {
    padding: 20px;
  }

  .card-item-IAM-Value h3 {
    font-size: 1.2rem;
  }

  .card-item-IAM-Value p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1150px) {

  .cards-container-IAM-Values {
    grid-template-columns: 1fr 1fr;
  }

  .card-item-IAM-Value:last-child {
    grid-column: span 2;
    width: 100%;
  }

}

@media (max-width: 768px) {
  .cards-container-IAM-Values {
    grid-template-columns: 1fr;
  }

  .cards-container-IAM-Values2 {
    grid-template-columns: 1fr;
  }

  .card-item-IAM-Value {
    width: 100%;
  }

  .card-item-IAM-Value:last-child {
    grid-column: span 1;
  }
}

/* ========== END Our IAM Values Section ========== */


/* ========== Start Roadmap Section ========== */
.container-Roadmap {
  max-width: 1200px !important;
  margin: auto !important;
  padding: 40px 20px !important;
  position: relative !important;
}

.step-section {
  position: relative;
  padding-left: 100px;
  margin-bottom: 40px;
}

.years-section {
  position: relative;
}

.years-section::before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: -40px;
  left: 40px;
  width: 2px;
  background-color: #0a5e65;
  z-index: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #005154;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #005154;
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  left: 10px;
  top: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.step-content {
  background-color: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.achieved .step-icon {
  background: linear-gradient(90deg, #005154 0%, #00695c 100%);
  color: white;
}

.container-Roadmap {
  max-width: 900px;
  margin: auto;
  padding: 40px 15px;
  position: relative;
}

.years-section::before {
  top: 60px;
  bottom: -40px;
}

/* Responsive Design */
@media (max-width: 576px) {
  .step-section {
    padding-left: 70px;
  }

  .years-section::before {
    left: 30px;
    top: 50px;
    bottom: -30px;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    left: 5px;
  }

  .step-content {
    padding: 15px 20px;
  }
}

/* ========== End Roadmap Section ========== */

/* ========== Start Coaching Section ========== */

.Coaching-container {
  max-width: 1200px !important;
  margin: auto;
}

/* Partnership Section */
.Coaching-partnership-section {
  color: #005154;
  padding: 20px;
  text-align: center;
}

.Coaching-partnership-section h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.Coaching-partnership-section p {
  max-width: 1200px;
  color: gray;
  font-size: 1.15rem !important;
  margin: auto;
}

/* Image Section */
.Coaching-partnership-image {
  max-width: 1200px;
  margin: 20px auto;
}

.Coaching-partnership-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Description Section */
.Coaching-partnership-description {
  color: gray;
  padding: 30px 20px;
  font-size: 16px;
  text-align: center;
}

.Coaching-partnership-description .Coaching-container p {
  margin: auto;
  max-width: 1200px;
}

/* Clients Section */
.Coaching-clients-section {
  background-color: #ffffff;
  color: #333;
  text-align: center;
  padding: 50px 20px;
}

.Coaching-clients-content {
  max-width: 800px;
  margin: 0 auto;
}

.Coaching-clients-section h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #005154;
}

.Coaching-clients-section p {
  font-size: 1.15rem;
  color: gray;
  margin-bottom: 25px;
}

.Coaching-divider-line {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background-color: #e0e0e0;
  margin: 0 auto 30px;
}

/* Logo Slider */
.Coaching-slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Coaching-slick-slide {
  margin: 0px 20px;
}

.Coaching-slick-slide img {
  width: 100%;
}

.Coaching-logo-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.Coaching-logo-slider-wrapper::before,
.Coaching-logo-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
}

.Coaching-logo-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.Coaching-logo-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* Responsive Design */
@media (max-width: 768px) {
  .Coaching-logo-slider img {
    width: 120px;
    margin: 0 15px;
  }

  .Coaching-clients-section p {
    font-size: 16px;
  }

  .Coaching-partnership-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .Coaching-logo-slider img {
    width: 100px;
    margin: 0 10px;
  }

  .Coaching-clients-section p {
    font-size: 14px;
  }

  .Coaching-divider-line {
    max-width: 150px;
  }

  .Coaching-partnership-section h2 {
    font-size: 24px;
  }

  .Coaching-partnership-section p {
    font-size: 12px;
  }
}

.Coaching-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #003847;
}

/* Apply Button */
.Coaching-apply-btn {
  background-color: #005154;
  border: 1px solid #005154;
  color: white;
  font-size: 18px;
  padding: 8px 18px;
  border-radius: 12px;
  width: 150px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  margin-top: 15px;
}

.Coaching-apply-btn:hover {
  background-color: #ffffff;
  color: #005154;
  text-decoration: none;
}

/* Cards Container */
.Coaching-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.Coaching-card-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.Coaching-card-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.Coaching-card-item img {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
}

.Coaching-card-item h3 {
  font-size: 1.6rem;
  color: #005154;
  margin-bottom: 15px;
}

.Coaching-card-item p {
  color: gray;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .Coaching-card-item {
    padding: 20px;
  }

  .Coaching-card-item h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .Coaching-card-item h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .Coaching-card-item {
    padding: 10px;
  }

  .Coaching-card-item h3 {
    font-size: 1.2rem;
  }

  .Coaching-card-item p {
    font-size: 0.9rem;
  }
}

/* Cards Section */
.Coaching-cards-section {
  padding: 60px 0px;
  background-color: #ffffff;
}

/* How it works section */
.Coaching-how-it-works-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: auto;
}

.Coaching-how-it-works-text {
  max-width: 320px;
  text-align: left;
  margin-right: 20px;
  color: #333;
}

.Coaching-how-it-works-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
}

.Coaching-how-it-works-text button {
  background-color: #005154;
  color: white;
  border: 1px solid #005154;
  padding: 12px 24px;
  width: 150px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.Coaching-how-it-works-text button:hover {
  background-color: white;
  color: #005154;
}

.Coaching-cards-container-how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
}

.Coaching-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.Coaching-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.Coaching-card-number {
  margin-bottom: 15px;
}

.Coaching-card-number img {
  width: 50px;
}

.Coaching-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #005154;
  margin-bottom: 15px;
}

.Coaching-card-description {
  font-size: 1rem;
  color: gray;
  line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 950px) {
  .Coaching-how-it-works-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .Coaching-how-it-works-text {
    text-align: left;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .Coaching-cards-container-how {
    max-width: 100%;
  }
}

/* Key Features Section */
.Coaching-features-section {
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.Coaching-features-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.Coaching-features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.Coaching-feature-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #003847;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Coaching-feature-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.Coaching-feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.Coaching-feature-item h3 {
  font-size: 1.6rem;
  color: #003847;
  margin-bottom: 15px;
}

.Coaching-feature-item p {
  color: #003847;
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
}

/* IAM Coaching Clinic Section - 4 cards in one line */
.Coaching-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .Coaching-cards-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .Coaching-cards-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .Coaching-cards-container {
    grid-template-columns: 1fr;
  }

  .Coaching-cards-container-how {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
}

/* Key Features Section - 4 cards in one line */
.Coaching-features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .Coaching-features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .Coaching-features-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 576px) {
  .Coaching-features-container {
    grid-template-columns: 1fr;
  }
}

/* ========== End Coaching Section ========== */

/* ========== Start Coaching Section ========== */

.Corporate-container {
  max-width: 1200px !important;
  padding: 0;
  margin: auto;
}

.Corporate-table {
  width: 100%;
  color: #333;
  border-collapse: collapse;
  border-spacing: 0;
}

/* Left-align all table text */
.Corporate-table th,
.Corporate-table td {
  text-align: left;
  padding: 20px;
  border-bottom: 1px solid #33333329;
  /* Only horizontal lines */
  vertical-align: middle;
}

/* Remove top border from the first row */
.Corporate-table th {
  font-weight: 700;
  background-color: #f8f9fa;
  color: #333;
  border-bottom: 1px solid #33333329;
}

/* No vertical borders */
.Corporate-table th,
.Corporate-table td {
  border-left: none;
  border-right: none;
}

/* Button styling */
.Corporate-btn-plan {
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.Corporate-btn-get-plan {
  background-color: #3498db;
  color: white;
  border: none;
}

.Corporate-btn-get-plan:hover {
  background-color: #2980b9;
}

.Corporate-btn-learn-more {
  background-color: #555;
  color: white;
  border: none;
}

.Corporate-btn-learn-more:hover {
  background-color: #444;
}

.Corporate-ApplyNow-Btn {
  background-color: #005154;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 300;
  padding: 8px 20px;
  border-radius: 12px;
  width: 150px;
  border: 1px solid #005154;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.Corporate-ApplyNow-Btn:hover {
  background-color: #ffffff;
  color: #005154;
}

/* Tick icon */
.Corporate-icon-check {
  display: inline-block;
  width: 20px;
  height: 20px;
}

/* SVG icon styling */
.Corporate-icon-check svg {
  width: 100%;
  height: 100%;
  fill: #27ae60;
}

/* Responsive splitting for smaller screens */
.Corporate-table-split {
  display: none;
}

@media (max-width: 850px) {

  /* Hide the full table and display the split tables */
  .Corporate-table-main {
    display: none;
  }

  .Corporate-table-split {
    display: block;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {

  .Corporate-table th,
  .Corporate-table td {
    padding: 10px;
  }

  .Corporate-btn-plan {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

}

.Corporate-PlanTH th {
  color: #005154;
  font-weight: 700;
}

.Corporate-PriceTH td {
  color: #005154;
  font-weight: 700;
}

/* Partnership Section */
.Corporate-partnership-section {
  color: #005154;
  padding: 20px;
  text-align: center;
}

.Corporate-partnership-section h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.Corporate-partnership-section p {
  max-width: 1200px;
  color: gray;
  font-size: 1.15rem !important;
  margin: auto;
}

/* Image Section */

.Corporate-partnership-image {
  max-width: 1200px;
  margin: 20px auto;
}

.Corporate-partnership-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Description Section */
.Corporate-partnership-description {
  color: gray;
  padding: 30px 20px;
  font-size: 16px;
  text-align: center;
}

.Corporate-partnership-description .Corporate-container p {
  margin: auto;
  max-width: 1200px;
}

.Corporate-custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 20px;
  gap: 30px;
}

/* Style for each grid column */
.Corporate-custom-grid div {
  background-color: #ffffff;
  /* White background for columns */
}

/* Style for the paragraph text */
.Corporate-custom-grid p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: gray;
}

/* Style for the image */
.Corporate-custom-grid img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  /* Rounded corners for the image */
}


@media (max-width: 995px) {

  /* Hide the full table and display the split tables */
  .Corporate-custom-grid {
    grid-template-columns: 1fr;
  }

  .Corporate-custom-grid div {
    padding-block: 0px;
  }
}

@media (max-width: 850px) {

  /* Hide the full table and display the split tables */
  .Corporate-table-main {
    display: none;
  }

  .Corporate-table-split {
    display: block;
    margin-bottom: 20px;
  }
}

/* Cards Section */
.Corporate-cards-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.Corporate-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.Corporate-cards-container-how {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 700px;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .Corporate-how-it-works-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .Corporate-how-it-works-text {
    text-align: left;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .Corporate-cards-container-how {
    max-width: 100%;
  }
}

.Corporate-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Ensure 4 cards per row */
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.Corporate-card-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.Corporate-card-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.Corporate-card-item img {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.Corporate-card-item h3 {
  font-size: 1.6rem;
  color: #005154;
  margin-bottom: 15px;
}

.Corporate-card-item ul li {
  color: gray;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .Corporate-card-item {
    padding: 20px;
  }

  .Corporate-card-item h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .Corporate-card-item h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .Corporate-card-item {
    padding: 20px;
  }

  .Corporate-card-item h3 {
    font-size: 1.2rem;
  }

  .Corporate-card-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1200px) {
  .Corporate-cards-container {
    grid-template-columns: repeat(2, 1fr);
    /* Adjust to 3 cards per row on medium screens */
  }
}

@media (max-width: 800px) {
  .Corporate-cards-container {
    grid-template-columns: repeat(1, 1fr);
    /* Adjust to 2 cards per row on smaller screens */
  }
}

@media (max-width: 576px) {
  .Corporate-cards-container {
    grid-template-columns: repeat(1, 1fr);
    /* Adjust to 1 card per row on mobile */
  }
}

.Corporate-divider {
  border-right: 2px solid #a11818;
  /* Thin light-gray divider line */
}

.Corporate-SectionParent {
  padding: 60px 20px;
}

/* ========== End Coaching Section ========== */



/* ========== Start ATC Section ========== */

.ATC-Section {
  color: #005154;
  padding: 20px;
  text-align: center;
}

.ATC-Section h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ATC-Section p {
  max-width: 1200px;
  color: gray;
  font-size: 1.15rem !important;
  margin: auto;
  padding-bottom: 20px;
}

.ATC-Container {
  max-width: 1200px !important;
  padding: 20px 20px;
  text-align: center;
  margin: auto;
}


.ATC-Img {
  max-width: 1200px;
  margin: 20px auto;
}

.ATC-Video video {
  max-width: 1200px;
  margin: auto;
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.ATC-Img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Apply Button */
.ATC-Apply-Btn {
  background-color: #005154;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 300;
  padding: 8px 20px;
  border-radius: 12px;
  width: 150px;
  border: 1px solid #005154;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.ATC-Apply-Btn:hover {
  background-color: #ffffff;
  color: #005154;
}

/* Cards Container */
.ATC-Cards-Container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ATC-Card-Item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ATC-Card-Item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ATC-Card-Item img {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}


.ATC-Card-Item h3 {
  font-size: 1.6rem;
  color: #005154;
  margin-bottom: 15px;
}

.ATC-Card-Item p {
  color: gray;
  font-size: 1rem;
  line-height: 1.5;
}

.ATC-Card-Item:last-child {
  grid-column: span 3;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .ATC-Card-Item {
    padding: 20px;
  }

  .ATC-Card-Item h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .ATC-Card-Item h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .ATC-Card-Item {
    padding: 10px;
  }

  .ATC-Card-Item h3 {
    font-size: 1.2rem;
  }

  .ATC-Card-Item p {
    font-size: 0.9rem;
  }
}

/* Cards Section */
.ATC-Cards-Section {
  padding: 60px 20px;
  background-color: #ffffff;
}


/* How it works section */
.ATC-How-It-Works-Section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-block: 60px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: auto;
}

.ATC-How-It-Works-Text {
  max-width: 320px;
  margin-right: 20px;
  color: #333;
}

.ATC-How-It-Works-Text p {
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: left;
}


.ATC-Cards-Container-How {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
}

.ATC-Card-How {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.ATC-Card-How:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ATC-Card-How-Number {
  margin-bottom: 15px;
}

.ATC-Card-How-Number Img {
  width: 50px;
}

.ATC-Card-How-Title {
  font-size: 18px;
  font-weight: 600;
  color: #005154;
  margin-bottom: 15px;
}

.ATC-Card-How-Description {
  font-size: 15px;
  color: gray;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .ATC-How-It-Works-Section {
    flex-direction: column;
    align-items: flex-start;
  }

  .ATC-How-It-Works-Text {
    text-align: left;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .ATC-Cards-Container-How {
    max-width: 100%;
  }
}

/* Key Features Section */
.ATC-Features-Section {
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.ATC-Features-Section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.ATC-Features-Container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ATC-Feature-Item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: #003847;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ATC-Feature-Item img {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
}

.ATC-Feature-Item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ATC-Feature-Item h3 {
  font-size: 1.6rem;
  color: #005154;
  margin-bottom: 15px;
}

.ATC-Feature-Item p {
  color: gray;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  /* Aligning the feature card paragraphs to the left */
}


.How-It-Works-Section {
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 1150px) {

  .ATC-Cards-Container {
    grid-template-columns: 1fr 1fr;
  }

  .ATC-Features-Container {
    grid-template-columns: 1fr 1fr;
  }

  .ATC-Feature-Item:last-child {
    grid-column: span 2;
    width: 100%;
  }

  .ATC-Card-Item:last-child {
    grid-column: span 2;
  }

}

/* Responsive Design */
@media (max-width: 768px) {

  .ATC-Cards-Container {
    grid-template-columns: 1fr;
  }

  .ATC-Features-Container {
    grid-template-columns: 1fr;
  }

  .ATC-Feature-Item:last-child {
    grid-column: span 1;
    width: 100%;
  }

  .ATC-Card-Item:last-child {
    grid-column: span 1;
  }
}

/* Responsive Design */
@media (max-width: 800px) {

  .ATC-Cards-Container-How {
    grid-template-columns: 1fr;
  }
}

/* ========== End ATC Section ========== */

/* ========== Start Contact us Section ========== */

.Contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  /* Space between rows and columns */
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.Contact-content {
  margin-bottom: 2rem;
}

.Contact-form-container {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.Contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  /* Space between fields */
  width: 100%;
  box-sizing: border-box;
}

.Contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Space between label and input */
  box-sizing: border-box;
}

.Contact-form-group-full {
  grid-column: span 2;
  /* Full-width for textarea on larger screens */
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
}

.Contact-form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #dfe3e9;
  background: #f9f9f9;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  width: 100%;
}

.Contact-form-control:focus {
  border-color: #005154;
  background: white;
  box-shadow: 0 0 0 0.2rem rgba(0, 81, 84, 0.1);
  outline: none;
}

.Contact-btn {
  background-color: #005154;
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%;
  text-align: center;
  grid-column: span 2;
  /* Button spans full width */
}

.Contact-btn:hover {
  background-color: #ffffff;
  color: #005154;
  border: 1px solid #005154;
}

/* Responsive Design */
@media (max-width: 768px) {
  .Contact-form-row {
    grid-template-columns: 1fr;
    /* Stack fields vertically */
    gap: 20px;
  }

  .Contact-form-group-full {
    grid-column: span 1;
    /* Full-width spans single column */
  }

  .Contact-btn {
    grid-column: span 1;
    /* Button spans single column */
  }
}

@media (max-width: 576px) {
  .Contact-container {
    padding: 10px;
  }

  .Contact-form-container {
    padding: 15px;
  }
}

/* ========== End Contact us Section ========== */
/* General Layout */
.LI-login-section {
  display: grid;
  grid-template-columns: 1fr;
  margin: 50px 0;
  width: 100%;
}

.LI-form-column {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  width: 100%;
}

.LI-bg-column {
  background: linear-gradient(90deg, #00695c 0%, #005154 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  border-radius: 0 12px 12px 0;
}

.LI-login-container {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 500px;
}

.LI-account-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
}

.LI-account-links a {
  text-decoration: none;
  color: #005154;
  transition: all 0.3s ease;
  width: fit-content;
}

.LI-account-links a:hover {
  text-decoration: none;
  color: #005154ae;
}

@media (max-width: 720px) {
  .LI-account-links {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.LI-form-control {
  border-radius: 8px;
  border: 1px solid #dfe3e9;
  padding: 12px 15px;
  font-size: 14px;
  background: #f9f9f9;
  transition: all 0.3s ease;
  width: 100%;
}

.LI-form-control:focus {
  border-color: #00515491;
  background: #fff;
  box-shadow: 0 0 0 0.2rem #00515457;
}

.LI-form-group label {
  font-weight: 500;
  font-size: 14px;
  color: #333;
}

.LI-form-group {
  margin-bottom: 20px;
}

@media (max-width: 920px) {
  .LI-login-section {
    grid-template-columns: 1fr;
  }

  .LI-form-column {
    width: 100%;
    height: 100%;
  }

  .LI-bg-column {
    display: none;
  }

  .LI-bg-column img {
    max-width: 180px;
  }
}

.LI-login-btn {
  background-color: #005154;
  color: white;
  border: 1px solid #005154;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%;
  text-align: center;
}

.LI-login-btn:hover {
  background-color: #ffffff;
  color: #005154;
}

.LI-login-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}



.LI-contact-btn {
  background-color: #0b4a4e;
  color: white;
  padding: 4px 16px;
  border: 1px solid #0b4a4e;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.LI-contact-btn:hover {
  color: #005c63;
  background-color: white;
}

.LI-register-btn {
  border: 1px solid #0b4a4e;
  background-color: white;
  color: #005c63;
  border-radius: 8px;
  padding: 4px 16px;
  transition: all 0.3s ease;
}

.LI-register-btn:hover {
  color: white;
  background-color: #0b4a4e;
}

/* ========== Start Password Toggle Section ========== */
.LI-password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  cursor: pointer;
}

.LI-form-group {
  position: relative;
}

.LI-eye-icon {
  width: 20px;
  transition: opacity 0.3s ease;
  position: absolute;
  right: 0px;
  cursor: pointer;
}

.LI-eye-icon.hide {
  opacity: 0;
  pointer-events: none;
}

.LI-eye-icon.show {
  opacity: 1;
  pointer-events: auto;
}

/* ========== End Password Toggle Section ========== */
.register-btn {
  border: 1px solid #0b4a4e;
  background-color: white;
  color: #005c63;
  border-radius: 8px;
  padding: 4px 16px;
  transition: all 0.3s ease;
}

.register-btn:hover {
  color: white;
  background-color: #0b4a4e;
}