*::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Montserrat", serif !important;
  background: #fffaf6 !important;
}

html {
  scroll-behavior: smooth;
}

a {
  color: unset !important;
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin-bottom: 0px !important;
}

input:focus {
  outline: none;
}

/* Main */

main {
  padding: 60px 0px;
  background-color: #fffaf6;
}

.section {
  padding: 60px 0px;
}

.floating-whatsapp {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1000;
}

/* Hero Section */
.hero-section {
  margin-top: 70px;
}

.hero-video-container {
  width: 90%;
  height: 70vh;
  margin-left: auto;
}

.hero-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: width 0.3s ease-out;
}

.hero-section .content {
  position: absolute;
  top: 20%;
  left: 0%;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.hero-section .content h2 {
  color: #cc6502;
  font-weight: 700;
  background-color: #ffffff;
  padding: 7px 20px;
  margin-bottom: 0px;
  line-height: 45px;
  font-size: 2rem;
  width: max-content;
}

.hero-section .content h2:nth-child(2) {
  padding-right: 30px;
}

.hero-section .content p {
  color: #00041e;
  padding: 8px 20px;
  background-color: #ffdbb8;
  width: max-content;
  margin-bottom: 0px;
  font-weight: 600;
}

/* About Us Section */
.about-us-section {
  background-color: #ffebd8;
  height: 800px;
}

.about-us-section .image-container {
  flex: 1 1 45%;
  max-width: 45%;
  border-radius: 8px;
  overflow: hidden;
}

.about-us-section .about-content {
  flex: 1 1 50%;
  max-width: 50%;
}

.about-us-section .image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.about-content h6 {
  color: #e67301;
  font-weight: 700;
  font-size: 0.9rem;
}

.about-content h2 {
  color: #1f2937;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about-content p:nth-child(3) {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.about-content p:nth-child(3).expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.about-content p:nth-child(4) {
  font-weight: 600;
  color: #e67301;
  font-size: 0.9rem;
  text-decoration: underline;
}

.about-content button {
  padding: 10px 25px;
  background-color: #e67301;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: 20px;
}

/* Statistics section */
.statistics-section {
  height: 800px;
  align-items: center;
  justify-content: center;
}

.statistics-section .image-container,
.statistics-section .statistics-content {
  width: 50%;
}

.statistics-section .image-container {
  position: absolute;
  right: 0px;
}

.statistics-section .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statistics-section h2 {
  color: #1f2937;
  font-weight: 700;
  font-size: 2.5rem;
}

.statistics-content .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.statistics-content .grid-item {
  margin: 15px;
}

.statistics-content p {
  font-weight: 500;
}

.grid-item .horizontal-line {
  height: 1px;
  width: 90%;
  background: linear-gradient(90deg, #ffa64d 0%, rgba(255, 166, 77, 0) 100%);
  margin-bottom: 10px;
}

.statistics-section h5 {
  font-weight: 600;
  color: #e67301;
}

.statistics-section p {
  color: #4b5563;
}

.statistics-content p {
  font-size: 0.9rem;
}

.statistics-content .grid-container p {
  font-size: 1rem;
}

/* Values Section */
.values-section {
  background-color: #ffebd8;
}

.values-section h6 {
  font-weight: 700;
  color: #e67301;
  font-size: 0.9rem;
}

.values-section h2 {
  font-weight: 700;
  color: #1f2937;
  font-size: 2.5rem;
}

.values-section .card {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  width: calc((100% * 3%) / 3);
}

.values-section .card img {
  margin-bottom: 15px;
}

.values-section .card h5 {
  font-weight: 700;
  color: #1f2937;
}

.values-section .card p {
  color: #4b5563;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Timeline Section */
.scroll-section {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.horizontal-content {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.horizontal-content .item {
  min-width: 600px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  font-size: 24px;
  padding: 50px;
  opacity: 0.5;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.horizontal-content .item.active {
  opacity: 1;
  transform: scale(1.1);
}

.horizontal-content .item h2 {
  font-weight: 700;
  font-size: 4rem;
  color: #111827;
}

.horizontal-content .item p {
  color: #4b5563;
  font-size: 1rem;
}

.horizontal-content .item-1 img,
.horizontal-content .item-3 img,
.horizontal-content .item-5 img {
  margin-top: -150px;
}

.horizontal-content .item-2 img,
.horizontal-content .item-4 img,
.horizontal-content .item-6 img {
  margin-bottom: -150px;
}

.horizontal-content .progress-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 84%;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    #ffdbb8,
    #ffdbb8 20px,
    /* Dash length */ transparent 15px,
    transparent 40px /* Gap length */
  );
  border-radius: 10px;
  overflow: visible !important;
}

.horizontal-content .progress {
  height: 100%;
  background-color: #ff7f00 !important;
  width: 0;
  border-radius: 10px;
  position: relative;
  z-index: 1 !important;
}

.horizontal-content .dots {
  position: absolute;
  bottom: -300%;
  left: 0%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.horizontal-content .dots span {
  height: 20px;
  width: 20px;
  background-color: #ffdbb8;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.horizontal-content .dots span.active {
  background-color: #ff7f00;
}

/* Timeline section mobile view */
.timeline-section {
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-section .container {
  overflow-x: auto;
  gap: 150px;
  height: 600px;
  scroll-behavior: smooth;
}

.timeline-section .timeline-card {
  width: 300px;
}

.timeline-section .timeline-card.card-1 img,
.timeline-section .timeline-card.card-3 img,
.timeline-section .timeline-card.card-5 img {
  margin-top: -150px;
}

.timeline-section .timeline-card.card-2 img,
.timeline-section .timeline-card.card-4 img,
.timeline-section .timeline-card.card-6 img {
  margin-bottom: -150px;
}

.timeline-section .timeline-card h2 {
  font-weight: 700;
  color: #111827;
  font-size: 3rem;
}

.timeline-section .timeline-card p {
  color: #4b5563;
  font-size: 0.9rem;
}

.timeline-section .progress-bar {
  height: 2px;
  width: 2250px;
  background-color: #ffdbb8;
  position: absolute;
  top: 50%;
  left: 22%;
  overflow: visible;
  background: repeating-linear-gradient(
    to right,
    #ffdbb8,
    #ffdbb8 20px,
    /* Dash length */ transparent 15px,
    transparent 40px /* Gap length */
  );
  border-radius: 10px;
}

.timeline-section .progress-bar .progress {
  height: 100%;
  width: 0%;
  background-color: #ff7f00;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.1s ease-out;
}

.timeline-section .progress-bar .dots {
  position: absolute;
  width: 100%;
  top: -7px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.timeline-section .dots .dot {
  width: 15px;
  height: 15px;
  background-color: #ff7f00;
  border-radius: 50%;
  position: relative;
}

/* Team Section */
.team-section h2 {
  font-weight: 700;
  color: #1f2937;
  font-size: 1.8rem;
}

.team-section .card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.team-section .card-container .card {
  border: none;
  border-radius: 12px;
  background-color: #fffaf6;
  transition: left 1s ease, transform 1s ease, opacity 1s ease;
}

.team-section .card-container .card .card-content {
  padding: 15px;
}

.team-section .card-container .card .card-image {
  height: 350px;
  border-radius: 12px;
}

.team-section .card-container .card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.team-section .card-container .card h5 {
  color: #e67301;
  font-weight: 600;
}

.team-section .card-container .card p {
  color: #4b5563;
  font-weight: 500;
  font-size: 0.9rem;
}

.card.hide {
  opacity: 0;
}

/* Founders section */
.founders-section {
  background: #ffebd8;
}

.founders-section > .container {
  overflow-x: hidden;
}

.founders-section .slider-header img:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.founders-section h2 {
  font-weight: 700;
  font-size: 1.8rem;
}

.founders-section .card-slider {
  overflow-x: auto;
}

.founders-section .card {
  flex-direction: row;
  border: none;
  width: 900px;
  height: 400px;
  margin: 35px;
  padding: 20px;
  flex: 0 0 auto;
  border-radius: 10px;
}

.founders-section .card p {
  font-weight: 500;
  color: #4b5563;
  line-height: 24px;
  font-size: 0.9rem;
}

.founders-section .card h5 {
  color: #e67301;
  font-weight: 600;
  margin-bottom: 5px;
}

.founders-section .card > img {
  margin-left: -50px;
  border-radius: 3%;
}

@media screen and (min-width: 1800px) {
  .about-us-section .image-container {
    left: -36px;
  }
}

@media screen and (min-width: 1400px) {
  main .container {
    max-width: 1168px !important;
  }
}

@media screen and (min-width: 1300px) {
  /* Statistics Section */
  .statistics-section {
    height: 1000px;
  }

  /* About Section */
  .about-us-section .image-container {
    left: 0%;
    width: 50%;
    height: 600px;
  }

  .about-us-section .image-container img {
    top: 20%;
    left: 50%;
    height: 600px;
  }
  .about-us-section .about-content {
    margin-right: 0px;
  }
}

@media screen and (max-width: 1200px) {
  /* About Us Section */
  .about-us-section .about-content {
    margin-right: 10px;
    width: 50%;
  }

  /* Statistics section */
  .statistics-section {
    height: 700px;
  }

  /* Founders section */
  .founders-section .card {
    gap: 1.5rem !important;
  }
}

@media screen and (max-width: 1000px) {
  /* About Us Section */
  .about-us-section .container {
    flex-direction: column;
  }
  .about-us-section .image-container {
    position: static;
    height: auto;
  }
  .about-us-section .image-container img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(0%);
  }

  .about-us-section .image-container,
  .about-us-section .about-content {
    width: 100%;
  }

  .about-us-section .about-content {
    transform: translateY(0%);
    padding: 15px;
    margin-right: 0px;
  }

  .about-content h2 br {
    display: none;
  }

  .about-us-section {
    height: max-content;
  }

  /* Statistics Section */
  .statistics-section {
    height: 600px;
  }
  .statistics-section .image-container {
    width: 45%;
  }
  .statistics-content p br {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  /* Founder section */
  .founders-section > .container {
    max-width: 100% !important;
  }

  /* Timeline section */
  .timeline-section {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  /* Values Section */
  .values-section .card-container {
    flex-wrap: wrap;
  }
  .values-section .card-container .card {
    width: 300px;
  }

  /* Footer */
  .upper-footer .column:first-child {
    width: 300px;
  }
  .upper-footer .column:first-child p br {
    display: none;
  }

  /* Founder section */
  .founders-section .card-slider {
    gap: 1.5rem;
  }

  .founders-section .card {
    flex-direction: column;
    height: max-content;
    width: 400px;
    justify-content: center;
    margin: 200px 0px 0px 0px;
  }

  .founders-section .card > img {
    margin-top: -200px;
    margin-left: unset;
  }

  /* Timeline Section */
  .scroll-section {
    display: none;
  }

  .horizontal-content {
    overflow-x: auto;
    width: 100vw;
  }

  /* Teams Section */
  .team-section .card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 800px) {
  /* Hero section */
  .hero-video-container {
    display: block;
    width: 100%;
    height: auto;
  }
  .hero-section .content {
    position: static;
    margin-top: -100px;
    margin-left: 20px;
  }
  .hero-section .content h2 {
    position: relative;
    z-index: 2;
    padding: 4px 20px;
  }
  .hero-section .content p {
    padding: 5px 20px;
  }
}

@media screen and (max-height: 800px) {
  /* Timeline Section */
  .horizontal-content .item img {
    width: 280px;
  }

  .horizontal-content .item h2 {
    font-size: 3.5rem;
  }

  .horizontal-content .item-1 img,
  .horizontal-content .item-3 img {
    margin-top: -100px;
  }

  .horizontal-content .item-2 img,
  .horizontal-content .item-4 img {
    margin-bottom: -100px;
  }
}

@media screen and (max-width: 767px) {
  /* Statistics Section */
  .statistics-section {
    height: 1000px;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .statistics-section .container {
    flex-direction: column-reverse;
  }
  .statistics-section .statistics-content {
    width: 100%;
  }

  .statistics-section .image-container {
    top: 10%;
    width: 500px;
  }

  /* Timeline Mobile view section */
  .timeline-section .progress-bar {
    left: 30%;
  }

  /* Teams Section */
  .team-section .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 570px) {
  /* About us Section */
  .about-content h2 {
    font-size: 1.7rem;
    line-height: 40px;
  }

  .about-content p {
    font-size: 0.9rem;
    line-height: 24px;
  }

  .about-us-section .container {
    gap: 1.5rem !important;
  }

  .about-content button {
    width: 100%;
  }

  /* Statistics Section */
  .statistics-section .image-container {
    width: 95%;
  }

  .statistics-content .grid-container p {
    font-size: 1.1rem;
  }

  /* Values section */
  .values-section h2 {
    font-size: 1.7rem;
  }

  .values-section .card-container {
    margin-top: 2rem !important;
  }

  .values-section .card-container .card {
    width: 95%;
    border-radius: 16px;
  }
}

@media screen and (max-width: 500px) {
  /* Main */
  main {
    padding: 0px 0px 60px 0px;
  }

  .section {
    padding: 30px 0;
  }

  /* Hero section */
  .hero-section .content {
    margin-left: 15px;
    margin-top: -80px;
  }
  .hero-section .content h2 {
    font-size: 1.3rem;
    padding: 0px 10px;
    line-height: 35px;
  }
  .hero-section .content p {
    padding: 5px 10px;
    font-size: 0.9rem;
  }

  /* Statistics Section */
  .statistics-section {
    height: 850px;
  }

  .statistics-section h2 {
    font-size: 1.7rem;
  }

  .statistics-section .image-container {
    top: 6%;
  }

  /* Teams Section */
  .team-section .card-container {
    gap: 15px;
  }

  .team-section .card-container .card .card-image {
    height: 300px;
  }
}

@media screen and (max-height: 500px) {
  .horizontal-content .item {
    gap: 40px;
  }

  .horizontal-content .item-1 img,
  .horizontal-content .item-3 img {
    margin-top: -60px;
  }

  .horizontal-content .item-2 img,
  .horizontal-content .item-4 img {
    margin-bottom: -60px;
  }

  .horizontal-content .item img {
    width: 180px;
  }
}

@media screen and (max-width: 450px) {
  /* Timeline Mobile view section */
  .timeline-section .progress-bar {
    left: 170px;
  }

  /* Founder section */
  .founders-section .card {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  /* Teams Section */
  .team-section .card-container .card .card-image {
    height: 240px;
  }
}

.about-us-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .about-us-section .container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .about-us-section .image-container,
  .about-us-section .about-content {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p:nth-child(3) {
    font-size: 0.9rem;
    -webkit-line-clamp: 10;
  }

  .about-content button {
    width: 100%;
  }
}
