* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #000000;
  color: #ffffff;
}

.navbar {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  position: fixed; /* <-- change from relative to fixed */
  top: 0; /* stick it to the top */
  left: 0;
  width: 100%; /* make it span the full width */
  z-index: 1000; /* ensure it stays above other sections */
}

.logo {
  height: 40px;
  width: 90px;
  flex-shrink: 0;
  object-fit: cover;
}

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

.nav-links-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links {
  display: none;
}

.nav-link {
  background: none;
  border: none;
  color: #d7d7d7;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.2px;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
}

.nav-link.active {
  color: #ffffff;
}

.cta-button {
  background-color: #121212;
  border: 1px solid #ffcd61;
  border-radius: 8px;
  width: 113px;
  height: 44px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.button-decoration {
  position: absolute;
  left: calc(50% - 2px);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background-image: url("https://www.figma.com/api/mcp/asset/b1586e0a-d5ae-47eb-b400-6dd5f61713a5");
  background-size: contain;
  background-repeat: no-repeat;
}

.button-text {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #e2e2e2;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  background-color: #121317;
  position: relative;
  min-height: 966px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 966px;
  opacity: 0.4;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  max-width: 842px;
  padding: 20px;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.hero-title .highlight {
  background: linear-gradient(to bottom, #b087b1, #c8a34e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #d3d3d3;
  text-align: center;
  max-width: 702px;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background-color: #ffcd61;
  color: #000000;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary {
  background-color: #121212;
  color: #e2e2e2;
  border: 1px solid #ffcd61;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3px;
  cursor: pointer;
  white-space: nowrap;
}

/* Logos Section */
.logos {
  background-color: #ffffff;
  overflow: hidden;
  width: 100%;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .logos {
    padding: 6px 12px;
  }
}

.logos .container-section {
  overflow: hidden;
  width: 100%;
}
.logo-container-box {
  max-width: 1280px;
  display: flex;
  height: 80px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.logos-text {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #454545;
  letter-spacing: -0.3px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.logos-strip {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  width: max-content;
  animation: scroll-logos 15s linear infinite;

  margin: 0 auto;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-card {
  flex-shrink: 0;
  width: 200px;
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #f5f5f5; */
  border-radius: 20px;
  padding: 28px 34px;
}

.logo-card img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

/* Desktop styles */
@media (min-width: 1280px) {
  .navbar {
    padding: 6px 64px;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    padding: 64px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .logos-text {
    font-size: 20px;
  }
}

/* Why Humaine Section */
.why-humaine {
  background-color: #f4f5f7;
  padding: 0px 20px 30px 20px;
}
@media screen and (max-width: 768px) {
  .why-humaine-title {
    margin-top: 40px;
  }
  .programs-content {
    margin-top: 40px !important;
  }
  .programs {
    padding: 12px 16px;
  }
}

.why-humaine-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.why-humaine-text {
  flex: 1;
  min-width: 300px;
}

.why-humaine-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #232531;
  margin-bottom: 32px;
}

.why-humaine-description {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #454545;
  letter-spacing: -0.3px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-width: 300px;
  flex: 0 0 100%;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #cacaca;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.feature-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #232531;
  margin-bottom: 8px;
}

.feature-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #7f7f7f;
  letter-spacing: -0.3px;
}

/* Desktop styles for Why Humaine */
@media (min-width: 1280px) {
  .why-humaine-container {
    flex-wrap: nowrap;
  }

  .why-humaine-text {
    padding: 124px 0 30px 0;
  }

  .why-humaine-title {
    font-size: 40px;
  }

  .why-humaine-description {
    font-size: 20px;
  }

  .features-grid {
    flex: 1;
    max-width: 634px;
    padding: 132px 0 0 0;
  }

  .feature-title {
    font-size: 24px;
  }
}

/* Programs Section */
.programs {
  background-color: #121317;
  position: relative;
  overflow: hidden;
  padding: 20px 6px;
}

.programs-background {
  position: absolute;
  top: -122.81px;
  left: -69.27px;
  width: 1664.269px;
  height: 1040.13px;
  z-index: 0;
  pointer-events: none;
}

.programs-background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.programs-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 80px auto;
}
.formFooter {
  display: none;
}
.programs-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.programs-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}

.programs-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #b1b1b1;
  letter-spacing: -0.3px;
}

.programs-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.program-card {
  background: #697ecb;
  border: 2px solid #ffffff;
  border-radius: 16px;
  height: 473px;
  position: relative;
  overflow: hidden;
  display: flex;
}

.program-card-content {
  padding: 42px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
  position: relative;
}

.program-name {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin: 0;
}

.program-audience {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.3px;
  margin: 0;
}

.program-description {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.3px;
  margin: 0;
}

.program-duration {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.3px;
  white-space: nowrap;
  margin: 0;
}

.program-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
}

.program-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

/* Program card variations */
.program-card-blue {
  background: #697ecb;
}

.program-card-blue .program-name,
.program-card-blue .program-audience,
.program-card-blue .program-description,
.program-card-blue .program-duration {
  color: rgba(255, 255, 255, 0.9);
}

.program-card-blue .program-name {
  color: #fefefe;
}

.program-card-yellow {
  background: #eccc86;
}

.program-card-yellow .program-name,
.program-card-yellow .program-audience,
.program-card-yellow .program-description,
.program-card-yellow .program-duration {
  color: #222222;
}

.program-card-purple {
  background: #ac83bd;
}

.program-card-purple .program-name,
.program-card-purple .program-audience,
.program-card-purple .program-description,
.program-card-purple .program-duration {
  color: rgba(255, 255, 255, 0.9);
}

.program-card-purple .program-name {
  color: #ffffff;
}

/* Desktop styles for Programs */
@media (min-width: 1280px) {
  .programs-header {
    gap: 32px;
  }

  .programs-title {
    font-size: 40px;
    width: 651px;
  }

  .programs-subtitle {
    font-size: 20px;
    width: 597px;
  }

  .programs-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .program-card {
    width: 100%;
  }

  .program-name {
    font-size: 34px;
  }

  .program-audience,
  .program-description {
    font-size: 14px;
  }
}

/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  padding: 80px 20px;
}

.testimonials-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.testimonials-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #232531;
}

.testimonials-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 0;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  background-color: #f4f5f7;
  border-radius: 16px;
  padding: 16px;
  min-width: 416px;
  max-width: 416px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 242px;
  scroll-snap-align: start;
}
/* For phone screens (max width 600px) */
@media (max-width: 600px) {
  .testimonial-card {
    min-width: 216px;
  }
}
.testimonial-quote {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #454545;
  letter-spacing: -0.3px;
  margin: 0;
}

.testimonial-profile {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-avatar {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #454545;
  letter-spacing: -0.3px;
  margin: 0;
}

.testimonial-company {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #7f7f7f;
  letter-spacing: -0.2px;
  margin: 0;
}

/* Desktop styles for Testimonials */
@media (min-width: 1280px) {
  .testimonials {
    padding: 80px 64px;
  }

  .testimonials-title {
    font-size: 40px;
  }

  .testimonials-cards {
    gap: 16px;
  }

  .testimonial-quote {
    font-size: 20px;
  }

  .testimonial-name {
    font-size: 20px;
  }
}

/* Engage Section */
.engage {
  background-color: #ffffff;
  padding: 80px 20px;
}

.engage-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.engage-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: #232531;
  margin: 0;
}

.engage-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.engage-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures consistent bottom alignment */
  background: #fff;
  height: 100%;
}

.engage-image {
  width: 100%;
  height: 306.38px;
  background-color: #edeff4;
  border-radius: 6.575px;
  overflow: hidden;
  flex-shrink: 0;
}

.engage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.engage-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Keeps description and button apart */
  flex: 1;
  gap: 24px;
}

.engage-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: #232531;
  margin: 0;
  padding-top: 12px;
}

.engage-card-title span {
  display: block;
}

.engage-card-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #454545;
  letter-spacing: -0.3px;
  margin: 0;
}

.engage-cta {
  background-color: #ffcd61;
  color: #000000;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3px;
  cursor: pointer;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: auto; /* Push button to bottom if text shorter */
}

/* Desktop styles for Engage */
@media (min-width: 1280px) {
  .engage {
    padding: 80px 64px;
  }

  .engage-content {
    gap: 48px;
  }

  .engage-title {
    font-size: 48px;
    width: 876px;
  }

  .engage-cards {
    flex-direction: row;
    gap: 32px;
    align-items: stretch; /* Makes all cards equal height */
    padding: 4px;
  }

  .engage-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .engage-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }
  .engage-image {
    height: 306.38px;
    border-radius: 6.575px;
    overflow: hidden;
  }

  .engage-card-title {
    font-size: 34px;
  }
}

/* DotKonnekt Section */
.dotkonnekt {
  background-color: #121317;
  position: relative;
  overflow: hidden;
}

.dotkonnekt-background {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.dotkonnekt-background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dotkonnekt-card {
  position: relative;
  z-index: 1;
  background-color: #1d1e22;
  border-radius: 20px;
  padding: 50px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  max-width: 1280px;
  width: 100%;
  margin: 80px auto;
}

.dotkonnekt-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.dotkonnekt-description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #a0a0a0;
  letter-spacing: -0.3px;
  margin: 0 0 30px 0;
}

.dotkonnekt-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dotkonnekt-feature-row {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.dotkonnekt-feature-item {
  display: flex;
  gap: 4px;
  align-items: center;
}

.dotkonnekt-checkmark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.dotkonnekt-checkmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dotkonnekt-feature-item span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.dotkonnekt-image {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 246px;
  height: 134px;
  display: none;
}

.dotkonnekt-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .dotkonnekt-card {
    margin: 40px auto !important;
  }
  .contact {
    margin: 40px auto !important;
  }
  .contact-content {
    gap: 50px !important;
  }
}
/* Desktop styles for DotKonnekt */
@media (min-width: 1280px) {
  .dotkonnekt-card {
    flex-direction: row;
    gap: 10px;
  }

  .dotkonnekt-content {
    flex: 0 0 611px;
  }

  .dotkonnekt-title {
    font-size: 40px;
  }

  .dotkonnekt-features {
    flex-direction: row;
    gap: 50px;
  }

  .dotkonnekt-feature-row {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .dotkonnekt-image {
    display: block;
    position: absolute;
    right: 150px;
    top: 50%;
    transform: translateY(-50%);
    width: 246px;
    height: 134px;
  }
}

/* Contact Section */
.contact {
  background-color: #121317;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  left: -69.27px;
  top: -220.81px;
  width: 1664.269px;
  height: 1040.13px;
  z-index: 0;
  pointer-events: none;
}

.contact-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-feature span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.contact-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #c3c3c3;
  letter-spacing: -0.3px;
  margin: 16px 0 0 0;
}

.contact-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 252px;
}

.contact-checkmark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-checkmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-feature span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.contact-form-container {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-field label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #646464;
  letter-spacing: -0.2px;
}

.contact-form-field input,
.contact-form-field textarea {
  background-color: #ffffff;
  border: 1px solid #b0b5c9;
  border-radius: 4px;
  padding: 8px 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1c1c1c;
  letter-spacing: -0.3px;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  opacity: 0.3;
}

.contact-form-field textarea {
  border-radius: 8px;
  resize: vertical;
  min-height: 88px;
}

.contact-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-checkbox-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-checkbox-button {
  background-color: #ffffff;
  border: 1px solid #b0b5c9;
  border-radius: 4px;
  padding: 8px 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1c1c1c;
  letter-spacing: -0.3px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-checkbox-button:hover {
  background-color: #f5f5f5;
}

.contact-checkbox-button.active {
  background-color: #5575f0;
  color: #ffffff;
  border-color: #5575f0;
}

.contact-submit {
  background-color: #5575f0;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-submit:hover {
  background-color: #4565e0;
}

/* Desktop styles for Contact */
@media (min-width: 1280px) {
  .contact {
    padding: 80px 64px;
  }

  .contact-content {
    flex-direction: row;
    gap: 32px;
  }

  .contact-left {
    flex: 1;
  }

  .contact-title {
    font-size: 42px;
  }

  .contact-subtitle {
    font-size: 20px;
  }

  .contact-form {
    height: 100%;
  }

  .contact-form-row {
    flex-direction: row;
    gap: 16px;
  }

  .contact-form-field {
    flex: 1;
  }

  .contact-checkbox-row {
    flex-direction: row;
    gap: 17.29px;
  }

  .contact-checkbox-button {
    width: 263.355px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
  padding: 64px 20px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 20px 40px 20px !important;
  }
}
.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  width: 160px;
  height: 71.801px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column h3 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #a0a0a0;
  letter-spacing: -0.2px;
  margin: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #7f7f7f;
  letter-spacing: -0.2px;
}

.footer-column ul li .coming-soon {
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-divider {
  width: 100%;
  height: 1px;
}

.footer-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #7f7f7f;
}

.footer-dot {
  width: 2px;
  height: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-dot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Desktop styles for Footer */
@media (min-width: 1280px) {
  .footer {
    padding: 64px 112px;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    gap: 64px;
  }

  .footer-links {
    flex-direction: row;
    gap: 64px;
    width: 670px;
    justify-content: flex-end;
  }

  .footer-column {
    width: 173px;
  }

  .footer-column:first-child {
    width: 169px;
  }
} /* ============ Scroll Container ============ */
.sg-programs-container {
  display: flex;
  gap: 24px;
  padding: 40px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

/* Chrome/Edge Scrollbar */
.sg-programs-container::-webkit-scrollbar {
  height: 8px;
}
.sg-programs-container::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 8px;
}

/* ============ Card Styles ============ */
.card {
  flex: 0 0 780px; /* Fixed width for smooth scrolling */
  background: #697ecb;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-family: "Inter", sans-serif;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for interactivity */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* ============ Vector Backgrounds ============ */
.vector-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.vector-left {
  position: absolute;
  left: -70px;
  top: 0;
  opacity: 0.7;
}

.vector-right {
  position: absolute;
  right: -20px;
  bottom: 0;
  opacity: 0.7;
}

/* ============ Card Content Layout ============ */
.card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  gap: 20px;
  position: relative;
  z-index: 1;
  height: 100%;
  border: 1px solid white;
  border-radius: 16px;
}

/* ============ Text Section ============ */
.text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #fefefe;
}

.target-audience {
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.description {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.9);
}

.duration-certification {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

/* ============ Image Section ============ */
.image-container {
  flex-shrink: 0;
}

.image-container img {
  width: 100%;
  max-width: 380px;
  height: 380px;
  border-radius: 8px;
  object-fit: cover;
}

/* ============ Responsive Adjustments ============ */
@media (max-width: 1024px) {
  .card {
    flex: 0 0 90%;
  }

  .card-content {
    flex-direction: column;
    text-align: center;
  }

  .image-container img {
    max-width: 280px;
    height: 100%;
  }
}

/* ============ Optional Smooth Horizontal Scroll ============ */
.sg-programs-container {
  scroll-snap-type: x mandatory;
}
/* ========= Color Variants ========= */
.card--blue {
  background: #697ecb;
}

.card--yellow {
  background: #eccc86;
  color: #222;
}

.card--purple {
  background: #ac83bd;
}

/* Optional: adjust vector colors for contrast */
.card--yellow .vector-left svg path,
.card--yellow .vector-right svg path {
  fill: #e3c075;
}

.card--purple .vector-left svg path,
.card--purple .vector-right svg path {
  fill: #9e77b0;
}

.dotkonnekt-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1c;
  border-radius: 16px;
  padding: 60px 80px;
  max-width: 1200px;
  margin: 40px auto;
  gap: 40px;
}

.dotkonnekt-content {
  flex: 1;
  max-width: 611px;
}

.dotkonnekt-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.dotkonnekt-content h2 span {
  color: #f5c34b;
}

.dotkonnekt-content p {
  line-height: 1.6;
  color: #b3b3b3;
  margin-bottom: 24px;
}

.features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: #d1d1d1;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f5c34b;
  font-size: 1rem;
}

.dotkonnekt-logo {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #222 0%, #111 100%);
  border-radius: 12px;
  padding: 40px;
}

.dotkonnekt-logo img {
  width: 200px;
  height: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .dotkonnekt-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .features {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .dotkonnekt-logo {
    margin-top: 20px;
  }
}
/* Contact Section Fix */
.contact {
  background-color: #121317;
  position: relative;
  overflow: hidden;
}

/* Desktop alignment */
@media (min-width: 1024px) {
  .contact-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .contact-form-container {
    background: linear-gradient(145deg, #ffffff, #f9f9fb);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 600px;
  }

  /* Style iframe (JotForm) */
  .contact-form-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    background: #ffffff;
  }
}

/* Mobile layout */
@media (max-width: 1023px) {
  .contact-form-container {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 8px;
  }

  .contact-form-container iframe {
    width: 100%;
    min-height: 700px;
    border-radius: 16px;
  }
}
