/* ================= HERO ================= */
.home-container{
  /* background: url("../images/homebg.png") center/cover no-repeat; */
  background-size: cover;
  position: relative;
  overflow: hidden;
  /* padding: 80px 0; */
  min-height: 87.5vh;              
  /* display: flex;                */
  /* align-items:flex-start; */
  /* padding-top:80px; */

  /* align-items: center; */
    padding-top: 120px;           
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.8);
  z-index:0;
  /* z-index:1; */
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: rgba(0, 0, 0, 0.918);   /* 👈 overlay strength */
  z-index:1;
}

/* ================= TEXT ================= */
.line-with-loader {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.green-line {
  flex: 1;
  height: 16px;
  background: linear-gradient(
    90deg,
    #006600 0%,
    #00ff00 35%,
    #00cc00 60%,
    rgba(0,255,0,0.3) 85%,
    rgba(0,255,0,0.05) 100%
  );
  clip-path: polygon(0 0, 100% 45%, 100% 55%, 0 100%);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.green-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );
  animation: shine 2s linear infinite;
}

@keyframes shine {
  from { left: -40%; }
  to { left: 100%; }
}

/* ================= LOADER ================= */
.loader {
  display: flex;
}
.circle {
  width: 12px;
  height: 12px;
  border: 2px solid #00ff00;
  border-radius: 50%;
  margin: 0 6px;
  animation: pulse 1.5s infinite;
}
.circle:nth-child(2){animation-delay:.2s}
.circle:nth-child(3){animation-delay:.4s}
.circle:nth-child(4){animation-delay:.6s}
.circle:nth-child(5){animation-delay:.8s}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity:1 }
  50% { transform: scale(1.6); opacity:.4 }
}
/* ================= TEXT ================= */
.highlight {
  font-size: 3rem;
  color: #00ff00;
  font-weight: bold;
}
.sub-text { color: #ccc; }
.sub-text {
  color: #ccc;
  font-size: 1.2rem;
}


.learn-text{
    align-items: center;
    margin-top: 40px;
    display:block;
}

.home-text{
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* From Uiverse.io by Bodyhc */ 
.synthwave-laser-button {
  position: relative;
  padding: 20px 60px;
  font-size: 20px;
  margin-top: 65px;
  display:inline-block;
  text-decoration:none;   /* underline हटाउन */
  text-align:center;
  text-transform: uppercase;
  color: #fff;
  background: #101020; /* Base color */
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  text-shadow:
    0 0 5px #f4060a,
    0 0 15px #a40510,
    0 0 25px #5c020e;
  box-shadow:
    inset 0 0 15px #680210,
    0 0 20px rgba(186, 1, 1, 0.7);
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.synthwave-laser-button::before,
.synthwave-laser-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(252, 32, 47, 0.6),
    transparent
  );
  z-index: -1;
  filter: blur(5px);
  transform: translateX(-100%);
  animation: laser-glow 2.5s infinite linear;
}

.synthwave-laser-button::after {
  animation-delay: 1.25s;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 144, 0.6),
    transparent
  );
}

@keyframes laser-glow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.synthwave-laser-button:hover {
  transform: translateY(-5px);
}

.synthwave-laser-button:active {
  transform: scale(0.95);
  box-shadow:
    inset 0 0 15px #a5010a,
    0 0 25px rgba(184, 13, 1, 0.7);
}

.home-image {
  width: clamp(320px, 25vw, 520px);
  height: clamp(320px, 25vw, 520px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(0, 255, 0, 0.25);
}


.home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card {
  max-width: fit-content;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-content: center;
  margin-top: 40px;
  justify-content: center;
  gap: 1rem;
  backdrop-filter: blur(15px);
  background-color: #000;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.192),
    inset 0 0 5px rgba(255, 255, 255, 0.274),
    0 5px 5px rgba(0, 0, 0, 0.164);
  transition: 0.5s;
}

.card:hover {
  animation: ease-out 5s;
  background: rgba(173, 173, 173, 0.05);
}

.card ul {
  padding: 1rem;
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.card ul li {
  cursor: pointer;
}

.svg {
  transition: all 0.3s;
  padding: 1rem;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  color: rgb(255, 174, 0);
  fill: currentColor;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.164);
}

.text {
  opacity: 0;
  border-radius: 5px;
  padding: 5px;
  transition: all 0.3s;
  color: rgb(255, 174, 0);
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 9999;
  box-shadow:
    -5px 0 1px rgba(153, 153, 153, 0.2),
    -10px 0 1px rgba(153, 153, 153, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.082);
}

.iso-pro {
  transition: 0.5s;
}
.iso-pro:hover a > .svg {
  transform: translate(15px, -15px);
  border-radius: 100%;
}

.iso-pro:hover .text {
  opacity: 1;
  transform: translate(25px, -2px) skew(-5deg);
}

.iso-pro:hover .svg {
  transform: translate(5px, -5px);
}

.iso-pro span {
  opacity: 0;
  position: absolute;
  color: #1877f2;
  border-color: #1877f2;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5),
    0 5px 5px rgba(0, 0, 0, 0.164);
  border-radius: 50%;
  transition: all 0.3s;
  height: 60px;
  width: 60px;
}

.iso-pro:hover span {
  opacity: 1;
}

.iso-pro:hover span:nth-child(1) {
  opacity: 0.2;
}

.iso-pro:hover span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}

.iso-pro:hover span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}

/* ================= VIDEO ================= */
.home-video {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
}
.home-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/* ================= LARGE DESKTOP (1400px+) ================= */
@media (min-width: 1400px){

  .home-container{
    padding-top:140px;
  }

  .highlight{
    font-size:3.2rem;
  }

  .sub-text{
    font-size:1.3rem;
  }

  .home-image{
    width:500px;
    height:500px;
  }

}


/* ================= LAPTOP (992px – 1399px) ================= */
@media (max-width:1399px) and (min-width:992px){

  .home-container{
    padding-top:120px;
  }

  .highlight{
    font-size:2.8rem;
  }

  .home-image{
    width:420px;
    height:420px;
  }

}


/* ================= TABLET (768px – 991px) ================= */
@media (max-width:991px) and (min-width:768px){

  .home-container{
    padding-top:100px;
    min-height:auto;
  }

  .highlight{
    font-size:2.4rem;
  }

  .sub-text{
    font-size:1.05rem;
  }

  .home-image{
    width:300px;
    height:300px;
  }

  .synthwave-laser-button{
    padding:16px 40px;
    font-size:18px;
  }

}


/* ================= MOBILE (≤767px) ================= */
@media (max-width:767px){

  .home-container{
    min-height:auto;
    padding-top:70px;
    padding-bottom:40px;
  }
    .highlight{
    font-size:1.4rem;   /* size सानो */
    white-space: nowrap; /* 1 line मा राख्ने */
    }
  .loader{
    display: none;
  }

  .home-text{
    text-align:center;
  }

  .mobile-image{
    margin:30px 0;
  }

  .synthwave-laser-button{
    display:block;
    margin:30px auto 0;
  }

  .learn-text{
    margin-top:20px;
  }

  .card{
    margin:30px auto 0;
  }

}

