

/* ===== HEADER BASE ===== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  border-bottom: 1px solid #e5e5e5;
}

body{
  padding-top:64px;
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:64px;
}

/* LOGO */
.logo{
  display: block;
  max-height: 70px;      /* 🔥 header ke liye perfect */
  width: auto;          /* aspect ratio safe */
  height: auto;

  

  object-fit: contain;  /* image cut nahi hogi */
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}
@media (max-width: 768px){
  .logo{
    max-height: 48px;   /* 🔥 mobile header ke liye perfect */
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2));
  }
  .mblogo{
     max-height: 100px;
        margin-top: -12px;
    
  }
}

.logo span{
  color:#ff5722;
}

/* NAV DESKTOP */
.nav{
  display:flex;
  align-items:center;
}
.nav a{
  margin-left:22px;
  text-decoration:none;
  color:#333;
  font-weight:600;
  position:relative;
}

/* Language Toggle */
.lang-toggle{
  display:flex;
  gap:6px;
}
.lang-btn{
  padding:6px 12px;
  border-radius:20px;
  border:1px solid #ddd;
  background:#fff;
  cursor:pointer;
  font-size:13px;
  font-weight:600;
}
.lang-btn.active{
  background:#ff5722;
  color:#fff;
  border-color:#ff5722;
}

/* MENU ICON */
.menu-toggle{
  display:none;
  font-size:24px;
  cursor:pointer;
}





/*Mobile*/
@media (max-width:768px){

  /* header height auto */
  .site-header{
    height:auto;
  }

  .header-flex{
    height:auto;
    flex-wrap:wrap;
  }

  /* menu icon show */
  .menu-toggle{
    display:block;
    font-size:26px;
    cursor:pointer;
  }

  /* language toggle VISIBLE on mobile */
  .lang-toggle{
    display:flex;
    gap:6px;
  }

  /* nav mobile dropdown */
  .nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    display:none;
    flex-direction:column;
    border-top:1px solid #e5e5e5;
  }

  .nav.show{
    display:flex;
  }

  .nav a{
    margin:0;
    padding:14px 20px;
    border-bottom:1px solid #eee;
  }
}


/* features.css – mobile flow confirm */
@media (max-width:768px){
  .features{
    display:block;
    clear:both;
    margin-top:0;
  }
}


@media (max-width:768px){
  section{ overflow:visible; }
}