
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
  cursor: none;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #02060d;
  color: white;

  /* FIXED */
  opacity: 1;

  transition: opacity 0.3s ease;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

html,
body button {
  cursor: none;
}

a,
button,
.btn {
  cursor: none;
}

/* SPLASH SCREEN */

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at center,
      #07111f 0%,
      #050b16 45%,
      #02060d 100%);

  z-index: 999999;

  transition:
    opacity .7s ease,
    visibility .7s ease;
}

.splash-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  text-align: center;
  width: min(500px, 85%);
}

.splash-screen lottie-player {
  width: 260px;
  height: 260px;
  margin: auto;

  filter:
    drop-shadow(0 0 20px #38bdf8)
    drop-shadow(0 0 40px rgba(56, 189, 248, .5));

  animation: floatBot 3s ease-in-out infinite;
}

@keyframes floatBot {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }

}

.loader-line {
  position: relative;
  width: 100%;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  overflow: hidden;

  background: rgba(255, 255, 255, .08);

  box-shadow:
    0 0 15px rgba(56, 189, 248, .08);
}

.loader-glow {
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #38bdf8,
      #67e8f9,
      transparent);

  box-shadow:
    0 0 20px #38bdf8,
    0 0 40px #38bdf8;

  animation: loaderMove 2s ease-in-out infinite;
}

@keyframes loaderMove {

  0% {
    left: -40%;
  }

  100% {
    left: 120%;
  }

}

.loading-text {
  color: #cbd5e1;
  margin-top: 25px;
  letter-spacing: 3px;
  font-size: .9rem;
  text-transform: uppercase;

  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: .4;
  }

}


@keyframes spin {
  100% { transform: rotate(360deg); }
}

@keyframes introAnim {
  0% {
    opacity: 0;
    transform: translateX(-100px);
    letter-spacing: 15px;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    letter-spacing: 3px;
  }
}

@keyframes titleAnim {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.7);
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: -1;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageReveal {
  0% {
    opacity: 0;
    transform: scale(0.5);
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes slideLeftFade{

  from{
    opacity:0;
    transform:translateX(-80px);
  }

  to{
    opacity:1;
    transform:translateX(0);
  }

}

@keyframes fadeBlur{

  from{
    opacity:0;
    transform:translateY(25px);
    filter:blur(8px);
  }

  to{
    opacity:1;
    transform:translateY(0);
    filter:blur(0);
  }

}

@keyframes glassReveal{

  0%{
    opacity:0;
    transform:translateY(60px) scale(.92);
    filter:blur(14px);
  }

  100%{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }

}

@keyframes inputReveal{

  from{
    opacity:0;
    transform:translateY(35px) scale(.96);
    filter:blur(8px);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }

}

@keyframes buttonPop{

  0%{
    opacity:0;
    transform:scale(.6);
  }

  60%{
    opacity:1;
    transform:scale(1.08);
  }

  100%{
    opacity:1;
    transform:scale(1);
  }

}

@keyframes zoomSpin{

  0%{
    opacity:0;
    transform:scale(.2) rotate(-180deg);
  }

  100%{
    opacity:1;
    transform:scale(1) rotate(0);
  }

}

@keyframes glowPulse{

  0%,100%{
    box-shadow:0 0 0 rgba(56,189,248,0);
  }

  50%{
    box-shadow:0 0 25px rgba(56,189,248,.45);
  }

}

@keyframes floatSoft{

  0%,100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-10px);
  }

}

@keyframes expandLine{

  0%{
    opacity:0;
    transform:scaleX(0);
    transform-origin:left;
  }

  100%{
    opacity:1;
    transform:scaleX(1);
    transform-origin:left;
  }

}


@keyframes projectWaveLeft{

  0%{
    opacity:0;
    visibility:hidden;
    transform:
    translateX(-120px)
    scale(.82)
    rotate(-8deg);
    filter:blur(14px);
  }

  60%{
    opacity:1;
    visibility:visible;
    transform:
    translateX(10px)
    scale(1.03)
    rotate(2deg);
    filter:blur(0);
  }

  100%{
    opacity:1;
    visibility:visible;
    transform:
    translateX(0)
    scale(1)
    rotate(0);
    filter:blur(0);
  }

}

@keyframes projectWaveRight{

  0%{
    opacity:0;
    visibility:hidden;
    transform:
    translateX(120px)
    scale(.82)
    rotate(8deg);
    filter:blur(14px);
  }

  60%{
    opacity:1;
    visibility:visible;
    transform:
    translateX(-10px)
    scale(1.03)
    rotate(-2deg);
    filter:blur(0);
  }

  100%{
    opacity:1;
    visibility:visible;
    transform:
    translateX(0)
    scale(1)
    rotate(0);
    filter:blur(0);
  }

}

@keyframes projectWaveUp{

  0%{
    opacity:0;
    visibility:hidden;
    transform:
    translateY(120px)
    scale(.78);
    filter:blur(16px);
  }

  60%{
    opacity:1;
    visibility:visible;
    transform:
    translateY(-8px)
    scale(1.04);
    filter:blur(0);
  }

  100%{
    opacity:1;
    visibility:visible;
    transform:
    translateY(0)
    scale(1);
    filter:blur(0);
  }

}


@keyframes certificateReveal{

  0%{
    opacity:0;
    visibility:hidden;
    transform:
    scale(.4)
    rotateY(90deg);
    filter:blur(16px);
  }

  55%{
    opacity:1;
    visibility:visible;
    transform:
    scale(1.06)
    rotateY(-8deg);
    filter:blur(0);
  }

  100%{
    opacity:1;
    visibility:visible;
    transform:
    scale(1)
    rotateY(0);
    filter:blur(0);
  }

}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(15px) translateX(-10px); }
}

@keyframes floatGlow1 {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(15px) translateX(-10px); }
}


@keyframes floatGlow2 {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(15px) translateX(-10px); }
}

@keyframes gradientMove {
  0% { background-position: 0%; }
  100% { background-position: 300%; }
}

@keyframes projectReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrowMove {
  0% {
    opacity: 0;
    transform: translateY(-6px) rotate(45deg);
  }
  30%, 70% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translateY(8px) rotate(45deg);
  }
}
 
@keyframes floatTop { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(15px); } }
@keyframes floatBottom { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }
@keyframes floatLeft { 0%,100% { transform: translateX(0px); } 50% { transform: translateX(15px); } }
@keyframes floatRight { 0%,100% { transform: translateX(0px); } 50% { transform: translateX(-15px); } }
@keyframes floatTopLeft { 0%,100% { transform: translate(0px,0px); } 50% { transform: translate(12px,12px); } }
@keyframes floatTopRight { 0%,100% { transform: translate(0px,0px); } 50% { transform: translate(-12px,12px); } }
@keyframes floatBottomLeft { 0%,100% { transform: translate(0px,0px); } 50% { transform: translate(12px,-12px); } }
@keyframes floatBottomRight { 0%,100% { transform: translate(0px,0px); } 50% { transform: translate(-12px,-12px); } }
@keyframes floatGitRight { 0%,100% { transform: translate(0px,0px); } 50% { transform: translate(-10px,-10px); } }
@keyframes floatGitLeft { 0%,100% { transform: translate(0px,0px); } 50% { transform: translate(10px,-10px); } }
 
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: 1s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: 1s ease;
}
.reveal-active {
  opacity: 1;
  transform: translateX(0);
}



.btn {
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.primary-btn {
  background: #38bdf8;
  color: #020617;
}

.primary-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
}

.secondary-btn {
  border: 2px solid #38bdf8;
  color: #38bdf8;
}

.secondary-btn:hover {
  background: #38bdf8;
  color: #020617;
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #38bdf8;
  z-index: 99999;
}

.scroll-top-btn {
  position: fixed;
  right: clamp(20px, 2.5vw, 35px);
  bottom: clamp(20px, 2.5vw, 40px);
   text-decoration: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
 
  /* background: linear-gradient(135deg, #0ea5e9, #2563eb); */
  color: #38bdf8;
  background-color: #38bff800;
  /* font-size: 18px; */
  display: flex;
  align-items: center;
  justify-content: center;
  
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px) scale(0.8);
  transition: all .45s ease;
}

.scroll-top-btn:hover{
  border: 2px solid #38bdf8 ;
  color: #020617;
   
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;         
  z-index: 999999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: #38bdf8;
  z-index: 9999999;
}

.cursor-outline {
  width: 33px;
  height: 33px;
  border: 2px solid #38bdf8;
  background: transparent;
  
  z-index: 9999998;
}

.cursor-outline.cursor-hover {
  width: 22px;
  height: 22px;
  background: rgba(56, 189, 248, 0.15);
  border-color: #38bdf8;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
}

.cursor-dot.cursor-hover {
  width: 6px;
  height: 6px;
  background: #fff;
}
 
 .toggle-btn{

  position:fixed;
  top:15px;
  left:10px;
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:2000;
  opacity:.9;  
  transform:scale(.92);
  transition:.4s ease;
  box-shadow:
  0 5px 18px rgba(0,0,0,.15);
}

.toggle-btn i{
  color:#38bdf8;
  font-size:20px;
  opacity:.55;
  transition:.35s ease;
}

.toggle-btn:hover{
  opacity:.65;
  background:rgba(15,23,42,.55);
  border-color:rgba(56,189,248,.2);
  transform:scale(1);
}


.toggle-btn.active{

  opacity:1;
  transform:scale(1);
  background:rgba(15,23,42,.82);
  border:1px solid rgba(56,189,248,.18);
  box-shadow:
  0 10px 30px rgba(0,0,0,.35);
}

.toggle-btn.active i{
  opacity:1;
}

.floating-menu{

  position:fixed;
  top:15px;
  left:90px;
  display:flex;
  align-items:center;
  gap:12px;
  opacity:0;
  visibility:hidden;
  transform:translateX(-30px);
  transition:.4s ease;
  z-index:1999;
}

.floating-menu.active{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

.menu-item{
  width:52px;
  height:52px;
  min-width:52px;
  border-radius:16px;
/* 
  background:rgba(15,23,42,.82);
  border:1px solid rgba(56,189,248,.14); */
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#38bdf8;
  /* backdrop-filter:blur(10px); */
  transition:.35s ease;
  box-shadow:
  0 5px 20px rgba(0,0,0,.25);
  position:relative;
}

.menu-item i{
  font-size:18px;
}


.menu-item::after{

  content:attr(data-name);
  position:absolute;
  top:-28px;
  left:50%;
  transform:
  translateX(-50%)
  translateY(10px);
  padding:5px 10px;
  border-radius:999px;
  background:#38bdf8;
  color:#02111f;
  font-size:.68rem;
  font-weight:700;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  transition:.35s ease;
  box-shadow:
  0 5px 18px rgba(56,189,248,.35);
}


.menu-item:hover{

  background:#38bdf8;
  color:#02111f;
  transform:
  translateY(-8px)
  scale(1.08);
  border-color:#38bdf8;
  box-shadow:
  0 0 22px rgba(56,189,248,.35);
}

.menu-item:hover::after{

  opacity:1;
  visibility:visible;
  transform:
  translateX(-50%)
  translateY(0);
}

@media(max-width:768px){

  .toggle-btn{
    width:50px;
    height:50px;
  }

  .floating-menu{

    left:69px;
    gap:8px;
    width:calc(100% - 100px);
    overflow-x:auto;
    padding-bottom:4px;
  }

  .floating-menu::-webkit-scrollbar{
    display:none;
  }

  .menu-item{

    width:46px;
    height:46px;
    min-width:46px;
    border-radius:14px;
  }

  .menu-item i{
    font-size:16px;
  }

}

.premium-nav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  width: 100%;
  height: 75px;
  padding: 0 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(8,15,28,.95), rgba(4,10,22,.92));
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition:
  transform .45s cubic-bezier(.22,.61,.36,1),
  opacity .35s ease,
  visibility .35s ease;
}

.premium-nav.show-nav {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.premium-nav.scrolled {
  top: 0;
  width: 100%;
  height: 70px;
  border: none;
  border-radius: 0;
  background: rgba(4, 8, 18, 0.61);
  backdrop-filter: blur(5px);
  animation: navReveal 0.5s ease;
}

@keyframes navReveal {
  from { opacity: 0; transform: translate(-50%, -40px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.hero-navbar {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 75px;
  padding: 0 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #66e3ff;
  letter-spacing: 1px;
  width: 60%;
}

.hero-logo span {
  color: #9d4dff;
}

.hero-nav-links {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  width: 100%;
}
.nav-links, .hero-nav-links {
  display: flex;
  justify-content: center;
  gap: 45px;
  list-style: none;
}

.nav-link, .hero-nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  text-transform: lowercase;
  transition: .35s ease;
}

.nav-link span, .hero-nav-link span { 
  margin-bottom: 1px;
  color: #67e8ff; 
  font-size: .72rem; 
  font-weight: 700; 
  letter-spacing: 1px; 
}

.nav-link::before, .hero-nav-link::before {
  content: "//";
  position: absolute;
  top: 50%;
  left: -34px;
  transform: translateY(-50%) skewX(-10deg);
  color: #4fdcff;
  font-size: 1.5rem;
  opacity: .95;
  transition: .35s ease;
}

.nav-link:hover, .nav-link.active,
.hero-nav-link:hover, .hero-nav-link.active {
  color: #67e8ff;
}

.nav-link:hover::before, .hero-nav-link:hover::before {
  transform: translateY(-50%) skewX(-10deg) translateX(-3px);
}

.nav-link::after, .hero-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #67e8ff;
  transition: .35s ease;
}

.nav-link:hover::after, .nav-link.active::after,
.hero-nav-link:hover::after, .hero-nav-link.active::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(100px, 10vh, 140px) 5% 80px;
  gap: clamp(40px, 6vw, 80px);
  overflow: visible;
  flex-shrink: 0;
}


.hero-left { flex: 1; z-index: 2; }
.hero-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; }

.intro {
  color: #38bdf8;
  letter-spacing: 3px;
  margin-bottom: 20px;
  animation: introAnim 1s ease forwards 0.3s;
}

.hero-left h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 16px;
  background: linear-gradient(to right, #fff, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleAnim 1.2s ease forwards 0.7s;
}

.hero-left h2 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: #cbd5e1;
  margin-bottom: 24px;
  animation: fadeUp 1s ease forwards 1.1s;
}

.hero-text {
  max-width: 600px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 40px;
  animation: fadeUp 1s ease forwards 1.5s;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeUp 1s ease forwards 1.9s;
}

.hero-image {
  position: relative;
  animation: imageReveal 1.5s ease forwards 0.5s;
}

.hero-image img {
  width: clamp(260px, 38vw, 480px);
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #38bdf8;
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.4);
  transition: all 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.06) rotate(2deg);
  box-shadow: 0 0 60px rgba(56,189,248,0.5);
}
.btn {
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.primary-btn { background: #38bdf8; color: #020617; }
.primary-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
}

.secondary-btn {
  border: 2px solid #38bdf8;
  color: #38bdf8;
}

.secondary-btn:hover {
  background: #38bdf8;
  color: #020617;
}

.social-icons {
  display: flex;
  gap: 20px;
  animation: fadeUp 1s ease forwards 2.3s;
}
 
.social-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #38bdf8;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-8px);
  background: #38bdf8;
  color: #020617;
}
.floating-tech {
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: rgba(15,23,42,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #38bdf8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 1.1s ease;
  z-index: 3;
}

.hero-image:hover .floating-tech {
  opacity: 1;
  visibility: visible;
}

.floating-tech:hover {
  background: #38bdf8;
  color: #020617;
  box-shadow: 0 0 35px rgba(56,189,248,0.7);
  transform: scale(1.12);
}

.html   { top: -95px; left: 38%; animation: floatTop 5s ease-in-out infinite; }
.css    { top: -8%; right: -10px; animation: floatTopRight 5s ease-in-out infinite; }
.js     { top: 26%; right: -85px; animation: floatRight 5s ease-in-out infinite; }
.react  { bottom: 22%; right: -80px; animation: floatBottomRight 5s ease-in-out infinite; }
.java   { bottom: -85px; left: 42%; animation: floatBottom 5s ease-in-out infinite; }
.spring { bottom: 20%; left: -80px; animation: floatBottomLeft 5s ease-in-out infinite; }
.mysql  { top: 26%; left: -85px; animation: floatLeft 5s ease-in-out infinite; }
.android{ top: -8%; left: -8px; animation: floatTopLeft 5s ease-in-out infinite; }
.git    { bottom: -22px; right: 12px; animation: floatGitRight 5s ease-in-out infinite; }
.github { bottom: -22px; left: 12px; animation: floatGitLeft 5s ease-in-out infinite; }



.hero {
  padding: clamp(100px, 10vh, 140px) 5% 80px;
  gap: clamp(40px, 6vw, 80px);
}
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 30;
}

.scroll-mouse {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.scroll-mouse:hover {
  transform: scale(1.12) translateY(-6px);
}
.intro,
.hero-left h1,
.hero-left h2,
.hero-text,
.hero-buttons,
.social-icons,
.hero-image {

  opacity: 0;

}


.intro{
  animation:introAnim 1s ease forwards .3s;
}

.hero-left h1{
  animation:titleAnim 1.2s ease forwards .7s;
}

.hero-left h2{
  animation:fadeUp 1s ease forwards 1.1s;
}

.hero-text{
  animation:fadeUp 1s ease forwards 1.5s;
}

.hero-buttons{
  animation:fadeUp 1s ease forwards 1.9s;
}

.social-icons{
  animation:fadeUp 1s ease forwards 2.3s;
}

.hero-image{
  animation:imageReveal 1.5s ease forwards .5s;
}

.arrow{
  width:10px;
  height:10px;

  border-right:2px solid #67e8ff;
  border-bottom:2px solid #67e8ff;

  rotate:45deg;

  animation:arrowMove 1.6s ease-in-out infinite;
}

@keyframes arrowMove{

  0%{
    translate:0 -6px;
    opacity:.4;
  }

  50%{
    translate:0 6px;
    opacity:1;
  }

  100%{
    translate:0 -6px;
    opacity:.4;
  }

}



@media (min-width: 1600px) {
  .hero {
    max-width: 1550px;
    padding: clamp(120px, 12vh, 160px) 6% 100px;
    gap: 90px;
  }
  
  .hero-image img {
    width: 500px;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .hero {
    padding: 65px 5% 50px;      
    gap: clamp(45px, 5vw, 70px);
  }
  
  .hero-image img {
    width: clamp(380px, 32vw, 460px);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero {
    padding: 70px 5% 55px;  
    gap: 45px;
    min-height: 100vh;
    align-items: center;
  }

  .hero-left h1 {
    font-size: clamp(2.8rem, 4.5vw, 3.6rem);
  }

  .hero-left h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  }

  .hero-text {
    max-width: 520px;
    margin-bottom: 32px;
  }

  .hero-buttons {
    gap: 18px;
    margin-bottom: 32px;
  }

  .btn {
    padding: 13px 26px;
    font-size: 0.95rem;
  }

  .hero-image img {
    width: clamp(320px, 38vw, 390px);
  }

  .hero-navbar,
  .premium-nav {
    padding: 0 40px;
    height: 72px;
  }

  .nav-links,
  .hero-nav-links {
    gap: 35px;
  }

  .floating-tech {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 110px 6% 80px;
    gap: 50px;
  }

  .hero-right {
    order: -1;
    justify-content: center;
  }

  .hero-image img {
    width: clamp(280px, 45vw, 340px);
  }

  .hero-left h1 {
    font-size: clamp(2.6rem, 6vw, 3.2rem);
  }

  .hero-left h2 {
    font-size: clamp(1.4rem, 4vw, 1.9rem);
  }

  .hero-buttons {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .social-icons {
    justify-content: center;
    gap: 18px;
  }

  .floating-tech {
    display: none !important;
  }

  .hero-navbar,
  .premium-nav {
    padding: 0 30px;
    height: 70px;
  }

  .nav-links,
  .hero-nav-links {
    gap: 25px;
  }
}

@media (min-width: 767px) {
  .toggle-btn {
    display: none;
  }
}


@media (max-width: 767px) {
  .premium-nav,
  .hero-navbar {
    display: none;
  }
  .scroll-indicator{
    display: none;
  }

  .toggle-btn {
    display: flex;
  }

  .hero {
    padding: 60px 20px 80px;
    gap: 35px;
    min-height: auto;
  }

  .hero-left h1 {
    font-size: clamp(2.2rem, 7.5vw, 2.8rem);
    margin-bottom: 12px;
  }

  .hero-left h2 {
    font-size: clamp(1.25rem, 4.5vw, 1.55rem);
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    gap: 8px;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    margin-bottom: 15px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 0.7rem;
    border-radius: 5px;
  }

  .hero-image img {
    width: clamp(240px, 55vw, 290px);
  }

  .social-icons {
    gap: 16px;
  }

  .social-icons a {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .cursor-dot,
  .cursor-outline {
    display: none;
  }

  .floating-tech {
    display: none !important;
  }

  .scroll-indicator {
    bottom: 10px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 60px 18px 80px;
    gap: 28px;
  }
    .scroll-indicator{
    display: none;
  }

  .hero-image img {
    width: 220px;
  }

  .hero-left h1 {
    font-size: clamp(2rem, 8.5vw, 2.5rem);
  }

  .hero-left h2 {
    font-size: 1.15rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .btn { 
    padding: 10px 16px;
    font-size: 0.7rem;
  }

  .social-icons {
    gap: 14px;
  }

  .social-icons a {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .scroll-indicator {
    bottom: 80px;
  }
}

@media (min-width: 1401px) {
  .hero {
    margin: 0 auto;
  }
}

 

.about-section {
  position: relative;
  padding: 40px 7%;
  overflow: hidden;
  background: #020617;
}

.about-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.about-bg-1 {
  width: 320px;
  height: 320px;
  background: rgba(56, 189, 248, .14);
  top: -100px;
  left: -100px;
}

.about-bg-2 {
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, .14);
  bottom: -100px;
  right: -100px;
}

.about-top {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.about-tag {
  color: #38bdf8;
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 22px;
}

.about-main-heading {
  color: white;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 800;
  max-width: 100%;
  margin: auto;
  margin-bottom: 15px;
}

.about-main-heading span {
  background: linear-gradient(to right, #38bdf8, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300%;
  animation: gradientMove 6s linear infinite;
}

.about-subheading {
  max-width: 100%;
  margin: auto;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.9;
}

.about-main-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  margin-bottom: 10px;
}
.about-left-content {
  width: 100%;
}

.about-typing-box {
  position: relative;
  padding-left: 28px;
  margin-bottom: 35px;
}

.typing-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(to bottom, #38bdf8, transparent);
}

.about-typing-text {
  color: rgba(255, 255, 255, .78);
  line-height: 2;
  font-size: 16px;
}

.about-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-btn {
  padding: 15px 24px;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: .4s ease;
}

.primary-about-btn {
  background: #38bdf8;
  color: #08111f;
}

.primary-about-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(56, 189, 248, .35);
}

.secondary-about-btn {
  border: 1px solid rgba(255, 255, 255, .12);
  color: white;
  background: rgba(255, 255, 255, .03);
}

.secondary-about-btn:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-5px);
}

.about-right-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.developer-lottie {
  width: 100%;
  max-width: 400px;
  height: 300px;
  filter: drop-shadow(0 0 40px rgba(56, 189, 248, .22));
  animation: floatDeveloper 4s ease-in-out infinite;
}

.about-bottom-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mini-about-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15, 23, 42, .88), rgba(8, 15, 35, .95));
  border: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
  transition: .55s ease;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
}

.mini-about-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(130deg, rgba(56, 189, 248, .18), transparent, rgba(139, 92, 246, .14));
  opacity: 0;
  transition: .4s;
}

.mini-about-card:hover::before {
  opacity: 1;
}

.mini-about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, .25);
  box-shadow: 0 0 35px rgba(56, 189, 248, .12);
}

.mini-icon {
  min-width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, .08);
  border: 1px solid rgba(56, 189, 248, .15);
}

.mini-icon i {
  font-size: 22px;
  color: #38bdf8;
}

.mini-card-content h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 8px;
}

.mini-card-content p {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.7;
}

 
@keyframes floatDeveloper {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media(max-width: 1200px) {
  .about-bottom-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 980px) {
  .about-main-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-right-content {
    order: -1;
  }
}

@media(max-width: 768px) {
  .about-section {
    padding: 50px 5%;
  }
  .about-main-heading {
    font-size: 46px;
  }
  .about-subheading {
    font-size: 16px;
  }
  .about-buttons {
    gap: 8px;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    margin-bottom: 15px;
  }
  .about-btn {
    padding: 12px 16px;
    font-size: 0.7rem;
    border-radius: 5px;
  }
  .about-bottom-cards {
    position: relative;
    width: 100%;
    height: 230px;
    margin-top: 30px;
    overflow: hidden;
  }
  .mini-about-card {
    position: absolute;
    width: 280px;
    min-height: 105px;
    padding: 18px 16px;
    border-radius: 24px;
    backdrop-filter: blur(14px);
    transition: .4s ease;
  }
  .mini-card-content p {
    font-size: 0.6rem;
  }
  .mini-about-card:nth-child(4) {
    border: 1px solid #38bdf8;
    top: 15px;
    left: 20px;
    transform: rotate(-5deg);
    z-index: 1;
    opacity: .45;
  }
  .mini-about-card:nth-child(3) {
    border: 1px solid #38bdf8;
    top: 40px;
    left: 35px;
    transform: rotate(4deg);
    z-index: 2;
    opacity: .65;
  }
  .mini-about-card:nth-child(2) {
    border: 1px solid #38bdf8;
    left: 50px;
    top: 65px;
    transform: rotate(-3deg);
    z-index: 3;
    opacity: .82;
  }
  .mini-about-card:nth-child(1) {
    border: 1px solid #38bdf8;
    left: 65px;
    top: 90px;
    transform: rotate(0deg);
    z-index: 4;
    opacity: 1;  
  }
.card-pos-0 {
  border: 1px solid #38bdf8;
  left: 65px;
  top: 90px;
  transform: rotate(0deg);
  z-index: 4;
  opacity: 1;
}

.card-pos-1 {
  border: 1px solid #38bdf8;
  left: 50px;
  top: 65px;
  transform: rotate(-3deg);
  z-index: 3;
  opacity: .82;
}

.card-pos-2 {
  border: 1px solid #38bdf8;
  top: 40px;
  left: 35px;
  transform: rotate(4deg);
  z-index: 2;
  opacity: .65;
}

.card-pos-3 {
  border: 1px solid #38bdf8;
  top: 15px;
  left: 20px;
  transform: rotate(-5deg);
  z-index: 1;
  opacity: .45;
}
}

@media(max-width: 580px) {

.card-pos-0 {
  border: 1px solid #38bdf8;
  left: 65px;
  top: 90px;
  transform: rotate(0deg);
  z-index: 4;
  opacity: 1;
}

.card-pos-1 {
  border: 1px solid #38bdf8;
  left: 50px;
  top: 65px;
  transform: rotate(-3deg);
  z-index: 3;
  opacity: .82;
}

.card-pos-2 {
  border: 1px solid #38bdf8;
  top: 40px;
  left: 35px;
  transform: rotate(4deg);
  z-index: 2;
  opacity: .65;
}

.card-pos-3 {
  border: 1px solid #38bdf8;
  top: 15px;
  left: 20px;
  transform: rotate(-5deg);
  z-index: 1;
  opacity: .45;
}
  .about-main-heading {
    font-size: 34px;
  }
  .mini-about-card {
    padding: 20px;
  }
}


.showcase-section{
  padding:90px 7%;
  overflow:hidden;
}

.showcase-container{
  max-width:1400px;
  margin:auto;
}
.showcase-header{
  text-align:center;
  margin-bottom:20px;
}
.showcase-small-title{
  font-size:.95rem;
  font-weight:600;
  letter-spacing:3px;
  color:#38bdf8;
  margin-bottom:10px;
}
.showcase-title span {
  background: linear-gradient(to right, #38bdf8, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300%;
  animation: gradientMove 6s linear infinite;
}
.showcase-title{
  font-size:40px;
  font-weight:700;
  line-height:1.1;
  color:#fff;
  margin-bottom:10px;
}
.showcase-subtitle{
  color:#94a3b8;
  line-height:1.7;
  max-width:800px;
  margin:auto;
} 
.showcase-tabs{
  display:flex;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:50px;
}
.tab-btn{
  padding:13px 34px;
  background:#0f172a;
  color:#cbd5e1;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
}
.tab-btn:hover{
  border-color:#38bdf8;
  color:#fff;
}
.tab-btn.active{
  background:#38bdf8;
  color:#02111f;
  border-color:#38bdf8;
}
.showcase-views{
  position:relative;
}

.showcase-view{
  display:none;
}

.showcase-view.active{
  display:block;
}

@media(max-width:768px){

  .showcase-section{
    padding:70px 5%;
  }

  .showcase-tabs{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    flex-wrap:nowrap;
    gap:5px;
    overflow-x:auto;
  }

  .tab-btn{
    width:100px;
    padding:12px ;
    font-size:.75rem;
    text-align: center;
    white-space:nowrap;
  }

}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:28px;
}
.project-card{
  position:relative;
  overflow:hidden;
  height: 100%;
  border-radius:6px;
  background:#07111f;
  border:1px solid rgba(56,189,248,.18);
  transition:.3s ease;
}

.project-card:hover{
  border-color:#38bdf8;
  box-shadow:0 0 25px rgba(56,189,248,.12);
}
.project-image-wrapper{
  overflow:hidden;
}
.project-image{
  width:100%;
  height:35%;
  height: 180px;
  object-fit:cover;
  display:block;
  transition:transform .6s ease;
}
.project-image-wrapper:hover .project-image{
  transform:scale(1.88);
}
.project-content{
  position:relative;
  height: 65%;
  padding:16px;
  background:#07111f;
  overflow:hidden;
  height: auto;
}
.project-content:hover .project-overlay{
  opacity:1;
  visibility:visible;
}
.project-type{
  display:inline-flex;
  align-items:center;
  padding:8px 18px;
  border-radius:999px;
  background:#0b2440;
  color:#38bdf8;
  font-size:.82rem;
  font-weight:600;
  margin-bottom:16px;
}
.project-content h3{
  font-size:1.2rem;
  line-height:1.2;
  margin-bottom:10px;
  color:#fff;
}
.project-content p{
  color:#94a3b8;
  line-height:1.5;
  font-size:.88rem;
  margin-bottom:14px;
}
.project-stack{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.project-stack span{
  padding:5px 10px;
  border-radius:999px;
  background:#0f172a;
  border:1px solid rgba(255,255,255,.08);
  color:#cbd5e1;
  font-size:.72rem;
}
 
.project-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  backdrop-filter:blur(4px);
  opacity:0;
  visibility:hidden;
  transition:.35s ease;
}
.overlay-btn{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  text-decoration:none;
  font-size:.72rem;
  font-weight:600;
  backdrop-filter:blur(8px);
  transition:.3s ease;
}

.overlay-btn i{
  font-size:1rem;
}

.overlay-btn:hover{
  background:#38bdf8;
  color:#02111f;
  transform:scale(1.08);
}
.showcase-tabs-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:50px;
  flex-wrap:wrap;
}
.view-all-btn{
  display:flex;
  align-items:center;
  gap:12px;
  padding-bottom: 15px;
  background:transparent;
  border:none;
  outline:none;
  color:#67e8f9;
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.5px;
  cursor:pointer;
  transition:.3s ease;
}

.view-all-btn i{
  transition:.35s ease;
  font-size:1rem;
}

.view-all-btn:hover i{
  transform:translateX(6px);
}

.view-all-btn:hover{
  color:#38bdf8;
}

.collapsed-projects{
  display:none;
}

.projects-grid.show-all .collapsed-projects{
  display:block;
}

.project-stack{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

.project-stack span{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#0f172a;
  border:1px solid rgba(56,189,248,.18);
  color:#38bdf8;
  font-size:1rem;
  transition:.35s ease;
  box-shadow:
  0 0 0 rgba(56,189,248,0);
}

.project-stack span:hover{
  transform:translateY(-4px) scale(1.08);
  border-color:#38bdf8;
  background:#081120;
  box-shadow:
  0 0 18px rgba(56,189,248,.28);
}

.project-stack span i{
  text-shadow:
  0 0 14px rgba(56,189,248,.55);
}

@media(max-width:768px){

  .project-stack span{
    width:38px;
    height:38px;
    font-size:.9rem;
  }

}

@media(max-width:768px){

  .showcase-tabs-wrapper{
    flex-direction:column;
    align-items:flex-start;
  }

  .view-all-btn{
    margin-left:8px;
  }

}

@media(max-width:768px){

  .projects-grid{
    grid-template-columns:1fr;
  }

  .project-image{
    height:220px;
  }

  .overlay-btn{
    width:64px;
    height:64px;
    font-size:.65rem;
  }

  .project-content h3{
    font-size:1rem;
  }

}
 

.certificates-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.certificate-card{
  background:#07152f;
  border-radius:1px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  transition:.4s;
}

.certificate-card:hover{
  transform:translateY(-6px);
  border-color:#67e8f9;
}
.certificate-image-wrapper{
  position:relative;
  height:150px;
  overflow:hidden;
}

.certificate-image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.certificate-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  transition:.4s;
}

.certificate-image-wrapper:hover .certificate-overlay{
  opacity:1;
}
.view-certificate-btn{
  padding:10px 18px;
  border:none;
  border-radius:30px;
  background:#67e8f9;
  color:#000;
  font-weight:700;
  cursor:pointer;
}
.certificate-content{
  padding:14px;
}

.certificate-content h3{
  color:#fff;
  font-size:15px;
  margin-bottom:8px;
}

.certificate-content p{
  color:#aab7c7;
  font-size:12px;
  line-height:1.5;
}
.hidden-certificate{
  display:none;
}

.hidden-certificate.show-certificate{
  display:block;
}
.certificate-popup{
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: 80vh;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.certificate-popup.active{
  opacity: 1;
  visibility: visible;
}

.certificate-popup-content{
  position: relative;
  width: 70%;
  max-width: 950px;
  transform: scale(0.8);
  transition: 0.4s ease;
}

.certificate-popup.active
.certificate-popup-content{
  transform: scale(1);
}

.certificate-popup-content img{
  width: 100%;
  display: block;
  border-radius: 20px;
  border: 3px solid #38bdf8;
  box-shadow:
  0 0 40px rgba(56,189,248,0.4);
}



#closeCertificatePopup{
  position: absolute;
  top: -60px;
  right: -10px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #38bdf8;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow:
  0 0 20px rgba(56,189,248,0.5);
}

#closeCertificatePopup:hover{
  transform: rotate(90deg) scale(1.1);
  background: white;
}

@media(max-width:1200px){

  .certificates-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:768px){

  .certificates-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:500px){

  .certificates-grid{
    grid-template-columns:1fr;
  }

}

#tech-orbit-view-v3{
  width:100%;
  display:none;
  margin-top:40px;
  perspective:2500px;
}

#tech-orbit-view-v3.active-orbit{
  display:block;
}

.tech-orbit-wrap-v3{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  transform-style:preserve-3d;
}

.tech-row-v3{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.tech-box-v3{
  width:68px;
  height:68px;
  border-radius:18px;
  background:linear-gradient(145deg,rgba(8,15,35,.95), rgba(5,10,25,.96) );
  border:1px solid rgba(56,189,248,.12);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:2px;
  gap:6px;
  position:relative;
  overflow:hidden;
  backdrop-filter:blur(12px);
  opacity:0;
  transform:
  scale(.1)
  translateZ(-500px)
  rotateY(180deg);
  transition:
  transform .9s cubic-bezier(.16,.84,.44,1.3),
  opacity .8s ease,
  box-shadow .4s ease;

}


.tech-box-v3.show-wave{
  opacity:1;
  transform:scale(1)translateZ(0)rotateY(0deg);

}

.tech-box-v3::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:radial-gradient(circle at center,rgba(56,189,248,.35),transparent 70% );
  opacity:0;
  transition:.4s;
}

.tech-box-v3:hover::before{
  opacity:1;
}

.tech-box-v3:hover{

  transform:
  scale(1.12)
  translateY(-6px)
  rotateX(10deg);
  box-shadow: 0 0 28px rgba(56,189,248,.28);

}

.tech-box-v3 i{

  font-size:30px;
  /* color:#38bdf8; */
  /* text-shadow:
  0 0 18px rgba(56,189,248,.8); */

}

.tech-box-v3 span{

  color:white;
  font-size:9px;
  font-weight:700;
  letter-spacing:.8px;
}



.tech-core-v3{

  width:78px;
  height:78px;
  border-radius:24px;
  box-shadow:
  0 0 60px rgba(56,189,248,.35);

}

.tech-core-v3 i{
  font-size:32px;
}

.tech-core-v3 span{
  font-size:8px;
}

#tech-orbit-view-v3{
  display:none;
}

#tech-orbit-view-v3.active{
  display:block;
}




@media(max-width:768px){

  .tech-box-v3{
    width:64px;
    height:64px;
  }

  .tech-box-v3 i{
    font-size:18px;
  }

}


@media(max-width:768px){

  .projects-grid{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:18px;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
  }

  .projects-grid::-webkit-scrollbar{
    height:6px;
  }

  .projects-grid::-webkit-scrollbar-thumb{
    background:#38bdf8;
    border-radius:20px;
  }

  .project-card{
    width:290px;
    flex:0 0 auto;
    scroll-snap-align:start;
  }
 
  .projects-grid.show-all{
    display:grid;
    grid-template-columns:1fr;
    overflow:visible;
  }

  .projects-grid.show-all .project-card{
    min-width:100%;
  }

  .certificates-grid{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:16px;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
  }

  .certificates-grid::-webkit-scrollbar{
    height:6px;
  }

  .certificates-grid::-webkit-scrollbar-thumb{
    background:#38bdf8;
    border-radius:20px;
  }

  .certificate-card{
    min-width:240px;
    flex:0 0 auto;
    scroll-snap-align:start;
  }

}



 
.resume-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:#000;
    z-index:2147483647;
    justify-content:center;
    align-items:center;
}

.resume-modal-content{
    width:100%;
    height:100%;
    background:#fff;
}

.resume-modal-content iframe{
    width:100%;
    height:100%;
    border:none;
}

.close-btn{
    position:fixed;
    top:15px;
    right:20px;
    z-index:2147483647;
}

.close-btn{
    position: fixed;
    top: 20px;
    right: 25px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background-color: #38bdf8;
    color: black;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2147483647;
    
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.close-btn:hover{
    transform: scale(1.12) rotate(90deg);
    background-color: white;
    border: 1px solid #38bdf8;
    color: #38bdf8;
}

.close-btn:active{
    transform: scale(.95);
}






 .contact-section {
  position: relative;
  width: 100%;
  padding: 80px 5% 0px;         
  background: 
    radial-gradient(circle at top left,
      rgba(56,189,248,.08),
      transparent 30%),
    radial-gradient(circle at bottom right,
      rgba(14,165,233,.08),
      transparent 35%),
    linear-gradient(135deg, #020617 0%, #061120 45%, #020617 100%);
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
 
  
}
.contact-screen {
  display: flex;
  align-items: center;        
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  background-color: transparent;   
}
.contact-left {
  position: relative;
  flex: 1 1 340px;
  max-width: 420px;
  background: linear-gradient(145deg, rgba(12,20,38,.98), rgba(5,10,20,.98));
  border: 1px solid rgba(56,189,248,.10);
  padding: clamp(30px, 4vw, 55px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 0.5px #38bdf8;
}
 
.contact-floating-shape{
  position:absolute;
  top:58px;
  right:-14px;
  width:18px;
  height:18px;
  border:3px solid #38bdf8;
  transform:rotate(25deg);
  animation:floatShape 4s ease-in-out infinite;
}

@keyframes floatShape{

  0%{
    transform:
    rotate(25deg)
    translateY(0);
  }

  50%{
    transform:
    rotate(25deg)
    translateY(-8px);
  }

  100%{
    transform:
    rotate(25deg)
    translateY(0);
  }

}
 
.contact-mini-title{
  color:#38bdf8;
  font-size:12px;
  font-weight:700;
  letter-spacing:5px;
  margin-bottom:25px;
}
 
.contact-left h2{
  font-size:clamp(2rem,5vw,2rem);
  line-height:1.1;
  color:#fff;
  font-weight:800;
  margin-bottom:30px;
}

.contact-left h2 span{
  color:#38bdf8;
}

.contact-text{
  color:rgba(255,255,255,.72);
  font-size:15px;
  line-height:2;
  max-width:100%;
  margin-bottom:40px;
}

.contact-info-mini{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:35px;
}

.mini-icon-box{
  width:58px;
  height:58px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
  rgba(56,189,248,.08);
  border:
  1px solid rgba(56,189,248,.16);
}

.mini-icon-box i{
  color:#38bdf8;
  font-size:22px;
}

.contact-info-mini h4{
  color:#fff;
  font-size:18px;
  margin-bottom:6px;
}

.contact-info-mini p{
  color:rgba(255,255,255,.52);
  font-size:13px;
  line-height:1.7;
}
.contact-divider{
  width:100%;
  height:4px;
  background:
  linear-gradient(
    to right,
    #38bdf8,
    rgba(56,189,248,.15),
    transparent
  );
  margin-bottom:35px;
}

.contact-socials{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}

.contact-socials a{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:
  rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#38bdf8;
  font-size:20px;
  transition:.35s ease;
}

.contact-socials a:hover{
  transform:translateY(-6px);
  background:#38bdf8;
  color:#020617;
  box-shadow:0 0 24px rgba(56,189,248,.35);
}

.contact-right {
  position: relative;
  flex: 1 1 500px;
  max-width: 850px;
  padding: clamp(25px, 4vw, 40px) clamp(35px, 6.5vw, 70px);
  background: linear-gradient(145deg, rgba(25,40,75,.98), rgba(5,10,20,.98));
  overflow: visible;
  box-shadow: 0 0 1px #38bdf8;
}

.contact-bg-overlay{
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.78);
  backdrop-filter:blur(4px);
}
.contact-form-box{
  position:relative;
  z-index:2;
  width:100%;
  max-width:640px;
}
.contact-form-box h3{
  color:#fff;
  font-size:clamp(1.8rem,4vw,1.5rem);
  font-weight:800;
  margin-bottom:20px;
}

.modern-contact-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.dual-inputs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.input-box{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.input-box span{
  color:rgba(255,255,255,.65);
  font-size:13px;
}

.input-box input,
.input-box textarea{
  width:100%;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.12);
  padding:10px 20px;
  color:#fff;
  outline:none;
  font-size:15px;
  transition:.35s ease;
}

.input-box input:focus,
.input-box textarea:focus{
  border-color:#38bdf8;
  background: rgba(56,189,248,.03);
  box-shadow: 0 0 20px rgba(56,189,248,.15);
}

.input-box textarea{
  resize:none;
  min-height:100px;
}

.form-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  margin-top:8px;
}

.checkbox-area{
  display:flex;
  align-items:center;
  gap:12px;
  color:rgba(255,255,255,.6);
  font-size:13px;
}

.checkbox-area input{
  width:18px;
  height:18px;
  accent-color:#38bdf8;
}

.form-bottom button{
  border:none;
  background:#38bdf8;
  color:#020617;
  padding:14px 33px;
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
  cursor:pointer;
  transition:.35s ease;
}

.form-bottom button:hover{
  transform:translateY(-6px);
  box-shadow:0 0 20px rgba(56,189,248,.4);
  color: #38bdf8;
  border: 1.5px solid #38bdf8;
  background-color: rgba(0, 0, 0, 0);
}

.footer {
  margin-top: 20px;               
  padding: 25px  20px;
  text-align: center;
  width: 100%;
  /* background: rgba(5, 14, 29, 0.95);
  border-top: 1px solid rgba(56, 189, 248, 0.12); */
}

.footer p {
  color: #94a3b8;
  font-size: 15px;
  margin: 0;
}

.footer p:hover{
  transform:translateY(-6px);
  color: red;

}


@media (max-width: 992px) {
  .contact-screen {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 5% 30px;
  }

  .contact-screen {
    flex-direction: column;
    align-items: center;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
    width: 100%;
  }

  .contact-right h3{
    font-size: 1.2rem;
  }

  .input-box input,
.input-box textarea{
  font-size: 10px;
}

 .input-box span{
  font-size:11px;
}

.checkbox-area{
 

  font-size:11px;
}

.checkbox-area input{
  width:13px;
  height:13px;

  accent-color:#38bdf8;
}

.form-bottom button{
  border:none;

  background:#38bdf8;

  color:#020617;

  padding:14px 33px;

  font-size:12px;
  font-weight:800;

  letter-spacing:1px;

  cursor:pointer;

  transition:.35s ease;
}
  .footer {
    margin-top: 20px;
    padding: 10px 15px 10px;
  }

  .footer p{
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 5% 25px;
  }
}

.contact-left,
.contact-right,
.contact-mini-title,
.contact-left h2,
.contact-text,
.contact-info-mini,
.contact-divider,
.contact-socials,
.contact-socials a,
.contact-form-box h3,
.footer,
.footer p{

  opacity:0;
  visibility:hidden;

}

.show-contact .contact-left,
.show-contact .contact-right,
.show-contact .contact-mini-title,
.show-contact .contact-left h2,
.show-contact .contact-text,
.show-contact .contact-info-mini,
.show-contact .contact-divider,
.show-contact .contact-socials,
.show-contact .contact-socials a,
.show-contact .contact-form-box h3,
.show-contact .dual-inputs,
.show-contact .input-box,
.show-contact .input-box span,
.show-contact .input-box input,
.show-contact .input-box textarea,
.show-contact .form-bottom,
.show-contact .form-bottom button,
.show-contact .checkbox-area,
.show-contact .footer,
.show-contact .footer p{

  visibility:visible;

}


.show-contact .contact-left{
  animation:glassReveal 1.4s cubic-bezier(.22,.61,.36,1) forwards;
}

.show-contact .contact-mini-title{
  animation:introAnim 1s ease forwards .3s;
}

.show-contact .contact-left h2{
  animation:titleAnim 1.3s ease forwards .5s;
}

.show-contact .contact-text{
  animation:fadeBlur 1.2s ease forwards .9s;
}

.show-contact .contact-info-mini:nth-of-type(1){
  animation:slideLeftFade 1s ease forwards 1.1s;
}

.show-contact .contact-info-mini:nth-of-type(2){
  animation:slideLeftFade 1s ease forwards 1.35s;
}

.show-contact .contact-divider{
  animation:expandLine 1.2s ease forwards 1.5s;
}

.show-contact .contact-socials{
  animation:fadeUp 1s ease forwards 1.7s;
}

.show-contact .contact-socials a:nth-child(1){
  animation:zoomSpin .9s ease forwards 1.9s;
}

.show-contact .contact-socials a:nth-child(2){
  animation:zoomSpin .9s ease forwards 2.1s;
}

.show-contact .contact-socials a:nth-child(3){
  animation:zoomSpin .9s ease forwards 2.3s;
}

.show-contact .contact-right{
  animation:imageReveal 1.3s ease forwards .6s;
}

.show-contact .contact-form-box h3{
  animation:titleAnim 1s ease forwards .9s;
}

.show-contact .dual-inputs:nth-of-type(1){
  animation:fadeUp 1s ease forwards 1.1s;
}

.show-contact .dual-inputs:nth-of-type(2){
  animation:fadeUp 1s ease forwards 1.3s;
}

.show-contact .input-box span{
  animation:fadeBlur .8s ease forwards 1.5s;
}

.show-contact .input-box input{
  animation:inputReveal 1s ease forwards 1.7s;
}

.show-contact .input-box textarea{
  animation:inputReveal 1s ease forwards 1.9s;
}

.show-contact .checkbox-area{
  animation:fadeUp .9s ease forwards 2s;
}

.show-contact .form-bottom button{
  animation:
  buttonPop 1s ease forwards 2.2s,
  glowPulse 3s ease infinite 3s;
}

.show-contact .footer{
  animation:fadeUp 1s ease forwards 2.4s;
}

.show-contact .footer p{
  animation:fadeBlur 1s ease forwards 2.6s;
}
 