* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
h1,h2,h3{
  font-weight:600;
}
p{
  font-weight:400;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}
body {
  color: white;
  background: #000;
  overflow-x: hidden;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  z-index: 10;
}

nav ul {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

nav ul li {
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ffff;
}

@media (max-width: 768px) {

  /* NAVBAR (top bar only) */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);

    z-index: 1000;
  }

/* Hamburger container */
.hamburger {
  width: 32px;
  height: 26px;
  position: relative; 
  cursor: pointer;
  z-index: 2000;
}

/* Lines */
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 10px;

  transition:
    transform 0.6s cubic-bezier(.68,-0.55,.27,1.55),
    opacity 0.4s ease,
    box-shadow 0.4s ease;

  box-shadow: 0 0 6px rgba(0,255,255,0.35);
}

/* Initial positions */
.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ACTIVE — UNIQUE MORPH */
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  box-shadow:
    0 0 12px rgba(0,255,255,0.9),
    0 0 22px rgba(0,255,255,0.6);
}

.hamburger.active span:nth-child(2) {
  opacity: 0; 
}

.hamburger.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  box-shadow:
    0 0 12px rgba(0,255,255,0.9),
    0 0 22px rgba(0,255,255,0.6);
}

  /* FULLSCREEN MENU OVERLAY */
  nav ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(16px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;

    list-style: none;
    margin: 0;
    padding: 0;

    opacity: 0;
    pointer-events: none;
    transform: scale(1.05);

    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1050;
  }

  nav ul.mobile-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  nav ul li a {
    font-size: 32px;
  }
}


/* Hero */
.hero {
  height: 100vh;
  padding: 80px 16px 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* animation setup */
  overflow: hidden;
}

/* Main heading */
.hero h1 {
  font-size: clamp(28px, 7vw, 64px);
  position: relative;
  z-index: 2;

  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease forwards;
}

/* Highlighted name */
.hero h1 span {
  color: #00ffff;
  display: inline-block;

  opacity: 0;
  transform: scale(0.85);
  animation: nameGlow 1s ease forwards;
  animation-delay: 0.4s;

  text-shadow:
    0 0 12px rgba(0,255,255,0.6),
    0 0 28px rgba(0,255,255,0.4);
}

/* Subtitle */
.hero p {
  margin-top: 14px;

  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s ease forwards;
  animation-delay: 0.8s;
}

/* Button */
.view-work-btn {
  margin-top: 28px;

  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s ease forwards;
  animation-delay: 1.2s;
}

/* ---------------- Animations ---------------- */

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nameGlow {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.swoosh-line {
  display: flex;
  justify-content: center;
  margin: 10px 0 25px;
}

.swoosh-line svg {
  width: 220px;
  height: 50px;
}

.swoosh-line path {
  fill: none;
  stroke: #00ffff;
  stroke-width: 3;
  stroke-linecap: round;

  /* Neon glow */
  filter: drop-shadow(0 0 6px #00ffff)
          drop-shadow(0 0 15px #00ffff);

  /* FLOW EFFECT */
  stroke-dasharray: 10 10;
  animation: flowLine 1.5s linear infinite;
}

/* Continuous movement */
@keyframes flowLine {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 40;
  }
}


.view-work-btn{
  position:relative;
  padding:12px 36px;
  border-radius:50px;
  background:transparent;
  color:#00f2ff;
  font-size:16px;
  font-weight:600;
  letter-spacing:1px;
  border:2px solid #00f2ff;
  cursor:pointer;
  outline:none;
  text-decoration:none;
  transition:all .4s ease;
  box-shadow:
    0 0 15px rgba(0,242,255,.4),
    inset 0 0 10px rgba(0,242,255,.2);
}

/* HOVER */
.view-work-btn:hover{
  color:#000;
  background:#00f2ff;
  box-shadow:
    0 0 25px rgba(0,242,255,.9),
    0 0 60px rgba(0,242,255,.6);
  transform:translateY(-3px);
}

/* GLOW RIPPLE */
.view-work-btn::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:0 0 40px rgba(0,242,255,.8);
  opacity:0;
  transition:.4s;
}

.view-work-btn:hover::after{
  opacity:1;
}


/* Sections */
.section {
  min-height: 50vh;
  padding: 120px 10%;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Project */

.projects-section {
  padding: 120px 8%;
}

.projects-title {
  font-size: 42px;
  margin-bottom: 60px;
  color: #fff;
}

.projects-title span {
  color: #00fff0;
  font-size: 18px;
  display: block;
  letter-spacing: 2px;
}

/* Grid */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* Card */

.project-card {
  background: linear-gradient(
    135deg,
    rgba(27, 22, 22, 0.08),
    rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow:
    0 0 18px rgba(19, 212, 212, 0.418);
  transition: transform .4s ease, box-shadow .4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(0,255,255,0.35);
}

/* Image */

.project-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

/* full pro body */

.project-body {
  padding: 20px;
}

.project-body h3 {
  color: #fff;
  margin-bottom: 8px;
}

.project-body p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* pro tags */

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.project-tags span {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #00fff0;
  border: 1px solid rgba(0,255,255,.4);
}

/* Links */

.project-links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.project-links a {
  color: #00fff0;
  text-decoration: none;
  font-size: 14px;
  transition: color .3s ease;
}

.project-links a:hover {
  color: #fff;
}

/* Responsive */

@media (max-width: 600px) {
  .projects-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}
/*SKILLS SECTION */

.skills-section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
}

.section-title{
  font-size: 1.6rem;
  color: #00f5ff;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-left: 8%;
  margin-right: 8%; 
}

.skill-card {
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 1rem 1rem;
  text-align: center;
  border: 1px solid rgba(0, 255, 255, 0.4);               
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.skill-card:hover,
.skill-card:focus-within {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 45px rgba(0, 245, 255, 0.3);
}

.skill-card h3 {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.skill-card span {
  font-size: 0.9rem;
  color: #9ffcff;
}

.progress-ring {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
  margin: 0 auto;
}

.progress-ring circle:first-child {
  stroke: rgba(255,255,255,0.15);
  stroke-width: 10;
  fill: none;
}

/* Progress circle */
.progress {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;

  stroke-dasharray: 326;
  stroke-dashoffset: 326;

  animation: ringFill 12.6s ease forwards;
  filter: drop-shadow(0 0 8px rgba(0,245,255,0.6));
}

.progress.html {
  --value: 40; 
}

.progress.css {
  --value: 50; 
}

.progress.three {
  --value: 90; 
}

.progress.react {
  --value: 110; 
}

@keyframes ringFill {
  to {
    stroke-dashoffset: var(--value);
  }
}

.skill-desc {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cfffff;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.skill-card:hover .skill-desc,
.skill-card:focus-within .skill-desc {
  opacity: 1;
  transform: translateY(0);
}


/* Timeline desktop */
.timeline {
  position: relative;
}

.timeline .line {
  position: absolute;
  left: 50%;
  top: 120px;
  width: 3px;
  height: 80%;
  background: #00ffff;
  transform: translateX(-50%);
}
.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .timeline-events .event:nth-child(odd) {
    align-self: flex-start;
  }

  .timeline-events .event:nth-child(even) {
    align-self: flex-end;
  }
}

.event {
  width: 45%;
  padding: 20px;
  background: rgba(174, 17, 17, 0.92);
  border-radius: 15px;
  margin-bottom: 60px;
}

.event.left {
  margin-right: auto;
}

.event.right {
  margin-left: auto;
}

/* glass boxes */
.event {
  max-width: 420px;
  padding: 22px 36px;
  border-radius: 18px;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1)
  );

  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow:
    0 0 18px rgba(19, 212, 212, 0.418);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.event:hover {
  transform: translateY(-6px);
}

/* Text */
.exp-box h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.exp-box p {
  color: #cfd8e3;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Title */
.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ffffff;
}

/* Description */
.timeline-item p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* glow */
.timeline-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,255,255,0.6),
    transparent
  );

  opacity: 0.35;
  filter: blur(14px);
  z-index: -1;
}
.timeline-item.right {
  box-shadow:
    inset 0 0 30px rgba(0,255,255,0.12);
}

/* Gallery */

.section-gallery{
  padding:40px 0 20px;
  overflow:hidden;
  height:auto;
}

.gallery-title{
  text-align:center;
  color:#fff;
  font-size:2rem;
  margin-bottom:40px;
}

/* Slider */
.slider-wrapper{
  width:100%;
  overflow:hidden;
}

.slider-track{
  display:flex;
  gap:25px;
  width:max-content;
  animation: scroll 40s linear infinite;
}

.slider-wrapper:hover .slider-track{
  animation-play-state: paused;
}

/* Card */
.slide{
  min-width:280px;
  height:190px;
  border-radius:20px;
  overflow:hidden;
  flex-shrink:0;
  box-shadow:0 0 25px rgba(0,255,255,0.25);
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
/* Edge  */

.slider-wrapper{
  position:relative;
}

.fade-left,
.fade-right{
  position:absolute;
  top:0;
  width:120px;
  height:100%;
  z-index:5;
  pointer-events:none;
}

.fade-left{
  left:0;
  background:linear-gradient(to right, #050505, transparent);
}

.fade-right{
  right:0;
  background:linear-gradient(to left, #050505, transparent);
}

/* Animation */
@keyframes scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

@media(max-width:768px){
  .slide{
    min-width:220px;
    height:150px;
  }
}
@media(max-width:768px){

  /* STOP slider */
  .slider-track{
    animation:none;
    width:100%;
  }

  .fade-left,
  .fade-right{
    display:none;
  }

  .slider-wrapper{
    overflow:visible;
    padding:15px;
  }
  .slider-track .slide:nth-child(n+5){
    display:none;
  }

  .slider-track{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
  }

  .slide:nth-child(1){
    width:100%;
    height:220px;
  }
  .slide:nth-child(2),
  .slide:nth-child(3){
    width:48%;
    height:140px;
  }

  /*  BOTTOM WIDE CARD */
  .slide:nth-child(4){
    width:100%;
    height:180px;
  }

  /* 💎 CARD STYLE */
  .slide{
    border-radius:22px;
    overflow:hidden;
    position:relative;

    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);

    box-shadow:
      0 15px 40px rgba(0,0,0,0.7),
      0 0 25px rgba(0,255,255,0.15);

    transition: all 0.35s ease;
  }

  /* NEON BORDER */
  .slide::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:22px;
    padding:1px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.974));
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity:1.1;
  }

  /* 🔥 TOUCH EFFECT */
  .slide:active{
    transform: scale(0.96);
  }

  /* IMAGE */
  .slide img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

}
@media(max-width:768px){

  .slider-wrapper{
    position: relative;
  }

  /* 🔥 MAIN CONNECTING LINE (RIGHT SIDE) */
  .slider-wrapper::after{
    content:"";
    position:absolute;
    right:42px;   /* adjust position */
    top:90px;     /* start from first card */
    width:3px;
    height:65%;   /* goes till last card */

    border-radius:50px;

    /* neon gradient */
    background: linear-gradient(
      to bottom,
      transparent,
      #00ffff,
      #00ffff,
      transparent
    );

    /* glow effect */
    box-shadow:
      0 0 10px #00ffff,
      0 0 20px #00ffff,
  }

  /* bring cards above line */
  .slide{
    position:relative;
    z-index:1;
  }

}



/* Work sec. */
.cta {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 8%;
  
}

/* Content box */
.cta-content {
  max-width: 520px;
  padding: 50px 55px;
  border-radius: 26px;

  backdrop-filter: blur(25px);

  border: 1px solid rgba(0, 255, 255, 0.438);

  box-shadow:
    0 0 20px rgba(4, 255, 255, 0.384);
}

.notify-glass {
  position: fixed;
  bottom: 30px;
  right: 30px;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(0,255,255,0.3);
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 30px rgba(0,255,255,0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s ease;
  z-index: 9999;
}

.notify-glass.show {
  transform: translateY(0);
  opacity: 1;
}

.notify-content h2 {
  color: cyan;
  margin-bottom: 10px;
}

.notify-content p {
  color: #ccc;
  font-size: 14px;
}

.notify-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.notify-buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: rgba(0,255,255,0.1);
  color: cyan;
  transition: 0.3s;
}

.notify-buttons button:hover {
  background: cyan;
  color: black;
}
/* Title */
.cta-content h2 {
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: #00ffff;
  margin-bottom: 22px;

  text-shadow:
    0 0 10px rgba(0,255,255,0.6),
    0 0 30px rgba(0,255,255,0.4);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .section.cta {
    padding: 85px 15px;
  }

  .section.cta h2 {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 20px;
  }
  .cta-content {
    max-width: 100%;
    padding: 50px 50px;}
}

/* lead line */
.cta-lead {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 22px;
  line-height: 1.6;
  
}

/* Description text */
.cta-desc {
  font-size: 1rem;
  color: #cfd8e3;
  line-height: 1.85;
  margin-bottom: 34px;
}

/* Button */
.cta-btn {
  padding: 12px 54px;
  border-radius: 50px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #00ffff, #0088ff);
  color: #000;
  font-size: 1rem;
  font-weight: 500;

  box-shadow:
    0 0 20px rgba(0,255,255,0.6),
    0 0 40px rgba(0,255,255,0.4);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Button hover */
.cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 0 30px rgba(0,255,255,0.9),
    0 0 60px rgba(0,255,255,0.7);
}

@keyframes glassGlow {
  0% {
    box-shadow:
      0 30px 60px rgba(0,0,0,0.45),
      inset 0 0 20px rgba(0,255,255,0.05);
  }
  50% {
    box-shadow:
      0 40px 80px rgba(0,0,0,0.55),
      inset 0 0 35px rgba(0,255,255,0.15);
  }
  100% {
    box-shadow:
      0 30px 60px rgba(0,0,0,0.45),
      inset 0 0 20px rgba(0,255,255,0.05);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .cta {
    padding-left: 5%;
    padding-right: 5%;
  }

  .cta-content {
    max-width: 100%;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .timeline .line {
    left: 20px;
  }

  .event {
    width: 90%;
    margin-left: 40px;
  }
}
/* Glowing Button Effect */
button {
  position: relative;
  padding: 14px 38px;
  font-size: 1rem;
  font-weight: 500;
  color: #00ffff;
  background: rgba(0, 255, 255, 0.08);
  border: 2px solid #00ffff;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
}
button::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    #00ffff,
    #0088ff00,
    #00ffff
  );
  opacity: 0;
  filter: blur(15px);
  z-index: -1;
  transition: opacity 0.35s ease;
}


button:hover::before {
  opacity: 1;
}
button:active {
  transform: scale(0.96);
}
button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,255,255,0.4);
}
/* Sec. glow  */
.section {
  position: relative;
  padding-top: 140px;
}

/* All section titles */
.section h2 {
  position: absolute;
  top: 30px;
  left: 40px;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00ffff;
  cursor: pointer;

  /* Glow */
  text-shadow:
    0 0 10px rgba(0,255,255,0.6),
    0 0 20px rgba(0,255,255,0.4);

  transition: all 0.4s ease;
}
/* nav bar glow */
nav ul li a {
  position: relative;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* Subtle glow */
nav ul li a {
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.25);
}

/* Hover glow */
nav ul li a:hover {
  color: #00ffff;
  text-shadow:
    0 0 8px rgba(0,255,255,0.6),
    0 0 18px rgba(0,255,255,0.4);
}

/* Underline glow  */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #0088ff);
  box-shadow: 0 0 10px rgba(0,255,255,0.8);
  transition: width 0.35s ease;
}

nav ul li a:hover::after {
  width: 100%;
}
nav ul li a.active {
  color: #00ffff;
  text-shadow:
    0 0 10px #00ffff,
    0 0 20px rgba(0,255,255,0.6);
}
/* typography */
.about {
  display: flex;
  align-items: center;
}

/* Text container */
.about-content {
  max-width: 30%;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #eaeaea;
}

/* Paragraph spacing */
.about-content p {
  margin-bottom: 28px;
}

/* Highlighted words */
.highlight {
  color: #00ffff;
  font-weight: 500;
}

/* 3D object */
@media (max-width: 1000px) {
  .about-content {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }

  .about-content {
    max-width: 100%;
  }
}
/* about glass */
.about-glass {
  padding-top: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

/* Header */
.about-header {
  margin-bottom: 1px;
}

.about-kicker {
  color: #00ffff;
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.about-header h2 {
  font-size: 2.8rem;
  margin-top: 8px;
}

/* Cards layout */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  left: 400px;
  width: 450%;
  
}

/* Glass card */
.about-card {
  padding:40px;
  border-radius: 22px;
  backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow:
  0 0 18px rgba(19, 212, 212, 0.418);
}

/* Hover */
.about-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 60px 40px rgba(0,0,0,0.4),
    0 0 30px rgba(0,255,255,0.15);
}

/* Card title */
.about-card h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #ffffff;
}

/* Paragraphs */
.about-card p {
  color: #cfd8e3;
  line-height: 1.75;
  margin-bottom: 19px;
  font-size: 1rem;
}

/* Highlight words */
.about-card .hl {
  color: #00ffff;
  font-weight: 500;
}

/* Subtle writing effect */
.about-card p {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.about-card:hover p {
  opacity: 1;
}

/* for phone */
@media (max-width: 500px) {
  .about-cards {
    grid-template-columns: 32cap;
  }
  .about-glass {
    padding: 10px 10px;
    left: -42px;
  }
    .about-card {
    padding: 26px;
  }

  .about-card h3 {
    font-size: 1.1rem;
  }

  .about-header h2 {
    font-size: 3.2rem;
  }
}
.img-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(135deg, #00f0ff, #005bff);
}

/* tech sec. */
.tech-stack {
  padding: 120px 8%;
}

/* Title */
.tech-stack .section-title {
  font-size: 1.4rem;
  margin-bottom: 60px;
  color: #00ffff;
  text-shadow: 0 0 12px rgba(0,255,255,0.5);
}

/* Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  
}

/* Glass Card */
.tech-card {
  padding: 40px;
  border-radius: 22px;

  backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow:
    0 0 18px rgba(19, 212, 212, 0.418);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover */
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
}

/* Card Title */
.tech-card h2 {
  margin-bottom: 20px;
  font-size: 4rem;
  color: #ffffff;
}

/* Pills */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.tech-tags span {
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 0 10px rgba(0,255,255,0.15);

  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Pill hover */
.tech-tags span:hover {
  background: rgba(0,255,255,0.15);
  box-shadow:
    0 0 14px rgba(0,255,255,0.6);
}

/* for phone */
@media (max-width: 768px) {
  .tech-stack {
    padding: 80px 5%;
  }
}

/* Hire button */
.cta-btn {
  padding: 15px 42px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;


  background: linear-gradient(135deg, #00ffff, #0088ff);
  color: #000;
  font-size: 0.95rem;
  font-weight: 500;

  box-shadow:
    0 0 18px rgba(0,255,255,0.6),
    0 0 40px rgba(0,255,255,0.4);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 28px rgba(0,255,255,0.9),
    0 0 60px rgba(0,255,255,0.7);
}
/* Hire button */
.hire-btn {
  padding: 14px 42px;
  border-radius: 50px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #00ffff, #0088ff);
  color: #000;
  font-size: 0.95rem;
  font-weight: 500;

  box-shadow:
    0 0 18px rgba(0,255,255,0.6),
    0 0 40px rgba(0,255,255,0.4);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hire-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 28px rgba(0,255,255,0.9),
    0 0 60px rgba(0,255,255,0.7);
}

/* right card */
.concept-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-left: 400px;
}

.point {
  position: relative;
  padding: 18px 28px;
  max-width: 300px;
  border-radius: 14px;

  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
  border: 1px solid rgba(0,255,255,0.35);

  box-shadow:
    0 0 20px rgba(0,255,255,0.35),
    inset 0 0 18px rgba(0,255,255,0.15);

  backdrop-filter: blur(10px);
}

/* glowing outline */
.point::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: linear-gradient(180deg, #00ffff, transparent);
  opacity: 0.5;
  filter: blur(1px);
  z-index: -1;
}

/*  floating animation */
.point {
  animation: float 6s ease-in-out infinite;
}

.point:nth-child(2) { animation-delay: 1.5s; }
.point:nth-child(3) { animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* for phones */
@media (max-width: 768px) {

  /* Container fix */
  .concept-points {
    margin-left: 0;  
    align-items: center;
    gap: 50px;
    position: relative;
    padding: 40px 0;
  }

  /* CENTER VERTICAL LINE */
  .concept-points::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;

    background: #00ffff;

    box-shadow:
      0 0 10px #00ffff,
      0 0 30px #00ffff;
  }
.point::before {
    display: none;
  }
  /* Cards */
  .point {
    max-width: 90%;
    padding-bottom: 50px;
    padding-top: 40px;
    text-align: center;
    margin: 0 auto;
    position: relative;
  }

  /* DOT CONNECTOR */
  .point::after {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);

    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ffff;

    box-shadow:
      0 0 10px #00ffff,
      0 0 20px #00ffff;
  }

  /* REMOVE top dot for first item */
  .point:first-child::after {
    display: none;
  }
}

/* lines  */
.point {
  position: relative;
}

/* Horizontal line */
.point::before {
  content: "";
  position: absolute;

  /* Position */
  left: -402px;
  top: 50%;
  transform: translateY(-50%);
  width: 402px;
  height: 3px;

  background: linear-gradient(
    to right,
    rgba(0,255,255,0.9),
    rgba(0,255,255,0.2)
  );

  box-shadow:
    0 0 19px rgba(0, 255, 255, 0.966),
    0 0 25px rgba(0,255,255,0.6);
}

.point:nth-child(1)::before {
  transform: translateY(-60%) rotate(180deg);
}
.point:nth-child(2)::before {
  transform: translateY(-50%) rotate(180deg);
}

.point:nth-child(3)::before {
  transform: translateY(-50%) rotate(180deg);
}
.point::before {
  animation: pulseLine 3s ease-in-out infinite;
}

@keyframes pulseLine {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* CONTACT SECTION */
.contact-section {
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTAINER  */
.contact-container {
  width: 100%;
  max-width: 1100px;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}
.contact-title {
  position: absolute;
  top: 30px;
  left: 40px;

  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #00ffff;

  text-shadow:
    0 0 10px rgba(0,255,255,0.6),
    0 0 25px rgba(0,255,255,0.4);

  z-index: 5;
}
/* LEFT SIDE */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* CARD BOX */
.contact-card-box {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 20px;
  border-radius: 18px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.1);

  box-shadow: 0 10px 30px rgba(0,0,0,0.5);

  transition: all 0.3s ease;
}

/* ENABLE POSITIONING */
.contact-card-box {
  position: relative;
  overflow: hidden;
}

/* LIGHT SWEEP */
.contact-card-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,255,255,0.25),
    transparent
  );

  transform: skewX(-20deg);
  transition: 0.6s ease;

  filter: blur(6px);
}

/* HOVER EFFECT */
.contact-card-box:hover::after {
  left: 120%;
}

/* PROFILE IMAGE */
.profile-img {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  object-fit: cover;
}

/* PROFILE TEXT */
.profile-card {
  align-items: flex-start;
}

.name {
  color: #00ffff;
  font-weight: 600;
  font-size: 1.1rem;
}

.role {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* CARD TEXT */
.contact-card-box h3 {
  color: #fff;
  font-size: 1rem;
}

.contact-card-box p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ICON */
.icon {
  font-size: 1.4rem;
}

/*  RIGHT SIDE FORM */
.contact-right {
  padding: 40px;
  border-radius: 25px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(25px);

  border: 1px solid rgba(0,255,255,0.2);

  box-shadow:
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 0 20px rgba(0,255,255,0.08);
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ROW */
.row {
  display: flex;
  gap: 15px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);

  color: #fff;
  font-size: 0.9rem;

  outline: none;
  transition: all 0.3s ease;
}

/* PLACEHOLDER */
.contact-form ::placeholder {
  color: rgba(255,255,255,0.5);
}

/* TEXTAREA */
.contact-form textarea {
  resize: none;
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #00ffff;

  box-shadow:
    0 0 10px rgba(0,255,255,0.6),
    0 0 20px rgba(0,255,255,0.3);

  transform: scale(1.02);
}

/* =========================
   BUTTON
========================= */
.send-btn {
  margin-top: 10px;
  padding: 16px;

  border: none;
  border-radius: 50px;

  background: linear-gradient(135deg, #00ffff, #0088ff);
  color: #fff;

  font-size: 1rem;
  font-weight: 500;

  cursor: pointer;

}
.send-btn:hover {
  transform: scale(1.05);

  box-shadow:
    0 0 60px rgba(0,255,255,0.5);
}
/* NOTE */
.contact-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-right {
    padding: 25px;
  }
}

@media (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}

/*project sec. */
.projects {
  padding: 120px 8%;
  
}

/* project grid  */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  
}

/* card  */
.card {
  position: relative;
  height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;

  border-radius: 24px;

  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 255, 0.4);

  box-shadow:
    0 0 30px rgba(19, 212, 212, 0.418);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 10px 10px rgba(9, 233, 241, 0.253),
    inset 0 0 35px rgb(7, 226, 226);
}

/* OPERATOR PREMIUM CARD */
.operator-premium {
  margin: 50px auto;
  max-width: 900px; 

  padding: 35px;

  display: flex;
  align-items: center;
  gap: 30px;

  border-radius: 24px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(25px);

  border: 1px solid rgba(0,255,255,0.25);

  box-shadow:
    0 0 40px rgba(0,255,255,0.15),
    inset 0 0 20px rgba(0,255,255,0.05);

  position: relative;
  overflow: hidden;
}

/* CINEMATIC GLOW */
.operator-premium::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at 20% 30%,
    rgba(0, 255, 255, 0.055),
    transparent 50%
  );

  opacity: 0.3;
  transition: 0.4s;
}

/* hover */
.operator-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0,255,255,0.25),
    transparent
  );

  transform: skewX(-20deg);
  transition: 0.6s ease;
}

/* HOVER TRIGGER */
.operator-premium:hover::after {
  left: 120%;
}

/* LEFT IMAGE */
.operator-left img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;

  border: 2px solid rgba(0, 255, 255, 0.541);

  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.342),
    0 0 50px rgba(0,255,255,0.3);
}

/* RIGHT CONTENT */
.operator-right h2 {
  font-size: 1.8rem;
  color: #ffffff;

  margin-bottom: 5px;

  text-shadow:
    0 0 10px rgba(0,255,255,0.6);
}

.operator-role {
  color: #00ffff;
  font-size: 0.95rem;
  margin-bottom: 12px;

  letter-spacing: 0.5px;
}

.operator-text {
  color: #cfd8e3;
  font-size: 0.95rem;
  line-height: 1.6;

  margin-bottom: 18px;
}

/* =========================
   TAGS
========================= */
.operator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.operator-tags span {
  padding: 6px 14px;
  border-radius: 20px;

  font-size: 0.8rem;
  color: #00ffff;

  border: 1px solid rgba(0,255,255,0.4);

  box-shadow:
    0 0 10px rgba(0,255,255,0.2);

  background: rgba(0,255,255,0.05);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 700px) {
  .operator-premium {
    flex-direction: column;
    text-align: center;
  }

  .operator-left img {
    width: 90px;
    height: 90px;
  }
}

/* footer */
.footer {
  margin-top: 140px;
  padding: 80px 8% 30px;

  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 -20px 60px rgba(0,0,0,0.6),
    inset 0 0 30px rgba(0,255,255,0.05);
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

/* Brand */
.footer-brand h3 {
  font-size: 1.5rem;
  color: #00ffff;
  margin-bottom: 12px;

  text-shadow:
    0 0 10px rgba(0,255,255,0.6),
    0 0 25px rgba(0,255,255,0.4);
}

.footer-brand p {
  color: #ffffff;
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 420px;
}

/* Links */
.footer-links h4,
.footer-social h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
  color: #cfd8e3;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover glow */
.footer-links a:hover,
.footer-social a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0,255,255,0.6);
}

/* Social */
.herofooter-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 50px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);

  text-align: center;
  font-size: 0.85rem;
  color: #9aa4b2;
}

/* Mobile */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 60px 6% 25px;
  }
}


/* 2nd footer mini. */
.mini-footer {
  margin-top: 0.1px;
  padding: 60px 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  background: none;  
  backdrop-filter: none;
  box-shadow: none;       
  border: none;           
}
.footer-icons a {
  width: 46px;
  height: 46px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);

  color: white;
  text-decoration: none;

  box-shadow:
    0 0 12px rgba(0,255,255,0.35),
    inset 0 0 8px rgba(0,255,255,0.15);

  transition: all 0.3s ease;
}


/* Credit text */
.footer-credit {
  color: #b8c2d1;
  font-size: 0.95rem;
}

.footer-credit span {
  color: #00ffff;
  text-shadow:
    0 0 8px rgba(0,255,255,0.6),
    0 0 18px rgba(0,255,255,0.4);
}

/* Icons container */
.footer-icons {
  display: flex;
  align-items: center;  
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 16px;
}

/* Icon buttons */
.footer-icons a {
  width: 46px;
  height: 46px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);

  backdrop-filter: blur(12px);

  box-shadow:
    0 0 12px rgba(0,255,255,0.25),
    inset 0 0 10px rgba(0,255,255,0.12);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.footer-icons a:hover {
  transform: translateY(-4px) scale(1.08);

  box-shadow:
    0 0 20px rgba(0,255,255,0.8),
    0 0 40px rgba(0,255,255,0.5);
}
.footer-social-box {
  background: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0;
}
.footer::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;

  background: linear-gradient(90deg, #00ffff);

  box-shadow:
    0 0 10px #00ffff,
    0 0 30px #00ffff;

  animation: scanLine 6s linear infinite;
}

@keyframes scanLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.footer-container {
  position: relative;
  z-index: 2;
}

/* for phones */
@media (max-width: 768px) {

  /* cta layout */
  .cta {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
  }

  /* big glass */
  .point-timeline-item {
    width: 100%;
    max-width: 420px;
    text-align: left;
    margin: 0 auto;
  }

  /* remove 3d */
  .hero-center {
    position: relative;
    transform: scale(0.7);
    opacity: 0.6;
    margin: 1.5rem 0;
  }

  /* small box */
  .point-timeline {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12rem;
    margin: 0 auto;
  }

  /* box style */
  .point-timeline-item {
    backdrop-filter: blur(14px);
    border-radius: 14px;
    padding: 1rem;
    font-size: 0.95rem;
    /* animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
  }

  /* all animation */
  .point-timeline-item:nth-child(1) { animation-delay: 0.2s; }
  .point-timeline-item:nth-child(2) { animation-delay: 0.5s; }
  .point-timeline-item:nth-child(3) { animation-delay: 0.8s; }

  /* social underline */
  .point-timeline::before,
  .point-timeline-item::before,
  .point-timeline-item::after {
    display: none !important;
    content: none !important;
  }
}

.scroll-hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.hero-layer{
  position:sticky;
  top:0;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-shadow:
    0 0 10px rgba(0, 255, 238, 0.315),
    0 0 25px rgba(0, 255, 238, 0.253),
    0 0 50px rgba(0, 255, 238, 0.274);

  animation: glowPulse 1s ease-in-out infinite;
}

/* Txt */
.hero-text{
  position:relative;
  font-size: clamp(4rem,12vw,10rem);
  color:#00ffee;
  letter-spacing:10px;
  font-weight:800;
  z-index:2;
}

.hero-sub{
  position:absolute;
  top:60%;
  color:#00fff0;
  letter-spacing:4px;
  opacity:1.8;
  z-index:2;
}
.hero-buttons{
  margin-top:35px;
  display:flex;
  justify-content:center;
  z-index:2;
}

.btn{
  position:relative;
  overflow:hidden;
  padding:12px 34px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  letter-spacing:1px;
  color:#00fff0;
  border:1px solid #00fff0;
  background:rgba(0,255,240,0.05);
  transition:0.4s ease;
}

/* sweep effect */
.btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(0,255,240,0.9),
    transparent
  );
  transition:0.5s;
}

.btn:hover::before{
  left:100%;
}

/* Hover Glow */
.btn:hover{
  transform:translateY(-6px) scale(1.05);
  box-shadow:
    0 0 15px rgba(0,255,240,0.8),
    0 0 40px rgba(0,255,240,0.6),
    inset 0 0 10px rgba(0,255,240,0.4);
}

/* Click feel */
.btn:active{
  transform:scale(0.95);
}

/*  Animate  */

@keyframes glowPulse{
  0%{text-shadow:0 0 10px rgba(0,255,240,0.3);}
  50%{text-shadow:0 0 25px rgba(0,255,240,0.6);}
  100%{text-shadow:0 0 10px rgba(0,255,240,0.3);}
}
/* Bar */
.bars{
  position:absolute;
  display:flex;
  gap:140px;
  z-index:1;
}

.bars span{
  width:50px;
  height:75vh;
  background:linear-gradient(#00fff0, transparent);
  border-radius:50px;
  opacity:0.35;
}
/* Center text group */
.hero-layer{
  flex-direction:column;
}

/* below name */
.hero-sub{
  position:relative;
  top:auto;
  margin-top:20px;
}

/* Buttons container */
.hero-buttons{
  margin-top:35px;
  display:flex;
  gap:25px;
  z-index:2;
}

/* Buttons */
.btn{
  padding:12px 30px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  letter-spacing:1px;
  transition:0.3s;
}

.primary{
  background:#00fff0;
  color:black;
}

.secondary{
  border:1px solid #00fff0;
  color:#00fff0;
  background:transparent;
}

.btn:hover{
  transform:translateY(-4px);
  box-shadow:0 0 20px #00fff0;
}

/*REMOVE  SCROLLBAR */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: transparent;
}
html {
  scrollbar-width: none; 
}
body {
  -ms-overflow-style: none;
}
/* SCROLL PROGRESS BAR */
#scrollBar{
  position:fixed;
  top:0;
  left:0;
  height:5px;
  width:0%;
  background:linear-gradient(90deg,#00f5ff,#3183e1,#60ede6);
  z-index:99999;
}
html{
  scroll-behavior:smooth;
}

/* Floating Button */
.chatbot-toggle {
  position: fixed;
  bottom: 25px;
  right: 20px;

  width: 65px;
  height: 65px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  cursor: pointer;
  z-index: 9999;

  box-shadow:
    0 0 15px #00ffff,
    0 0 30px #00ffff,
    0 0 60px rgba(0,255,255,0.6);

  animation: floatBot 3s infinite ease-in-out,
             pulseGlow 2.5s infinite ease-in-out;
}

/* SVG Styling */
.robot-svg {
  width: 55px;
  height: 56px;
  margin-top: auto;
  margin-bottom: 2px;

  filter:
    drop-shadow(0 0 6px #00ffff)
    drop-shadow(0 0 12px #00ffff);
}

/* Floating */
@keyframes floatBot {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* Glow pulse */
@keyframes pulseGlow {
  0%,100% {
    box-shadow:
      0 0 15px #00ffff,
      0 0 30px #00ffff;
  }
  50% {
    box-shadow:
      0 0 25px #00ffff,
      0 0 50px #00ffff,
      0 0 80px rgba(0,255,255,0.9);
  }
}

/* Hover */
.chatbot-toggle:hover {
  transform: scale(1.1);
}
@media (max-width: 600px) {
  .chatbot-toggle {
    width: 58px;
    height: 58px;
    right: 15px;
    bottom: 30px;
  }

  .robot-svg {
    width: 55px;
    height: 50px;
    position: relative;
  }
}


.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #00ffff;
}

/* Chat Container */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 320px;
  height: 420px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,255,255,0.3);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,255,255,0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
}

/* Header */
.chatbot-header {
  background: rgba(0,255,255,0.1);
  padding: 12px;
  color: #00ffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  border-bottom: 1px solid rgba(0,255,255,0.3);
}
.chatbot-header button {
  width: 65px;
  height: 45px;
  border-radius: 14px;   /* rounded square */
  border: none;
  background: rgba(255, 255, 255, 0.15);  /* soft glass look */
  color: white;
  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

/* Body */
.chatbot-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-size: 14px;
  color: #fff;
}

/* Message Container */
.message {
  display: flex;
  margin: 8px 0;
  width: 100%;
}

/* LEFT (Bot) */
.bot-msg {
  justify-content: flex-start;
}

/* RIGHT (User) */
.user-msg {
  justify-content: flex-end;
}

/* Chat Bubble */
.bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
  backdrop-filter: blur(8px);
}

/* Bot Bubble (Left) */
.bot-msg .bubble {
  background: rgba(0,255,255,0.15);
  color: #fff;
  border-top-left-radius: 4px;
  box-shadow: 0 0 10px rgba(0,255,255,0.3);
}
.bot-message{
  text-align: center;
}
/* User Bubble (Right) */
.user-msg .bubble {
  background: #00ffff;
  color: #000;
  border-top-right-radius: 4px;
  box-shadow: 0 0 15px rgba(0,255,255,0.6);
}

/* Footer */
.chatbot-footer {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 10px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(0,255,255,0.3);
}


.chatbot-footer input {
  flex: 1;
  padding: 8px;
  background: transparent;
  border: 1px solid #00ffff;
  border-radius: 8px;
  outline: none;
  color: white;
}

.chatbot-footer button {
  color: #000;  
  margin-left: 8px;
  background: #00ffff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

/* Typing bubble */
.typing {
  display: flex;
  align-items: center;
  gap: 5px;
}

.typing span {
  width: 6px;
  height: 6px;
  background: #00ffff;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}


.chat-info-box {
  position: absolute;
  bottom: 70px;
  left: 15px;
  width: 180px;
  background: rgba(0, 20, 20, 0.95);
  border: 1px solid rgba(0,255,255,0.4);
  border-radius: 12px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 0 20px rgba(0,255,255,0.4);
  backdrop-filter: blur(10px);
  z-index: 9999;
}

.chat-info-box a {
  text-decoration: none;
  color: #00ffff;
  font-size: 13px;
  transition: 0.3s;
}

.chat-info-box a:hover {
  color: white;
  padding-left: 5px;
}

.info-btn {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: rgba(0,255,255,0.2);
  border: 1px solid #00ffff;
  color: #00ffff;
  cursor: pointer;
  margin-right: 5px;
}





