/*navbar-custom css*/
/* =========================
HEADER
========================= */

.healthmozo-home .hm-header{
    width:100%;
    background:#ffffff;
    /*position:sticky;*/
    top:0;
    left:0;
    z-index:9999;
    box-shadow:0 2px 15px rgba(0,0,0,0.05);
}

.healthmozo-home .hm-container{
    width:92%;
    max-width:1280px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:75px;
}

/* =========================
LOGO
========================= */

.hm-logo img,
.custom-logo{
    max-height:42px;
    width:auto;
    display:block;
}

/* =========================
TOGGLE
========================= */

.hm-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#0f172a;
    font-weight:700;
    user-select:none;
}

/* =========================
NAVBAR
========================= */

.hm-navbar{
    display:flex;
    align-items:center;
}

.hm-menu{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}

.hm-menu > li{
    position:relative;
}

.hm-menu > li > a{
    text-decoration:none;
    color:#0f172a;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
    padding:28px 0;
    display:block;
}

.hm-menu > li > a:hover{
    color:#06b6d4;
}

/* =========================
DROPDOWN
========================= */

.sub-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    line-height: 0px;
    background:#E4E4E7;
    border-radius:0px;
    padding:10px 0;
    /*margin: 0px;*/
    list-style:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    display:flex;
    flex-direction:column;
    opacity:50;
    visibility:hidden;
    transition:0.3s;
}

.sub-menu li{
    width:100%;
}

.sub-menu li a{
    display:block;
    padding:8px 20px;
    color:#3F3F46;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.sub-menu li a:hover{
    background:#f1f5f9;
    color:#06b6d4;
}

/* DESKTOP DROPDOWN */

.menu-item-has-children:hover > .sub-menu{
    opacity:50;
    visibility:visible;
    top:100%;
}

/*Mobile*/

@media(max-width:991px){

  .healthmozo-home  .hm-container{
        min-height:56px;
        padding:0 12px;
    }

    .hm-logo img,
    .custom-logo{
        max-height:42px;
        width:auto;
    }

    .hm-toggle{
        display:flex !important;
        align-items:center;
        justify-content:center;
        width:38px;
        height:38px;
        font-size:24px;
        line-height:1;
        cursor:pointer;
        background:transparent;
        border:none;
        color:#0f172a;
    }

    .hm-navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        border-top:1px solid #e2e8f0;
        box-shadow:0 5px 15px rgba(0,0,0,0.06);

        display:none;
        flex-direction:column;
        align-items:flex-start;

        z-index:9999;
    }

    .hm-navbar.active{
        display:flex;
    }

    .hm-menu{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:8px 16px;
        margin:0;
    }

    .hm-menu > li{
        width:100%;
        border-bottom:1px solid #f1f5f9;
    }

    .hm-menu > li > a{
        display:block;
        width:100%;
        padding:11px 0;
        font-size:15px;
        font-weight:600;
        color:#0f172a;
    }

    .sub-menu{
        position:relative;
        top:auto;
        left:auto;
        width:100%;
        min-width:100%;

        opacity:1;
        visibility:visible;
        display:none;

        background:#fff;
        box-shadow:none;
        border-radius:0;

        padding:2px 0 8px 12px;
        margin:0;
    }

    .menu-item-has-children.active > .sub-menu{
        display:block;
    }

    .sub-menu li{
        width:100%;
    }

    .sub-menu li a{
        display:block;
        padding:7px 0;
        font-size:14px;
        font-weight:500;
        color:#334155;
    }

}
/*navbar-custom css*/
/*--------------------------------------------------------------*/
/*custom-search css*/
.hm-search-form{
  display:flex;
  align-items:center;
  width:100%;
  max-width:500px;
  margin:auto;
  padding: 10px;
  background: none;
  border-radius:50px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  border:1px solid #e2e8f0;
}

.hm-search-form input{
  flex:1;
  border:none;
  outline:none;
  padding:18px 20px;
  font-size:15px;
}

.hm-search-form button{
  width:60px;
  height:60px;
  border:none;
  background:#0284c7;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  transition:0.3s;
}

.hm-search-form button:hover{
  background:#0369a1;
}
/*######------Mobile----######*/
@media(max-width:768px){
  .hm-search-form{
    width:100%;
  }

  .hm-search-form input{
    padding:16px;
    font-size:12px;
  }

  .hm-search-form button{
    width:35px;
    height:35px;
  }
}
/*custom-search css*/
/*-------------------------------------------------------------------*/
/*homepage-custom css*/
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Inter',sans-serif;
      background:#f5f9fc;
      color:#1e293b;
      line-height:1.6;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

 .healthmozo-home   .container{
      width:90%;
      max-width:1250px;
      margin:auto;
    }
/*------------------*/
    header{
      background:#fff;
      position:sticky;
      top:0;
      z-index:1000;
      box-shadow:0 2px 12px rgba(0,0,0,0.05);
    }

 .healthmozo-home   .navbar{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:18px 0;
    }

    .logo{
      font-size:32px;
      font-weight:800;
      color:#0f766e;
    }

    .logo span{
      color:#0284c7;
    }

    nav ul{
      display:flex;
      list-style:none;
      gap:28px;
      align-items:center;
    }

    nav ul li a{
      font-weight:600;
      transition:0.3s;
    }

    nav ul li a:hover{
      color:#0284c7;
    }
    /*----------------*/

 .healthmozo-home   .hero{
      padding:90px 0;
      background:linear-gradient(135deg,#e0f2fe,#ecfeff);
    }

  .healthmozo-home  .hero-wrapper{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:50px;
      align-items:center;
    }

 .healthmozo-home   .hero-text h1{
      font-size:58px;
      line-height:1.1;
      margin-bottom:24px;
      color:#0f172a;
    }

 .healthmozo-home   .hero-text p{
      font-size:18px;
      margin-bottom:32px;
      color:#475569;
    }

 .healthmozo-home   .hero-buttons{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
    }

    .btn{
      padding:14px 28px;
      border-radius:14px;
      font-weight:700;
      transition:0.3s;
      display:inline-block;
    }

    .btn-primary{
      background:#0284c7;
      color:#fff;
    }

    .btn-primary:hover{
      background:#0369a1;
    }

    .btn-secondary{
      background:#fff;
      color:#0f172a;
      border:1px solid #cbd5e1;
    }

   .healthmozo-home .hero-image img{
      width:100%;
      border-radius:28px;
      box-shadow:0 10px 40px rgba(0,0,0,0.12);
    }

 .healthmozo-home   .section-title{
      text-align:center;
      margin-bottom:55px;
    }

  .healthmozo-home  .section-title h2{
      font-size:42px;
      margin-bottom:14px;
      color:#0f172a;
    }

 .healthmozo-home   .section-title p{
      color:#64748b;
      font-size:17px;
    }

  .healthmozo-home  .trust-bar{
      padding:70px 0;
      background:#fff;
    }

  .healthmozo-home  .trust-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:24px;
    }

  .healthmozo-home  .trust-card{
      background:#f8fafc;
      padding:28px;
      border-radius:22px;
      text-align:center;
      border:1px solid #e2e8f0;
      transition:0.3s;
    }

  .healthmozo-home  .trust-card:hover{
      transform:translateY(-5px);
      background:#ecfeff;
    }

 .healthmozo-home   .trust-card h3{
      margin-top:14px;
      font-size:20px;
    }

  .healthmozo-home  .doctors{
      padding:90px 0;
    }

  .healthmozo-home  .doctor-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:30px;
    }

 .healthmozo-home   .doctor-card{
      background:#fff;
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 8px 30px rgba(0,0,0,0.06);
      transition:0.3s;
    }

 .healthmozo-home   .doctor-card:hover{
      transform:translateY(-6px);
    }

 .healthmozo-home   .doctor-card img{
      width:100%;
      height:260px;
      object-fit:cover;
    }

  .healthmozo-home  .doctor-content{
      padding:24px;
    }

.healthmozo-home    .doctor-content h3{
      margin-bottom:10px;
    }

 .healthmozo-home   .doctor-content p{
      color:#475569;
      margin-bottom:12px;
    }

 .healthmozo-home   .categories{
      background:#fff;
      padding:90px 0;
    }

 .healthmozo-home   .category-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:24px;
    }

 .healthmozo-home   .category-card{
      background:#f8fafc;
      border-radius:24px;
      padding:35px 20px;
      text-align:center;
      font-weight:700;
      border:1px solid #e2e8f0;
      transition:0.3s;
    }

 .healthmozo-home   .category-card:hover{
      background:#0284c7;
      color:#fff;
      transform:translateY(-5px);
    }

 .healthmozo-home   .articles{
      padding:90px 0;
    }

 .healthmozo-home   .article-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:30px;
    }

 .healthmozo-home   .article-card{
      background:#fff;
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 8px 28px rgba(0,0,0,0.06);
    }

 .healthmozo-home   .article-card img{
      width:100%;
      height:220px;
      object-fit:cover;
    }

 .healthmozo-home   .article-content{
      padding:24px;
    }

    .badge{
      display:inline-block;
      background:#dcfce7;
      color:#166534;
      padding:6px 12px;
      border-radius:40px;
      font-size:13px;
      font-weight:700;
      margin-bottom:14px;
    }

 .healthmozo-home   .article-content h3{
      margin-bottom:14px;
      font-size:22px;
    }

   .healthmozo-home .article-content p{
      color:#64748b;
      margin-bottom:18px;
    }

 .healthmozo-home   .newsletter{
      padding:90px 0;
      background:linear-gradient(135deg,#0f766e,#0284c7);
      color:#fff;
      text-align:center;
    }

  .healthmozo-home  .newsletter h2{
      font-size:44px;
      margin-bottom:16px;
    }

  .healthmozo-home  .newsletter p{
      margin-bottom:28px;
      font-size:18px;
    }

  .healthmozo-home  .newsletter form{
      display:flex;
      justify-content:center;
      gap:14px;
      flex-wrap:wrap;
    }

  .healthmozo-home  .newsletter input{
      width:350px;
      padding:16px;
      border:none;
      border-radius:12px;
      outline:none;
      font-size:16px;
    }

  .healthmozo-home  .newsletter button{
      border:none;
      background:#fff;
      color:#0284c7;
      padding:16px 28px;
      border-radius:12px;
      font-weight:800;
      cursor:pointer;
    }

    footer{
      background:#0f172a;
      color:#fff;
      padding:70px 0 30px;
    }

  .healthmozo-home  .footer-grid{
      display:grid;
      grid-template-columns:2fr 1fr 1fr 1fr;
      gap:40px;
      margin-bottom:40px;
    }
    
 .healthmozo-home   .footer-logo{
    margin-bottom:15px;
}

.healthmozo-home .footer-logo img{
    max-width:250px;
    width:100%;
    height:auto;
    display:block;
}

  .healthmozo-home  .footer-column h3{
      margin-bottom:18px;
    }

  .healthmozo-home  .footer-column ul{
      list-style:none;
    }

 .healthmozo-home   .footer-column ul li{
      margin-bottom:12px;
      color:#cbd5e1;
    }

  .healthmozo-home  .copyright{
      text-align:center;
      border-top:1px solid rgba(255,255,255,0.1);
      padding-top:24px;
      color:#94a3b8;
    }

    @media(max-width:992px){
      .hero-wrapper,
      .trust-grid,
      .doctor-grid,
      .category-grid,
      .article-grid,
      .footer-grid{
        grid-template-columns:1fr 1fr;
      }

      .hero-text h1{
        font-size:42px;
      }
    }

    @media(max-width:768px){
      nav{
        display:none;
      }

      .hero-wrapper,
      .trust-grid,
      .doctor-grid,
      .category-grid,
      .article-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }

      .hero-text h1{
        font-size:36px;
      }

      .section-title h2{
        font-size:32px;
      }
      
      .footer-logo img{
   
    display:none;
}
    }
    /*homepage-custom css*/
  