  .hmc-hero{
      padding:90px 0;
      background:linear-gradient(135deg,#e0f2fe,#ecfeff);
    }

    .hmc-hero-wrapper{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:50px;
      align-items:center;
    }

    .hmc-hero-text h1{
      font-size:58px;
      line-height:1.1;
      margin-bottom:24px;
      color:#0f172a;
    }

    .hmc-hero-text p{
      font-size:18px;
      margin-bottom:32px;
      color:#475569;
    }

    .hmc-hero-buttons{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
    }
    
    #doctor-btn {
        font-size: 15px;
        padding: 5px 7px;
        background-color: #9C9897;
       
    }
    #verified-dr {
        color:green; float:right;
    }

    .hmc-btn{
      padding:14px 28px;
      border-radius:14px;
      font-weight:700;
      transition:0.3s;
      display:inline-block;
    }

    .hmc-btn-primary{
      background:#0284c7;
      color:#fff;
    }

    .hmc-btn-primary:hover{
      background:#3777de;
    }

    .hmc-btn-secondary{
      background:#fff;
      color:#0f172a;
      border:1px solid #cbd5e1;
    }
    
     .hmc-btn-secondary:hover{
      background:#e1f2df;
      color: #0284c7;
    }

    .hmc-hero-image img{
      width:100%;
      border-radius:28px;
      box-shadow:0 10px 40px rgba(0,0,0,0.12);
    }

    .hmc-section-title{
      text-align:center;
      margin-bottom:55px;
    }

    .hmc-section-title h2{
      font-size:42px;
      margin-bottom:14px;
      color:#0f172a;
    }

    .hmc-section-title p{
      color:#64748b;
      font-size:17px;
    }
/*------------Trust-bar---------*/

.hmc-trust-section{
  padding:90px 20px;
  background:
  linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.hmc-container{
  max-width:1250px;
  margin:auto;
}

/* TITLE */

.hmc-section-title{
  text-align:center;
  margin-bottom:60px;
}

.hmc-section-title span{
  display:inline-block;
  background:#dbeafe;
  color:#2563eb;
  padding:8px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  margin-bottom:18px;
}

.hmc-section-title h2{
  font-size:48px;
  color:#0f172a;
  margin-bottom:18px;
  line-height:1.2;
}

.hmc-section-title p{
  font-size:18px;
  color:#64748b;
  max-width:750px;
  margin:auto;
  line-height:1.7;
}

/* GRID */

.hmc-trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

/* CARD */

.hmc-trust-card{
  background:#ffffff;
  border-radius:28px;
  padding:40px 30px;
  text-align:center;
  position:relative;
  overflow:hidden;
  border:1px solid #dbe7f3;

  transition:0.45s ease;

  box-shadow:
  0 12px 30px rgba(15,23,42,0.05);
}

/* GLOW EFFECT */

.hmc-trust-card::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:220px;
  height:220px;
  background:rgba(14,165,233,0.08);
  border-radius:50%;
  transition:0.5s ease;
}

.hmc-trust-card::after{
  content:"";
  position:absolute;
  bottom:-120px;
  left:-120px;
  width:220px;
  height:220px;
  background:rgba(34,197,94,0.08);
  border-radius:50%;
  transition:0.5s ease;
}

/* ICON */

.hmc-trust-icon{
  width:90px;
  height:90px;
  margin:auto;
  margin-bottom:24px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  font-size:42px;

  background:
  linear-gradient(135deg,#0ea5e9,#22c55e);

  color:#fff;

  box-shadow:
  0 12px 25px rgba(14,165,233,0.35);

  position:relative;
  z-index:2;

  transition:0.4s ease;
}

/* TEXT */

.hmc-trust-card h3{
  font-size:24px;
  color:#0f172a;
  margin-bottom:14px;
  position:relative;
  z-index:2;
}

.hmc-trust-card p{
  font-size:16px;
  color:#64748b;
  line-height:1.8;
  position:relative;
  z-index:2;
}

/* HOVER */

.hmc-trust-card:hover{
  transform:
  translateY(-12px);

  box-shadow:
  0 30px 60px rgba(14,165,233,0.18);

  border-color:transparent;
}

.hmc-trust-card:hover::before{
  transform:scale(1.2);
}

.hmc-trust-card:hover::after{
  transform:scale(1.2);
}

.hmc-trust-card:hover .hmc-trust-icon{
  transform:scale(1.12) rotate(5deg);
}

/*----------------Doctor Profile-------------------*/
    .hmc-doctors{
      padding:90px 0;
    }

    .hmc-doctor-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:30px;
    }

    .hmc-doctor-card{
      background:#fff;
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 8px 30px rgba(0,0,0,0.06);
      transition:0.3s;
    }

    .hmc-doctor-card:hover{
      transform:translateY(-6px);
    }

     .hmc-doctor-card img{
  width:280px;
  height:280px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  margin:auto;
}

    .hmc-doctor-content{
      padding:24px;
    }

    .hmc-doctor-content h3{
      margin-bottom:10px;
      font-size: 22px;
      color: #232A33;
    }

    .hmc-doctor-content p{
      color:#475569;
      margin-bottom:12px;
      font-size: 14px;
    }
/*-----------------Categories---------------------*/
/* SECTION category advance */

.hmc-categories{
  padding:80px 20px;
}

.hmc-container{
  max-width:1250px;
  margin:auto;
}

/* TITLE */

.hmc-section-title{
  text-align:center;
  margin-bottom:50px;
}

.hmc-section-title span{
  display:inline-block;
  padding:8px 18px;
  background:#dbeafe;
  color:#2563eb;
  border-radius:30px;
  font-size:14px;
  font-weight:700;
  margin-bottom:15px;
}

.hmc-section-title h2{
  font-size:48px;
  color:#0f172a;
  margin-bottom:15px;
}

.hmc-section-title p{
  color:#64748b;
  font-size:18px;
}

/* GRID */

.hmc-category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */

.hmc-category-card{
  background:#fff;
  border-radius:24px;
  padding:35px 25px;
  text-align:center;
  text-decoration:none;
  border:1px solid #dbe7f3;
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.hmc-category-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(135deg,#0ea5e9,#22c55e);
  transition:0.5s ease;
  z-index:0;
}

.hmc-category-card:hover::before{
  left:0;
}

.hmc-category-card *{
  position:relative;
  z-index:2;
}

/* ICON */

.hmc-category-icon{
  width:70px;
  height:70px;
  background:#eff6ff;
  border-radius:50%;
  margin:auto;
  margin-bottom:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:34px;

  transition:0.4s ease;
}

/* TEXT */

.hmc-category-card h3{
  color:#0f172a;
  font-size:22px;
  margin-bottom:10px;
}

.hmc-category-card p{
  color:#64748b;
  font-size:15px;
  line-height:1.6;
}

/* HOVER */

.hmc-category-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 50px rgba(14,165,233,0.25);
}

.hmc-category-card:hover h3,
.hmc-category-card:hover p{
  color:#fff;
}

.hmc-category-card:hover .hmc-category-icon{
  background:#fff;
  transform:scale(1.1);
}


/*-----------------------Latest Category Artical/Post----------------------------*/
    .hmc-articles{
      padding:90px 0;
    }

    .hmc-article-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:30px;
    }

    .hmc-article-card{
      background:#fff;
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 8px 28px rgba(0,0,0,0.06);
    }

    .hmc-article-card img{
      width:100%;
      height:220px;
      object-fit:cover;
    }

    .hmc-article-content{
      padding:24px;
    }

    .hmc-badge{
      display:inline-block;
      background:#dcfce7;
      color:#166534;
      padding:6px 12px;
      border-radius:40px;
      font-size:13px;
      font-weight:700;
      margin-bottom:14px;
    }

    .hmc-article-content h3{
      margin-bottom:14px;
      font-size:22px;
      color:#232A33 ;
    }

    .hmc-article-content p{
      color:#64748b;
      margin-bottom:10px;
      font-size: 16px;
    }
/*-----------------------newsletter--|-Subscribe-------------------------*/
    .hmc-newsletter{
      padding:90px 0;
      background:linear-gradient(135deg,#0f766e,#0284c7);
      color:#fff;
      text-align:center;
    }

    .hmc-newsletter h2{
      font-size:44px;
      margin-bottom:16px;
    }

    .hmc-newsletter p{
      margin-bottom:28px;
      font-size:18px;
    }

    .hmc-newsletter form{
      display:flex;
      justify-content:center;
      gap:14px;
      flex-wrap:wrap;
    }

    .hmc-newsletter input{
      width:350px;
      padding:16px;
      border:none;
      border-radius:12px;
      outline:none;
      font-size:16px;
    }

    .hmc-newsletter button{
      border:none;
      background:#fff;
      color:#0284c7;
      padding:16px 28px;
      border-radius:12px;
      font-weight:800;
      cursor:pointer;
    } 
    
    /*serchbar------*/
    /* =========================
SEARCH BAR
========================= */

#search_fast{
    width:100%;
    padding:30px 0;
    background:#f8fafc;
}

.hm-search-form{
    max-width:520px;
    margin:auto;
    position:relative;
    display:flex;
    align-items:center;
    background:#fff;
    border:2px solid #dbe4ee;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(15,23,42,0.06);
}

.hm-search-form input[type="search"]{
    width:100%;
    height:64px;
    border:0;
    outline:none;
    padding:0 75px 0 28px;
    font-size:17px;
    color:#0f172a;
    background:transparent;
}

.hm-search-form input[type="search"]::placeholder{
    color:#64748b;
}

.hm-search-form button{
    position:absolute;
    right:8px;
    width:50px;
    height:50px;
    border:0;
    border-radius:50%;
    background:#0ea5e9;
    color:#ffffff;
    font-size:18px;
    cursor:pointer;
    transition:0.3s ease;
}

.hm-search-form button:hover{
    background:#0284c7;
    transform:scale(1.05);
}

/*---------------------SECTION of content toogle -----------------*/

.hmc-toggle-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.5s ease;
    background:#fff;
}
.hmc-toggle-section{
    padding:20px 20px;
    background:#f5f7fb;
}

.hmc-container{
    
     width:90%;
      max-width:1250px;
      margin:auto;
    /*max-width:900px;*/
    /*margin:auto;*/
}

.hmc-toggle-box{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.hmc-toggle-item{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.hmc-toggle-btn{
    width:100%;
    border:none;
    outline:none;
    background:#fff;
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#222;
}

.hmc-toggle-btn:hover{
    background:#f0f4ff;
}

.hmc-toggle-icon{
    font-size:28px;
    font-weight:700;
    transition:0.3s;
    color:#0d6efd;
}

.hmc-toggle-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    background:#fff;
}

.hmc-toggle-content p{
    padding:0 25px 25px;
    margin:0;
    line-height:1.8;
    color:#555;
    font-size:16px;
}

.hmc-toggle-item.active .hmc-toggle-content{
    max-height:900px;
}

.hmc-toggle-item.active .hmc-toggle-icon{
    transform:rotate(45deg);
}
.mozo-bottom-lines{
        font-size: 16px;
        color: #525252;
    }
    .hmc-toggle-btn{
        background-color: #F0F5F3;
    }
/* MOBILE */

@media(max-width:768px){

    .hmc-toggle-btn{
        font-size:16px;
        padding:18px;
    }

    .hmc-toggle-content p{
        font-size:15px;
        padding:0 18px 20px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    #search_fast{
        padding:20px 15px;
    }

    .hm-search-form{
        border-radius:18px;
    }

    .hm-search-form input[type="search"]{
        height:56px;
        font-size:15px;
        padding:0 65px 0 18px;
    }

    .hm-search-form button{
        width:44px;
        height:44px;
        font-size:16px;
    }

}   

/*---------------------------------------Blur-------------*/

/* =========================
NEWSLETTER COMING SOON
========================= */

.newsletter{
    position:relative;
    padding:80px 20px;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    overflow:hidden;
    text-align:center;
    color:#ffffff;
}

.newsletter .container{
    max-width:700px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* Blur Content */

.newsletter h2,
.newsletter p,
.newsletter form{
    filter:blur(2px);
    opacity:.55;
    pointer-events:none;
    user-select:none;
}

/* Overlay Badge */

.newsletter::after{
    content:"Newsletter Launching Soon";

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    background:#ffffff;
    color:#0f172a;

    padding:14px 30px;
    border-radius:50px;

    font-size:15px;
    font-weight:700;
    letter-spacing:.3px;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

    z-index:5;
}

/* Optional Glow */

.newsletter::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(14,165,233,.18);
    border-radius:50%;
    top:-80px;
    right:-80px;
    filter:blur(60px);
}

/* MOBILE */

@media(max-width:768px){

    .newsletter{
        padding:60px 20px;
    }

    .newsletter::after{
        font-size:13px;
        padding:12px 22px;
        width:max-content;
        max-width:90%;
    }

}