* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: #f0f0f0;
}

a {
  color: #00ffe7;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header {
  background: #121026;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: center;
}

nav a {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
nav a:hover,
nav a.active {
  background: #00ffe7;
  color: #121026;
}

.section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 16px;
}

h1 { font-size: 3rem; }
h2 {
  font-size: 2.2rem;
  border-bottom: 3px solid #00ffe7;
  padding-bottom: 6px;
  margin-bottom: 28px;
}
h3 { font-size: 1.4rem; }

.hero-section {
  display: flex;
  align-items: center;        
  justify-content: center;    
  flex-wrap: nowrap;         
  gap: 5vw;
  height: 100vh;               
  padding: 0 5vw;
  box-sizing: border-box;
}


.hero-left {
  flex: 1;
  max-width: 550px;
}

.hero-left h1 {
  font-size: clamp(2rem, 4vw, 4rem); 
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.highlight {
  background: linear-gradient(90deg, #00f260, #0575e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 30px;
}
.hero-left p {
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 38px;
  background: #00ffe7;
  color: #121026;
  font-weight: 700;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 3px rgb(0 255 231 / 0.6);
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}

.tech-cloud {
  width: 280px;
  height: 280px;
  position: relative;
  animation: rotate3D 15s infinite linear;
  transform-style: preserve-3d;
  perspective: 800px;
}

.tech-cloud img {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

.tech-cloud img:nth-child(1) { transform: rotateY(0deg) translateZ(100px); }
.tech-cloud img:nth-child(2) { transform: rotateY(60deg) translateZ(100px); }
.tech-cloud img:nth-child(3) { transform: rotateY(120deg) translateZ(100px); }
.tech-cloud img:nth-child(4) { transform: rotateY(180deg) translateZ(100px); }
.tech-cloud img:nth-child(5) { transform: rotateY(240deg) translateZ(100px); }
.tech-cloud img:nth-child(6) { transform: rotateY(300deg) translateZ(100px); }
.tech-cloud img:nth-child(7) { transform: rotateX(90deg) translateZ(100px); }

@keyframes rotate3D {
  from { transform: rotateY(0deg) rotateX(0deg); }
  to   { transform: rotateY(360deg) rotateX(360deg); }
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.skill-group {
  background: rgba(0, 255, 231, 0.15);
  padding: 20px 30px;
  border-radius: 16px;
  min-width: 240px;
  flex: 1 1 280px;
  box-shadow: 0 4px 10px rgba(0, 255, 231, 0.2);
}
.skill-group h3 { margin-bottom: 12px; color: #00ffe7; }
.skill-group ul { list-style: inside circle; padding-left: 0; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 24px;
}
.project-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgb(0 255 231 / 0.35);
}
.project-card h3 { margin-bottom: 10px; color: #00ffe7; }

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.experience-item {
  background: rgba(0, 255, 231, 0.15);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 255, 231, 0.2);
}
.experience-item h3 { margin-bottom: 8px; color: #00ffe7; }

.contact-section {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.contact-info p {
  font-size: 1.1rem;
  margin: 8px 0;
}
.social-links a {
  margin: 0 8px;
  font-weight: bold;
  color: #00ffe7;
}

footer {
  text-align: center;
  padding: 20px;
  background: #121026;
  font-size: 0.9rem;
  color: #888;
  margin-top: 60px;
}


.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (max-width: 900px) {
  .hero-section {
    gap: 3vw;
    padding: 0 3vw;
  }
@media (max-width: 450px) {
  h1 { font-size: 2.4rem; }
  .btn { padding: 12px 28px; }
}




.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh; 
  padding: 0 50px;
}

#about {
  padding: 100px 50px; 
