*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#000;
}

.header{
    width:100%;
    background:#0a0a0a;
    padding:15px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    font-size:34px;
    font-weight:700;
}

.blue{
    color:#00bfff;
}

.green{
    color:#64ff4e;
}

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.btn{
    text-decoration:none;
    padding:12px 35px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.login-btn{
    color:#fff;
    border:2px solid #00bfff;
}

.login-btn:hover{
    background:#00bfff;
}

.register-btn{
    color:#fff;
    background:linear-gradient(
    90deg,#00bfff,#5fff47);
}

.register-btn:hover{
    transform:translateY(-2px);
}

.icon-btn{
    width:50px;
    height:50px;
    border:2px solid #5fff47;
    border-radius:12px;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:22px;
}

.flag{
    width:28px;
    border-radius:4px;
}

.menu-btn{
    background:none;
    border:none;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

.offcanvas{
    position:fixed;
    top:0;
    right:-300px;
    width:300px;
    height:100vh;
    background:#111;
    transition:.4s;
    padding-top:80px;
    z-index:1000;
}

.offcanvas.active{
    right:0;
}

.offcanvas a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:18px 30px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.close-btn{
    position:absolute;
    top:20px;
    right:25px;
    color:#fff;
    font-size:35px;
    cursor:pointer;
}

@media (max-width:768px){

    .icon-btn,
    .flag,
    .menu-btn{
        display:none;
    }

    .header{
        padding:12px 15px;
    }

    .logo{
        font-size:22px;
    }

    .btn{
        display:inline-flex;
        padding:10px 18px;
        font-size:12px;
    }

    .header-right{
        gap:8px;
    }
}

/* navbar section */

.navbar {
   
  display: flex;
  align-items: center;
  background-color: #222;
  height: 60px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* Fixed download icon */
.navbar .download-icon {
  width: 40px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 40;
  
  /* bottom: 0; */
  height: 60px;
  z-index: 10;
  
}

.download-icon i {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

/* Scrollable icons */
.menu {
    font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 30px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  padding-left: 50px;
  height: 60px;
  scrollbar-width: thin;
  scrollbar-color: #555 #222;
  font-weight: bold;
  padding-right: 10px;
 
}

/* Custom scrollbar style */
.menu::-webkit-scrollbar {
  width: 6px;
}

.menu::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
}

/* Menu items */
.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  min-width: 80px;
  transition: background 0.3s;
}

.menu-item img {
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
}

.menu-item span {
  font-size: 12px;
  color: #ccc;
}

/* Hover effect */
.menu-item:hover {
  background-color: red;
  border-radius: 6px;
}

.menu-item:hover span {
  color: #fff;
}



/* form login section */

.login_form{
     margin: 0;
        background: #000;
       
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        color: #fff;
}
.login_form .container {
         font-family: "Poppins", sans-serif;
        width: 90%;
        max-width: 1100px;
        display: flex;
        background: rgba(255,255,255,0.03);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 0 40px rgba(0,0,0,0.6);
    }

   .login_form .left {
        flex: 1;
        /* background: url('leftimg.webp') center/cover no-repeat; */
        /* display: flex; */
         align-items: center;
        justify-content: center; 
        padding: 20px;
        /* border: 1px solid white; */
        position: relative;
    }

    @media only screen and (max-width: 768px){
      .left{
        display: none;
      }  

      .login_form{
     margin: 0;
        background: #000;
       
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80vh;
        color: #fff;
}
    }
.login_form .left .logokhelo{
    width: 100px;
    height: 70px;
    position: absolute;
    top: 10%;
}
 .login_form   .left img{
        width: 80%;
        height: 400px;
    }

  .login_form  .right {
        flex: 1;
        background: #1a1a1a;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

 .login_form   h2 {
        margin-bottom: 20px;
        font-size: 28px;
    }

 .login_form   .input-box {
        margin-bottom: 15px;
    }

  .login_form  .input-box input {
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        border: none;
        outline: none;
        background: #333;
        color: #fff;
        font-size: 15px;
    }

  .login_form  .login-btn {
        width: 100%;
        padding: 12px;
        background: linear-gradient(90deg,#2bb6ff,#37d737);
        border: none;
        border-radius: 12px;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 10px;
    }

  .login_form  .links {
        margin-top: 10px;
        text-align: right;
    }

  .login_form  .links a {
        color: #37d737;
        text-decoration: none;
        font-size: 14px;
    }

.login_form    .social {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 20px;
    }

    .social div {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 1px solid #37d737;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 20px;
    }

  .login_form  .bottom {
        text-align: center;
        margin-top: 20px;
        font-size: 15px;
    }

    .bottom a {
        color: #37d737;
        text-decoration: none;
    }

    @media(max-width: 768px){
    .login_form    .container {
            flex-direction: column;
        }
   .login_form     .left {
            height: 250px;
        }
    .login_form    .right {
            padding: 20px;
        }
    }


    /* footer section */

    .footer{
    background:#050505;
    color:#fff;
    padding:50px 20px 20px;
}

.footer-top{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}
.footer-top p{
    font-size: 11px;
    line-height: 28px;
}
.footer-col h3{
    margin-bottom:15px;
    color:#fff;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin:10px 0;
}

.footer-col a{
    text-decoration:none;
    color:#a5a5a5;
    font-size: 13px;
}

.footer-col a:hover{
    color:#00bfff;
}

.logo-col{
    text-align:center;
}

.logo-col img{
    width:180px;
}

.social{
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.social a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fe4800;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.section-title{
    text-align:center;
    margin:20px 0 25px;
}

.logo-slider{
    overflow:hidden;
    position:relative;
}

.slide-track{
    display:flex;
    width:calc(180px * 12);
    animation:scroll 25s linear infinite;
}

.slide-track img{
    width:140px;
    margin:0 20px;
    object-fit:contain;
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

.copyright{
    text-align:center;
    margin-top:20px;
    border-top:1px solid #222;
    padding-top:10px;
    color:#aaa;
}
.copyright ul{
    display: flex;
    align-items: center;
    list-style: none;
    justify-content: center;
gap: 20px;
}
.copyright ul li{
    list-style: none;
}
.copyright ul li a{
text-decoration: none;
color: #fff;
font-size: 12px;
}
@media(max-width:768px){

    .footer-top{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .logo-col{
        grid-column:1 / -1;
        text-align:center;
    }

    .contact{
        grid-column:1 / -1;
        text-align:center;
    }

    .social{
        justify-content:center;
    }

    .slide-track img{
        width:90px;
    }

    .section-title{
        font-size:18px;
    }

    .copyright{
        overflow-y: scroll;
       white-space: nowrap; 
    }
}

/* whatsapp icons */

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    text-decoration:none;
    z-index:9999;

    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

.whatsapp-float::before,
.whatsapp-float::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    border:2px solid #25D366;
    animation:ring 2s linear infinite;
}

.whatsapp-float::after{
    animation-delay:1s;
}

@keyframes ring{
    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.8);
        opacity:0;
    }
}

@media(max-width:768px){

    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:28px;
        right:15px;
        bottom:15px;
    }

}

/* image center */
/* Desktop par hide */
.mobile-image{
    display:none;
}

/* Mobile par show */
@media (max-width:768px){

    .mobile-image{
        display:flex;
        justify-content:center;
        align-items:center;
        margin:20px 0;
    }

    .mobile-image img{
        width:90%;
        max-width:350px;
        height:auto;
        border-radius:12px;
    }

}