
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.main {
  width: 100%;
  min-height: 100vh;
  background: whitesmoke;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5vw 3vw;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.nav > div {
  display: flex;
  flex-direction: column;
}

.nav h1 {
  font-family: "Times New Roman", serif;
  font-size: clamp(22px, 2.5vw, 32px);
}

.man {
  font-size: 14px;
  color: gray;
  font-weight: 600;
}

.nav h2 {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  cursor: pointer;
  border-right:3px solid black;
  padding-right:3px;
}

.nav h3 {
  display: none;
  font-size: 24px;
  cursor: pointer;
}


.center {
  padding: 2vw;
}

.content {
  position: relative;
  width: 100%;
  height: 75vh;
}

.content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.child {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 3vw;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
}

.child1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.child1 h1 {
  font-size: clamp(20px, 3vw, 42px);
}

.child1 h2 {
  padding: 14px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 16px;
}

.child2 {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fff;
  padding-top: 10px;
}

.child2 img {
  height: 30px;
}


.imgas {
  width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.imgas::-webkit-scrollbar {
  display: none;
}

.contenr {
  display: inline-block;
  animation: scrollImg 12s linear infinite;
}

.imgas img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px;
}


.alpha {
  display: flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  padding: 15px;
  overflow-x: auto;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.alpha::-webkit-scrollbar {
  display: none;
}

.alpha h4 {
  font-weight: 600;
  border-bottom: 2px solid #000;
}

.alpha h5 {
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50%;
}
.alpha h5:hover {
  border: 1px solid #000;
}


.page2 {
  display: flex;
  gap: 2vw;
  padding: 3vw;
}

.page2-part1 {
  flex: 1;
  background: url("https://images.unsplash.com/photo-1488161628813-04466f872be2?w=500") center/cover no-repeat;
  border-radius: 2%;

}

.page2-part2 {
  flex: 1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-items:center;
  gap:10px;
}

.page2-part2 img {
  width: 100%;
  max-width:500px;
  max-height:450px;
  object-fit: cover;
  border-radius: 50%;
}

.cont {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-inline:20px;
  margin-top:10px;
}

.cont h1 {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}

.cont p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  color: #555;
  max-width: 420px;
}


.page3 {
    width: 100%;
    padding: 3vw 2vw;
}

.page3 h1 {
    text-align: center;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 3vw;
    text-transform: uppercase;
}

.bache {
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2vw;
    margin-bottom: 2vw;
    padding: 1.5vw;
    border-top: 2px solid #000;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}
.bache-part1{
    display: flex;
    flex-direction:column;
    gap:20px;
    align-items: center;
    justify-content: between;
}


.bache img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.bache:hover img {
    transform: scale(1.1);
    opacity: 0.9;
}

.bache h4 {
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    font-weight: 600;
    text-transform: uppercase;
}


.bache-part1 h1 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 600;
}

.bache h5 {
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 500;
    color: #666;
}


.marque {
  white-space: nowrap;
  overflow: hidden;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.marque h1 {
  display: inline-block;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 900;
  -webkit-text-stroke: 2px black;
  color: transparent;
  margin-right: 20px;
  animation: marque 5s linear infinite;
}

.cardSec {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    flex-wrap: wrap; 
    padding: 4vw 0;
}


.card {
    flex: 1 1 30%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5vw;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}


.card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1vw;
}


.card h1 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.5vw;
    color: #222;
}


.card p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: #555;
    line-height: 1.4;
}


.footer {
    width: 100%;
    background-color: #111; 
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    padding: 3vw 4vw;
    flex-wrap: wrap; 
}


.footer-section {
    flex: 1 1 30%; 
    display: flex;
    flex-direction: column;
    gap: 1vw;
}


.footer-section img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}


.footer-section h1, .footer-section h2 {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 0.5vw;
}


.footer-section p {
    font-size: clamp(0.8rem, 1vw, 1rem);
    line-height: 1.5;
    color: #ccc;
}


.footer-section ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f0f0f0;
}


.footer-social {
    display: flex;
    gap: 1vw;
}

.footer-social a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
}


@keyframes scrollImg {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes marque {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}


@media (max-width: 768px) {
  .nav h2 {
    display: none;
  }
  .nav h3 {
    display: block;
  }

  .page2 {
    flex-direction: column;
  }

  .page2-part1 {
    width: 100%;
    min-height: 300px;
  }

  .page2-part2 img {
    max-height: 300px;
    border-radius: 18px;
  }

  .cont {
    flex-direction: column;
    gap: 12px;
  }

  .bache {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bache img {
        width: 80px;
        height: 80px;
    }

    .bache h4 {
        margin-top: 1vw;
    }

    .bache-part1 h1 {
        font-size: 1.2rem;
    }

    .bache-part1 h5 {
        font-size: 0.9rem;
    }

   .cardSec {
        flex-direction: column;
        align-items: center;
        gap: 3vw;
    }

    .card {
        width: 80%;
        padding: 2vw;
    }

    .card img {
        width: 80px;
        height: 80px;
    }

    .card h1 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.9rem;
    }
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2vw;
    }

    .footer-section {
        flex: 1 1 100%;
    }

    .footer-section img {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

  .contenr {
    animation-duration: 20s;
  }

}
