:root {
  --primary-color: #ff6600;
  --secondary-color: #cc5200;
  --background-color: #fdfdfd;
  --text-color: #333333;
  --light-text-color: #ffffff;
}

body {
  font-family: 'Jost', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 18px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

}

.how-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.how-it-works-video {
  width: 90%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.how-it-works-images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.how-it-works-images img {
  max-width: 45%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .how-it-works-images img {
    max-width: 90%;
  }
}



header {
  background-color: var(--light-text-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

nav ul li a:hover {
  color: var(--primary-color);
}

main {
  margin-top: 100px;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--light-text-color);
  padding: 60px 20px;
  background: transparent; 
}



.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f8f8f8;
}


.cta-button, .contact-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--primary-color);
  color: var(--light-text-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1rem;
}

.cta-button:hover, .contact-button:hover {
  background-color: var(--secondary-color);
  color: var(--light-text-color);
}

.content-section {
  scroll-margin-top: 120px; 
}

.content-section {
  padding: 60px 0; 
}





.content-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
}




.approach-item {
  background-color: var(--light-text-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.approach-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}
.approach-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.approach-item:hover {
  transform: translateY(-10px) scale(1.03) rotateX(3deg);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.tech-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.tech-column {
  flex: 1;
}

.tech-column h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.tech-column ul {
  padding-left: 20px;
}

.tech-column li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

#implementation ol {
  padding-left: 20px;
}

#implementation li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.image-container {
  margin-top: 30px;
}

.full-width-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

footer {
  background-color: var(--secondary-color);
  color: var(--light-text-color);
  text-align: center;
  padding: 20px 0;
  font-size: 1rem;
}
.hero-overlay.hidden {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}
.hero-blur-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-blur-wrapper .hero-video {
  transition: filter 0.5s ease;
}

.hero-overlay.hidden ~ .hero-blur-wrapper .hero-video {
  filter: blur(3px); 
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: center;
  align-items: flex-start;
}

.team-member {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.team-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}


.team-member h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 8px 0 4px;
}

.team-member p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: center;
  align-items: flex-start;
}

.team-member {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
}

.team-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 8px 0 4px;
}

.team-member p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}
@media (max-width: 992px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }
}




@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
  }

  .hero-overlay h1 {
    font-size: 2.2rem;
  }

  .content-section h2 {
    font-size: 2.4rem;
  }

  .tech-columns {
    flex-direction: column;
}
}