:root{
    --neon:#1daa61;
      --neon2:#1daa61;
      --accent:#1daa61;
    }

    body{
     background: #000000 !important;
      color:#eaf6ff!important;
      font-family:'Outfit',sans-serif;
      overflow-x:hidden;
    }


    .section-padding{ padding:60px 0; }
.timeline-item:last-child {
    margin-bottom: 0;
}
    .section-title{
      font-size:3rem;
      font-weight:800;
      text-align:center;
      margin-bottom:80px;
      background:linear-gradient(90deg,var(--neon),var(--accent),var(--neon2));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    /* hero */
    .banner{ padding: 120px 0px; }

    .title{
      font-size:4.5rem;
      font-weight:900;
      background:linear-gradient(90deg,#fff,var(--neon),var(--accent));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    .btn-primary-custom{
      border:2px solid var(--neon)!important;
      color:var(--neon)!important;
      padding:14px 38px!important;
      border-radius:50px!important;
      font-weight:600!important;
      box-shadow:0 0 25px rgba(0,245,212,.5)!important;
      transition:.4s!important;
    }

    .btn-primary-custom:hover{ background:var(--neon); color:#001; transform:translateY(-4px) scale(1.05); }

    .doctor-img{ width:520px; filter:drop-shadow(0 0 70px rgba(0,245,212,.6)); }

    /* glass */
    .glass-card{
      background:rgba(255,255,255,0.04);
      border:1px solid rgba(0,255,212,0.25);
      backdrop-filter:blur(30px);
      border-radius:28px;
      padding:30px;
      transition:.5s;
    }

    .glass-card:hover{ transform:translateY(-12px); box-shadow:0 0 60px rgba(0,245,212,.3); }

    /* timeline */
    .timeline{
      position:relative;
      margin-left:20px;
      padding-left:40px;
      border-left:2px solid rgb(29 170 97);
    }

    .timeline-item{
      position:relative;
      margin-bottom:50px;
    }

    .timeline-dot{
      position:absolute;
      left:-54px;
      top:0;
      width:40px;
      height:40px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,var(--neon),var(--accent));
         box-shadow: 0 0 25px rgb(29 170 97);
      color:#fff;
      font-size:18px;
    }

    /* services */
    .service-img-wrapper{ overflow:hidden; border-radius:28px 28px 0 0; }
    .service-img{ transition:1.2s;    transition: 1.2s;
    height: 300px;
    width: 100%;
    object-fit: cover; }
    .glass-card:hover .service-img{ transform:scale(1.2); }

    /* contact */
   #contact .form-control{
      background-color:rgba(255, 255, 255, 0.996)!important;
      border:1px solid 0 0 35px rgb(29 170 97)!important;
      color:#000!important;  border-radius: 10px;
    }

    .btn-send{
      background:linear-gradient(90deg,var(--neon),var(--accent));
      border:none;
      color:#001;
      font-weight:700;
      padding:14px 46px;
      border-radius:50px;
      box-shadow:0 0 35px 0 0 35px rgb(29 170 97);
    }

#reach h5{color: #d4d4d4!important;}
  /* footer icons */
.footer-icon{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:18px;
  transition:.3s;
  border:1px solid 0 0 35px rgb(29 170 97);
}
footer .small{font-size: 16px;}
footer ul li{margin-bottom: 10px;}
.footer-icon:hover{
  background:linear-gradient(135deg,var(--neon),var(--accent));
  color:#001;
  transform:translateY(-4px) scale(1.1);
  box-shadow:0 0 35px rgb(29 170 97);
}

/* scroll to top */
#scrollTopBtn{
  position:fixed;
  bottom:30px;
  right:30px;
  width:52px;
  height:52px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,var(--neon),var(--accent));
  color:#fff;
  font-size:22px;
  display:none;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 35px rgb(29 170 97);
  cursor:pointer;
  z-index:999;
  transition:.3s;
}

#scrollTopBtn:hover{
  transform:translateY(-6px) scale(1.1);
}

    /* Header */
    header {
      position: fixed;
      top: 0;    z-index: 9;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.2rem 5%;
    background: rgb(105 105 105 / 0%);
      transition: all 0.4s ease;
    }

    header.scrolled {
      padding: 0.9rem 5%;
     background:  rgb(29 170 97);
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo {
      font-size: 1.9rem;
      font-weight: bold;
  color: white;
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
    }


    .nav-links a {
color: white;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      font-size: 1.05rem;
    }
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -6px;
      left: 0;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transition: width 0.3s ease;
    }
p{            color: #dedede;}
    .nav-links a:hover,
    .nav-links a.active {
         color: #ffffff;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: white;
      border-radius: 2px;
      transition: all 0.4s ease;
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(10, 14, 23, 0.98);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      transform: translateX(100%);
      transition: transform 0.5s ease;
      z-index: 99999;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu a {
      color: white;
      font-size: 1.2rem;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s;
    }

    .mobile-menu a:hover {
      color: var(--primary);
    }

    .close-btn {
      position: absolute;
      top: 1rem;
      right: 2rem;
      font-size: 3.5rem;
      color: white;
      cursor: pointer;
      transition: all 0.3s;
    }

    .close-btn:hover {
      color: var(--accent);
      transform: rotate(90deg);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .doctor-img {
    width: 420px;}
    .section-title {
    font-size: 2rem;margin-bottom: 50px;}
      .hero h1 {
    font-family: 'Orbitron', sans-serif;
     font-size: 50px;}
     .section-padding {
    padding: 40px 0;
}
      }


