/* Styling for the hero section */
.text-animation {
  font-size: 2em;
  font-weight: bold;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.2;
  padding-bottom: 5px;
  color: black;
  font-size: 70px;
  padding-top: 130px;
}

@media (max-width: 768px) {
  .text-animation {
    font-size: 30px;
  }
}

.text-animation span {
  opacity: 0;
  animation: fadeIn 0.3s forwards;
  animation-delay: calc(var(--i) * 0.3s);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.text-animation .green {
  color: #2fbcbb;
}

.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease-out, width 0.1s ease-out, height 0.1s ease-out;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.1s ease-out;
  border-radius: 0;
}

@media (max-width: 768px) {
  .video-section {
    height: 50vh;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .video-section {
    height: 40vh;
  }
}

.homepage-hero .hero-title {
  font-size: 2em;
  color: #2fbcbb;
  line-height: 1.5;
  margin-bottom: 20px;
}

.homepage-hero .hero-subtitle {
  font-size: 40px;
  color: black;
  line-height: 1.2;
  /* margin: 20px 0 40px; */
  font-weight: 800;
}

@media (min-width: 769px) {
  .homepage-hero .hero-subtitle::after {
    content: "";
    display: block;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .homepage-hero .hero-subtitle {
    font-size: 30px;
    line-height: 1.2;
    margin: 10px 0 20px;
  }
}

.homepage-hero .hero-button {
  background-color: #0073e6;
  color: #fff;
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  margin-top: 30px;
}

.homepage-hero .hero-button:hover {
  background-color: #005bb5;
}

.homepage-services {
  padding: 80px 0;
  background-color: #fff;
}

.homepage-services .section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  line-height: 1.3;
}

.homepage-services .service-item {
  text-align: center;
  margin-bottom: 40px;
}

.homepage-services .service-item h3 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.homepage-services .service-item p {
  font-size: 1.2em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
#main-header {
  position: static !important;
}

/* Main button styling */
.custom-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: black;
  text-decoration: none;
  border: 2px solid #2fbcbb;
  border-radius: 10px;
  background-color: transparent;
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
  cursor: pointer;
}

/* Hover effect for button */
.custom-button:hover {
  background-color: #2fbcbb;
  color: #fff;
}

/* Arrow styling */
.custom-button .arrow-down {
  margin-left: 10px;
  font-size: 18px;
  color: #2fbcbb;
}

.custom-button:hover .arrow-down {
  color: #fff;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
  width: 30%;
}

/* Mobile-Only Styles */
@media (max-width: 768px) {
  .dropdown {
    width: 60%;
  }
}

/* Button styling */
.custom-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

/* Arrow styling */
.arrow-down {
  margin-left: 10px;
  font-size: 12px;
}

/* Dropdown content styling */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  width: 100%;
  border: 2px solid #2fbcbb;
  border-radius: 10px;
  margin-top: 0px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

/* Each dropdown link */
.dropdown-content a {
  color: #2fbcbb;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}

/* Hover effect for dropdown links */
.dropdown-content a:hover {
  background-color: #2fbcbb;
  color: #fff;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
}

.create-title {
  font-size: 70px;
  margin-top: 120px;
  text-align: center;
}
.highlight {
  color: #2fbcbb;
  font-weight: bold;
}

/* Strategy banner start */
.strategy-banner {
  background-color: #2fbcbb;
  margin-top: 30px;
  padding: 120px 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
  font-size: 40px;
}

/* Class to reveal the banner with animation */
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Class for revealing the banner */
.strategy-banner.show {
  opacity: 1;
  transform: translateY(0);
}

/* Background color when in view */
.bg-mid-scroll {
  background-color: #2fbcbb;
}

/* Background color after scrolling past */
.bg-past-scroll {
  background-color: black;
}

/* Text styles */
.strategy-text {
  font-size: 40px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

@media (max-width: 768px) {
  .strategy-text {
    font-size: 35px;
  }
}

.stragegy-text-p {
  color: white;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Show class to make individual text elements visible */
.show-element {
  opacity: 1;
  transform: translateY(0);
}
/* Strategy banner end */

/* Talent banner styling */
.talent-banner {
  background-color: black;
  padding: 120px 20px;
}

.talent-text,
.talent-text-h3,
.talent-heading,
.talent-item,
.talent-end-text {
  /* Initial hidden state */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.show-element {
  opacity: 1;
  transform: translateY(0);
}

/* Existing styles */
.talent-text {
  font-size: 40px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.talent-text-h3 {
  color: #2fbcbb;
  font-weight: bold;
}

.talent-heading,
.talent-column-end p {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #2fbcbb;
  text-decoration: underline;
}

.talent-item {
  font-size: 1em;
  color: white;
}

.talent-studies {
  display: flex;
  justify-content: space-between;
  padding: 60px 20px 90px 20px;
  border-bottom: 1px solid white;
}

.talent-column,
.talent-column-end {
  width: 30%;
  padding: 10px;
}

@media (max-width: 768px) {
  .talent-studies {
    flex-direction: column;
    text-align: center;
  }

  .talent-column,
  .talent-column-end {
    width: 100%;
  }
}

/* Talented banner start */
.talented-banner {
  padding: 50px 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
  background-color: white;
}

.talented-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.talented-text {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .talented-text {
    font-size: 35px;
  }
}

.talented-text-p {
  font-size: 16px;
  line-height: 1.6;
}

/* Talented banner end */

/* Brief banner start */
.brief-banner {
  background-color: black;
  margin-top: 70px;
  padding: 120px 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.brief-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.brief-text {
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.brief-line {
  opacity: 0; /* Initially hidden */
  transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  display: block;
}

.show-element {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .brief-text {
    font-size: 35px;
  }
}

/* Brief banner end */
