body{
font-family: Arial, sans-serif;
margin:0;
}



/* TOPBAR */

.topbar{
background:#111;
color:#fff;
font-size:13px;
padding:5px 20px;
display:flex;
justify-content:space-between;
}

/* HEADER */

#header{
position:sticky;
top:0;
background:white;
z-index:1000;
transition:0.3s;
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
max-width:1200px;
margin:auto;
padding:10px 20px;
}

.logo img{
height:45px;
}

/* MENU */

#nav{
display:flex;
gap:25px;
}

#nav a{
text-decoration:none;
color:#333;
font-weight:500;
position:relative;
}

#nav a::after{
content:"";
position:absolute;
bottom:-4px;
left:0;
width:0%;
height:2px;
background:#25D366;
transition:0.3s;
}

#nav a:hover::after{
width:100%;
}

/* SEARCH */

.search-box input{
padding:6px 10px;
border:1px solid #ddd;
border-radius:6px;
}

/* HAMBURGER */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
width:25px;
height:3px;
background:#333;
margin:3px 0;
}

/* MOBILE */

@media(max-width:768px){

#nav{
position:absolute;
top:70px;
left:0;
right:0;
background:white;
flex-direction:column;
display:none;
padding:20px;
}

.menu-toggle{
display:flex;
}

.search-box{
display:none;
}

}

    .dark{
        background:#111;
        color:white;
        }
        
        .dark .header{
        background:#1a1a1a;
        }
        
        .dark a{
        color:#ddd;
        }
        
/* .container{
padding:40px;
} */

.slider img{
width:100%;
margin-bottom:10px;
}

.video-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.video-grid iframe{
width:100%;
height:250px;
}

/* .grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
} */

.card{
border:1px solid #ddd;
padding:10px;
}

.card img{
width:100%;
}

.detail{
max-width:600px;
width:100%;
}

.footer{
background:#eee;
padding:20px;
text-align:center;
}

/* .footer {
  background: #222;
  color: white;
  padding: 40px 20px;
} */

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-col h4 {
  margin-bottom: 10px;
}

.footer-logo {
  width: 120px;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.wa-widget{
    position:fixed;
    bottom:20px;
    right:20px;
    font-family:Arial;
    z-index:999;
    }
    
    .wa-button{
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    }
    
    .wa-chat{
    display:none;
    width:260px;
    background:white;
    border-radius:12px;
    box-shadow:0 6px 20px rgba(0,0,0,0.25);
    margin-bottom:10px;
    overflow:hidden;
    }
    
    .wa-header{
    background:#25D366;
    color:white;
    padding:12px;
    font-weight:bold;
    }
    
    .wa-messages{
    padding:10px;
    background:#ece5dd;
    }
    
    .wa-msg{
    background:white;
    padding:8px 10px;
    border-radius:8px;
    margin-bottom:6px;
    font-size:13px;
    width:fit-content;
    max-width:80%;
    }
    
    .wa-typing{
    display:flex;
    gap:3px;
    padding:6px;
    }
    
    .wa-typing span{
    width:6px;
    height:6px;
    background:#999;
    border-radius:50%;
    animation:typing 1.2s infinite;
    }
    
    .wa-typing span:nth-child(2){animation-delay:0.2s;}
    .wa-typing span:nth-child(3){animation-delay:0.4s;}
    
    @keyframes typing{
    0%{opacity:0.2}
    50%{opacity:1}
    100%{opacity:0.2}
    }
    
    .wa-contacts a{
    display:block;
    padding:10px;
    text-decoration:none;
    border-top:1px solid #eee;
    color:#333;
    }
    
    .wa-contacts a:hover{
    background:#f5f5f5;
    }