 .SpecHovvers{
  --bg: #0b6cf6;            /* main background (change as needed) */
  --bg-2: #6f42c1;          /* secondary color for gradient */
  --fg: #ffffff;            /* text color */
  --radius: 10px;
  --pad-y: 0.6rem;
  --pad-x: 1.15rem; 

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x);
  border: 0;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
  background: linear-gradient(90deg, var(--bg), var(--bg-2));
  box-shadow: var(--shadow);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition:
    transform 220ms cubic-bezier(.2,.9,.2,1),
    box-shadow 220ms ease,
    filter 220ms ease;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}

/* subtle lift + scale on hover */
.SpecHovvers:hover{
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 30px rgba(15,23,42,0.22);
  filter: saturate(1.05);
}

/* pressed state */
.SpecHovvers:active{
  transform: translateY(-1px) scale(.995);
  box-shadow: 0 8px 18px rgba(15,23,42,0.14);
}

/* focus-visible (keyboard accessible) */
.SpecHovvers:focus-visible{
  outline: 3px solid rgba(99,102,241,0.18);
  outline-offset: 3px;
}

/* animated underline (pseudo-element) */
.SpecHovvers::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 0%;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.6));
  transition: width 360ms cubic-bezier(.2,.9,.2,1), opacity 200ms ease;
  opacity: 0.95;
  pointer-events: none;
}

/* expand underline on hover */
.SpecHovvers:hover::after{
  width: 72%;
}

/* decorative shine sweep using another pseudo-element */
.SpecHovvers::before{
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 40%;
  height: 200%;
  transform: rotate(25deg) translateX(-120%);
  background: rgba(255,255,255,0.15);
  filter: blur(16px);
  opacity: 0;
  transition: transform 650ms cubic-bezier(.22,.9,.3,1), opacity 520ms ease;
  pointer-events: none;
}

/* reveal the shine on hover */
.SpecHovvers:hover::before{
  transform: rotate(25deg) translateX(20%);
  opacity: 1;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce){
  .SpecHovvers,
  .SpecHovvers::before,
  .SpecHovvers::after{
    transition: none !important;
  }
  .SpecHovvers:hover{ transform: none; }
}

/* small variant (optional) */
.SpecHovvers.small{
  --pad-y: 0.35rem;
  --pad-x: 0.85rem;
  font-size: 0.9rem;
  border-radius: 8px;
}

/* ghost/outline variant (optional) */
.SpecHovvers.ghost{
  background: transparent;
  color: var(--bg);
  box-shadow: none;
  border: 2px solid rgba(11,108,246,0.12);
}
.SpecHovvers.ghost:hover{
  filter: brightness(1.02);
  box-shadow: 0 10px 20px rgba(11,108,246,0.06);
}



  .sinhaPriviacy {
      --bg: #ffffff;
      --card: #fbfbfc;
      --accent: #012a4a;
      --accent-2: #7a1f2f;
      --muted: #4b5563;
      --border: #e6e9ee;
      --radius: 10px;
      font-family: "Georgia", "Times New Roman", serif;
      color: #0b0f14;
      background: linear-gradient(180deg,var(--bg),#f7f9fb);
      padding: 28px; 
      margin: 28px auto;
      line-height: 1.6;
      box-sizing: border-box;
    }

    .sinhaPriviacy h1 {
      font-size: 22px;
      color: var(--accent);
      margin-bottom: 10px;
      text-align: center;
    }

    .sinhaPriviacy .meta {
      color: var(--muted);
      font-size: 13px;
      text-align: center;
      margin-bottom: 25px;
    }

    .sinhaPriviacy main {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 22px;
      border-radius: var(--radius);
      box-shadow: 0 6px 18px rgba(8,20,40,0.04);
    }

    .sinhaPriviacy h2 {
      color: var(--accent-2);
      font-size: 16px;
      margin-top: 20px;
      margin-bottom: 8px;
    }

    .sinhaPriviacy p, 
    .sinhaPriviacy li {
      color: #111827;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .sinhaPriviacy ul { padding-left: 20px; margin: 6px 0 12px 0; }

    .sinhaPriviacy .small {
      font-size: 13px;
      color: var(--muted);
    }

    .sinhaPriviacy .contact {
      margin-top: 18px;
      padding: 14px;
      border-radius: 8px;
      background: linear-gradient(180deg,#fff,#fcfdff);
      border: 1px solid #e9eef6;
    }

    .sinhaPriviacy table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 8px;
    }

    .sinhaPriviacy th, .sinhaPriviacy td {
      text-align: left;
      padding: 8px;
      border-bottom: 1px solid #eef2f7;
      font-size: 13px;
    }

    .sinhaPriviacy th {
      font-weight: 700;
      color: var(--accent);
    }

    .sinhaPriviacy a { color: var(--accent); text-decoration: underline; }

    @media (max-width:640px) {
      .sinhaPriviacy { padding: 18px; margin: 14px; }
      .sinhaPriviacy h1 { font-size: 20px; }
    }









 .calltocationCss {
      background: #ffffff;
      width: 100%; 
      border-radius: 14px;
      box-shadow: 0 27px 17px rgba(11, 99, 216, 0.12);
      padding: 30px 40px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: space-between;
      align-items: center;
      text-align: center;
    }
    .fornSmsn{
           border: 1px solid transparent;
    background: #f6f7f9;
    box-shadow: none;
    color: #415674;
    border-radius: 4px;
    margin-bottom: 0;
    padding: 10px 15px;
    max-width: 100%;
    width: 100%;
    font-size: 13px;
    line-height: 28px;
    font-weight: 600;
    transition: all 0.3s linear;
    height: 54px;
     border: 1px solid #6666669c;
    }

    .calltocationCss h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0;
      color: #1e293b;
    }

    .calltocationCss p {
      font-size: 1rem;
      color: #64748b;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.5;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      margin-top: 10px;
    }

    .cta-buttons a {
          display: inline-block;
    padding: 7px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    }

    .btn-primaryssss {
      background: linear-gradient(90deg, #0b63d8, #065bb3);
      color: #fff;
      box-shadow: 0 4px 12px rgba(11, 99, 216, 0.25);
    }

    .btn-primaryssss:hover {
      transform: translateY(-2px);
    }

    .btn-secondaryssss {
      border: 2px solid #0b63d8;
      color: #0b63d8;
      background: transparent;
    }

    .btn-secondaryssss:hover {
      background: #0b63d8;
      color: #fff;
    }

    @media (min-width: 768px) {
      .calltocationCss {
        flex-direction: row;
        text-align: left;
        padding: 40px 60px;
      }

      .cta-content {
        flex: 1;
      }

      .cta-buttons {
        flex: 0 0 auto;
        margin-top: 0;
      }
    }



.font6small{
         font-size: 18px !important;
}
.bgstyle{
        background: aliceblue;
    padding-top: 62px;
}
.smhspatna_Scrolling{

}
.ilslis{
    list-style: auto;
    padding: 0px 18px;
    margin-top: 17px;
    color: #000;
}
.formmFgs{
   background: #ffffff;
    border-radius: 3px;
    padding: 4px 25px 0px 0px;
    padding-top: 27px;
    margin-top: 0px;
}
.flbrsl{
    margin-bottom: 11px;
}
.phinecss{
       font-size: 36px !important;
    color: #5bad09;
    font-weight: 900 !important; 
}
.smbspatnaBlogs{
    padding: 9px 0px 0px 11px !important;
}
.cardStyleing{
        background: #ffffff;
    padding: 13px 20px;
    border-radius: 7px;
    box-shadow: 2px 3px 4px 2px #ddd;
    margin-bottom: 0px !important;
    margin-top: 13px !important;
}
.smhs62Ptag{
    margin-top: 2px !important;
    color: #1d1d8f;
    font-size: 13px;
    font-weight: 600;
}

.smhsp_button{
	    background: #112a4e;
    color: #ffffff !important;
    padding: 2px 12px;
    border: 1px solid;
    font-size: 13px !important;
    border-radius: 100px;
}
.smhsp_Students{
	    background: #dc3545;
    color: #ffffff !important;
    padding: 2px 12px;
    border: 1px solid;
    font-size: 13px !important;
    border-radius: 100px;
}
.smhsp_Enquiry{
	 background: #ffffff;
    color: #000000 !important;
   padding: 2px 12px;
    border: 1px solid;
    font-size: 13px !important;
    border-radius: 100px;
}
.smhsp_Affiliation{
	background: #ffffff;
    color: #000000 !important;
   padding: 2px 12px;
    border: 1px solid;
    font-size: 13px !important;
    border-radius: 100px;
}
.smhsp_Admission{
	    background: #112a4e;
    color: #ffffff !important;
    padding: 2px 12px;
    border: 1px solid;
    font-size: 13px !important;
    border-radius: 100px;
}
.smhsp_Phone{
	    width: 31px;
}