 html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

#base {
  min-height: 100vh;   
  width: 100%;
     background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #333333 100%);
  background-attachment: fixed;    
}


#navbar {
  height: 70px;
  width: 80%;
  padding: 0 40px;
  position: sticky;
  top: 50px;
  display: flex;
  align-items: center;
  z-index: 1000;
  margin: 0 auto;
  border-radius: 40px;
  border: 0.1px solid #323232;
  background-color: #1E1E1E;
}

#logo {
  color: white;
  font-weight: bold;
  font-size: 26px;
  color: rgb(0, 238, 255);
}


#nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;  
}


#nav-links a {
  text-decoration: none;  
  color: white;           
}
 



#base {
  min-height: 100vh;
  width: 100%;
  font-family: sans-serif;
}

.base1 {
  margin-top: 125px;       
  margin-left: 4%;
  width: 45%;               
  color: white;
}

.base1 h3 span{
color: aqua;
font-size: 28px;
font-family: sans-serif;
font-weight: bold;
}

.base1 h2 {
  font-size: 24px;
  font-weight: 400;
  font-weight: bold;
}

.base1 h1 {
  font-size: 60px;
  margin: 10px 0;
}

.base1 h3 {
  font-size: 22px;
  color: #bdbdbd;
}

#base p {
  margin-left: 4%;
  width: 45%;
  color: #cccccc;
  line-height: 1.6;
}

#icons{
    margin-left: 4%;
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

#icons a i {
  color: #00f2ff;           
  font-size: 26px;
  transition: 0.3s ease;
  text-shadow:
    0 0 3px #00f2ff,
    0 0 6px rgba(0, 242, 255, 0.6);
}

#icons a i:hover {
  text-shadow:
    0 0 6px #00f2ff,
    0 0 12px rgba(0, 242, 255, 0.6);
  transform: scale(1.1);
}

#button-container {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  margin-left: 10%;  
}

.btn {
  height: 50px;
  width: 160px;          
  background-color: #1E1E1E; 
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;   
  border: 1px solid #00f2ff;
  color: #00f2ff;
  font-family: sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn a {
  color: #00f2ff;
  text-decoration: none;
}

.btn:hover {
  background-color: #00f2ff;
  color: #1E1E1E;
  box-shadow:
    0 0 8px #00f2ff,
    0 0 16px rgba(0, 242, 255, 0.6);
  transform: scale(1.05);
}

.btn:hover a {
  color: #1E1E1E;
}

#nav-links a:hover {
  color: #00f2ff;
  transition: 0.3s ease;
  transform: scale(1.1);
}

.hero-right {
  position: absolute;
  top: 130px;
  right: -2%;
  width: 50%;
  height: 500px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-circle {
  width: 360px;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;
  position: relative;

  transition: all 0.4s ease;
}

.hero-img {
  width: 260px;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
  z-index: 2;
}

.glow-circle:hover .hero-img {
  transform: scale(1.2);
}


.glow-circle::before {
  content: "";
  position: absolute;
  inset: -10px; 
  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(0, 242, 255, 0.6),
    rgba(0, 242, 255, 0.25),
    transparent 70%
  );

  opacity: 0;
  filter: blur(18px);
  transition: opacity 0.4s ease;
}

.glow-circle:hover::before {
  opacity: 1;
}
