body{
margin:0;
font-family:Poppins,sans-serif;
background:#f8fafc;
}

/* NAV */
.nav{
display:flex;
justify-content:space-between;
padding:5px 20px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo{width:60px;}

.login-btn{
background:#4f46e5;
color:white;
padding:10px 18px;
border-radius:8px;
text-decoration:none;
}

/* Slider */
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
/* HERO */
.hero{
text-align:center;
padding:20px 20px;
}

.hero h1{
font-size:42px;
}

.hero p{
color:#555;
max-width:500px;
margin:auto;
}

.start{
display:inline-block;
margin-top:25px;
background:#4f46e5;
color:white;
padding:14px 25px;
border-radius:10px;
text-decoration:none;
}

.whatsapp{
display:inline-block;
margin-top:25px;
background:#038939;
color:white;
padding:14px 25px;
border-radius:10px;
text-decoration:none;
}

/* VIDEO SECTION */
.section-title{
padding:20px;
font-size:22px;
font-weight:700;
}

/* SLIDER */
.slider-container{
position:relative;
display:flex;
align-items:center;
padding:0 10px;
}

.video-slider{
display:flex;
gap:10px;
overflow-x:auto;
scroll-behavior:smooth;
}

.video-slider::-webkit-scrollbar{
display:none;
}

/* SHOW 3 CARDS */
.video-card{
flex:0 0 calc(33.33% - 14px);
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 6px 15px rgba(0,0,0,0.1);
}

.video-card iframe{
width:100%;
height:180px;
border:none;
}

.video-card p{
padding:10px;
font-weight:600;
}

/* ARROWS */
.slide-btn{
position:absolute;
top:40%;
transform:translateY(-50%);
background:white;
border:none;
font-size:28px;
cursor:pointer;
padding:10px 15px;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
z-index:10;
}

.left{
left:0;
}

.right{
right:0;
}

/* MOBILE */
@media(max-width:900px){
.video-card{
flex:0 0 85%;
}
.slide-btn{
display:none;
}
}

/* ================= MOBILE ================= */

@media(max-width:768px){
.hero-text h1{
font-size:20px;
}
}


/* Row 5 - Footer */
.footer{
    text-align: center;
    padding: 10px;
    color: rgb(17, 5, 71);
    font-size: 14px;
}