
/* ===== Global styles ===== */
body{
  font-family: 'Poppins', Arial, sans-serif;
  margin:0;
  background: linear-gradient(135deg,#fff7c2,#ffd6e8);
}

header{
  background:#ff9f1c;
  text-align:center;
  padding:20px;
}

header img{
  width:120px;
}

nav{
  background:#2ec4b6;
  display:flex;
  justify-content:center;
  gap:25px;
  padding:15px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:bold;
}

/* ===== Top layout ===== */
.page-layout{
  display:grid;
  grid-template-columns: 240px 1fr 240px;
  gap:20px;
  max-width:1200px;
  margin:20px auto;
  align-items:start;
}

/* ===== Vertical auto-scroll video bars ===== */
.video-sidebar{
  background:#ffffff;
  border-radius:15px;
  padding:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
  height:300px;              /* ~2 videos visible */
  overflow:hidden;
}

.video-sidebar h3{
  text-align:center;
  color:#ff6f91;
  margin:8px 0 12px;
}

.video-list video{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
}

/* Auto scroll animation */
@keyframes verticalScroll{
  0%{ transform: translateY(0); }
  100%{ transform: translateY(-50%); }
}

/* ===== Main content ===== */
.main-content{
  min-width:0;
}

.card{
  background:white;
  border-radius:20px;
  padding:30px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* ===== Horizontal testimonials ===== */
.container{
  padding:20px;
  max-width:1200px;
  margin:10px auto;   /* pulls testimonials UP */
}

.section-title{
  margin:20px 0 10px;
  text-align:center;
  color:#ff6f91;
}

.testimonial-wrapper{
  overflow:hidden;
  width:100%;
}

.testimonial-track{
  display:flex;
  gap:30px;
  animation: scrollTestimonials 35s linear infinite;
}

.testimonial{
  min-width:250px;
  background:white;
  border-radius:15px;
  padding:15px;
  box-shadow:0 4px 10px rgba(0,0,0,0.15);
  text-align:center;
}

.testimonial img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:10px;
}

@keyframes scrollTestimonials{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-70%); }
}

footer{
  background:#ff9f1c;
  text-align:center;
  padding:15px;
  color:white;
  margin-top:30px;
}

/* ===== Mobile ===== */
@media (max-width: 900px){
  .page-layout{
    grid-template-columns:1fr;
  }
  .video-sidebar{
    height:220px;
  }
}

.site-header{
  background:#ffa726;              /* same orange */
  display:flex;
  align-items:center;
  padding:20px 30px;
  position:relative;
}

/* Logo on extreme left */
.site-header .logo{
  width:110px;
  position:absolute;
  right:30px;
}

/* Title perfectly centered */
.site-title{
  margin:0 auto;
  font-size:32px;
  font-weight:700;
  color:#000;
  text-align:center;
}

@media (max-width: 768px){
  .site-title{
    font-size:20px;
    padding:0 10px;
  }

  .site-header .logo{
    width:80px;
    left:15px;
  }
}

/* LIGHTBOX OVERLAY */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ZOOM ICON */
.zoom-wrap {
  position: relative;
}
.video-list iframe{
  width:100%;
  height:120px;
  border-radius:10px;
  border:none;
}

.video-scroll-container{
overflow:hidden;
width:100%;
}

.video-scroll{
display:flex;
gap:25px;
animation:scrollVideos 30s linear infinite;
}

.video-card{
min-width:280px;
background:white;
padding:15px;
border-radius:15px;
box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.video-card iframe,
.video-card video{
width:100%;
height:180px;
border-radius:10px;
}

@keyframes scrollVideos{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}




.zoom-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  padding: 6px;
  font-size: 14px;
  cursor: pointer;
}

.video-list{
  display:flex;
  flex-direction:column;
  gap:12px;
  animation: verticalScroll 18s linear infinite;
}

.video-list.paused{
  animation-play-state: paused;
}
.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:28px;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
z-index:999;
}

.whatsapp-float:hover{
background:#1ebe5d;
}

.video-thumb{
position:relative;
cursor:pointer;
}

.video-thumb img{
width:100%;
border-radius:10px;
}

.play-btn{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-size:40px;
color:white;
background:rgba(0,0,0,0.6);
border-radius:50%;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
}