@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");


html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  max-width: 100%;
}

body, h1, h2, h3, h4, h5, h6 {
  font-family: Roboto, sans-serif;
  font-weight: 500;
}

::selection { 
    background-color: #ffc65d;
  }

  html {
  scroll-behavior: smooth;
}

:root {
  --bgcolor: #ffc400;
}

* {
  margin: 0;
  padding: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 50px;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}


.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffc400;
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header {
  background-color: #ffa600;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  position: sticky;
  z-index: 999;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}

.logo {
  color: white;
  align-self: center;
  margin-right: 20px;
}

.lan {
  font-size: 20px;
  color: #eee;
  align-self: center;
}

.lan a {
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-size: 21px;
}

.nav-bar {
  margin: auto;
}

.nav-bar a {
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-size: 21px;
}

.menu-icon {
  color: white;
  cursor: pointer;
  display: none;
}

.button {
  font-size: 1rem;
  border: 1px solid black;
  border-radius: 5px;
  padding: 0.9rem;
}

.banner {
    background-image: url(../images/banner-3.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100vh;
}

.container h1 {
  font-family: Roboto, sans-serif;;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 10px;
  color: #191a20;
  text-align: center;
}

.container p {
  font-weight: 400;
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 50px;
  margin-top: 20px;
  color: #191a20;
  text-align: center;
  text-align: justify;
  text-align-last: center;
  padding: 0px 14%;
}

.pic {
width: 10%;
}

.pic-ctn {
  width: 100vw;
  height: 200px;
 
}

@keyframes display {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(-220px);
    opacity: 0;
  }
  100% {
    transform: translateX(-200px);
    opacity: 0;
  }
}

.pic-ctn {
  position: relative;
  margin-bottom: 25vh;
}

.pic-ctn > img {
  position: absolute;
  top: 0;
  left: calc(50% - 100px);
  opacity: 0;
  animation: display 10s infinite;
}

img:nth-child(2) {
  animation-delay: 2s;
}
img:nth-child(3) {
  animation-delay: 4s;
}
img:nth-child(4) {
  animation-delay: 6s;
}
img:nth-child(5) {
  animation-delay: 8s;
}
img:nth-child(6) {
  animation-delay: 10s;
}
img:nth-child(7) {
  animation-delay: 12s;
}
img:nth-child(8) {
  animation-delay: 14s;
}

 :root {
    --item-width: 250px;
    --item-count: 7; 
    --total-items: 14; 
    --track-total-width: calc(var(--item-width) * var(--total-items)); 
    --loop-distance: calc(var(--item-width) * var(--item-count));
    --animation-speed: 18s;
    --logo-height: 100px;
    --gradient-width: 100px;
     }

        @keyframes infiniteLoop {
            0% { transform: translateX(calc(-1 * var(--loop-distance))); } 
            100% { transform: translateX(0); }
        }

        .infinite-slider-viewport {
            background: white;
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
            height: 100%;
            margin: auto;
            overflow:hidden;
            position: relative;
            max-width: 80%; 
            width: 60%; 
            border: 1px solid #f0f0f0;
            border-radius: 20px;
            margin-bottom: 15vh;
            margin-top: 15%;
        }
        

        .infinite-slider-viewport::after {
            right: 0;
            top: 0;
            background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        }
        .infinite-slider-viewport::before {
            left: 0;
            top: 0;
            background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
        }

        .slider-track {
            animation: infiniteLoop var(--animation-speed) linear infinite;
            display: flex;
            width: var(--track-total-width); 
            will-change: transform; 
        }
 
        .slider-item {
            height: var(--logo-height);
            width: var(--item-width); 
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            border-right: 0px solid #eee;
        }
        
        .logo-image {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain; 
            filter: grayscale(100%) opacity(70%); 
            transition: filter 0.3s;
        }

        .slider-item:hover .logo-image {
            filter: grayscale(0%) opacity(100%); 
        }

.container-b {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    gap: 5vh; 
    max-width: 100vh; 
    margin: 0 auto;    
}

.container-b h1 {
  font-family: Roboto, sans-serif;;
  font-weight: 500;
  font-size: 28px;
  line-height: 50px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #ffa600;
  text-align: center;
}

.container-2 h1 {
  font-family: Roboto, sans-serif;;
  font-weight: 500;
  font-size: 30px;
  line-height: 50px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #191a20;
  text-align: center;
}

.box {
    background-color: white;
    border: 1px solid #f0f0f0; 
    padding: 20px;
    height: 150px; 
    flex-grow: 1; 
    flex-basis: 0; 
    text-align: center;
    line-height: 40px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    color: #333;
    font-weight: bold;
    border-radius: 20px;
}
.container-b :hover {
background-color: #ffae000a;
}

footer {
  margin-top: 100px;
  padding-top: 10px;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  text-align: center;
  padding-bottom: 35px;
}

footer .sub-footer p2 {
  font-family: Roboto, sans-serif;;
  font-weight: 700;
  font-size: 22px;
  color: #FFF;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
  
}

.facebook-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    background-color: #ffa000;
    color: white;     
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
}

.facebook-button:hover {
    background-color: #0059ff;
    
}
.facebook-button i {
    font-size: 18px; 
}

.container-f{
  max-width: 800px;
  height: 600px;
  background: #fff;
  margin: 50px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
}

.container-f p{
  text-align: center;
  letter-spacing: 1px;  
  font-size: 35px;
  margin-bottom: 20px;
  color: #191a20;
}

.input,
.msg .area{
  font-family: Roboto, sans-serif;;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 25px;
  border: 2px solid #e9eaea;
  font-size: 14px;
  border-radius: 5px;
  outline: none;
  transform: all 0.5s ease;
}

.login .input{
  width: 48%;
  float: left;
  margin-right: 4%;
}

.login .input:last-child{
  margin-right: 0;
}

.msg .area{
  height: 200px;
}

.btn{
  width: 250px;
  background: #ffa600;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 15px;
  margin: 0 auto;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover {
  background: #ffb120;

}

.input:focus,
.msg .area:focus{
  border: 1px solid #8f8f8f;
}

@media screen and (max-width: 700px) {

.slide img {
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 22vh;
}

.dot {
display: none;
}
.dots {
display: none;
}

  .nav-bar {
    background-color: #ffa600;
    display: none;
    position: absolute;
    top: 3.7rem;
    left: 0;
    width: 100%;
    text-align: center;
  }
 
  .nav-bar.responsive {
    display: block;
  }

  .nav-bar a {
    display: block;
  }

  .menu-icon {
    display: block;
    z-index: 1;
    margin-top: 10px;
  }

  .button {
    padding: 0.4rem;
  }
 
  .container h1 {
  margin-top: -700px;
  font-weight: 700;
  font-size: 30px;
  line-height: 60px;
  color: #191a20;
  text-align: center;
}

.banner {
    background-image: url(../images/banner-3.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 25vh;
}

.pic {
width: 30%;
}

.pic-ctn > img {
  position: absolute;
  top: 0;
  left: calc(60% - 100px);
  opacity: 0;
  animation: display 10s infinite;
}

img:nth-child(2) {
  animation-delay: 2s;
}
img:nth-child(3) {
  animation-delay: 4s;
}
img:nth-child(4) {
  animation-delay: 6s;
}
img:nth-child(5) {
  animation-delay: 8s;
}
img:nth-child(6) {
  animation-delay: 10s;
}
img:nth-child(7) {
  animation-delay: 12s;
}
img:nth-child(8) {
  animation-delay: 14s;
}

.container-b {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    gap: 2vh; 
    max-width: 70vh; 
    padding: 15px;
}

.container-b h1 {
  font-family: Roboto, sans-serif;;
  font-weight: 500;
  font-size: 24px;
  line-height: 50px;
  color: #ffa600;
  text-align: center;
}

.infinite-slider-viewport {          
  width: 80%;            
}

footer .sub-footer p2 {
  font-size: 16px;  
}

}







