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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
body{
    font-family: 'Inter', sans-serif;
}

h1,h2,h3,h4,h5,h6,.logo{
    font-family:'Poppins',sans-serif;
}
.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

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

.cursor {
  width: 22px;
  height: 22px;
  border: 2px solid #38bdf8;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  display: none;
}


.top-banner {
    display:block;}

.header {
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(14px);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 25px;
  font-weight: 800;
}

.logo span {
  color: #38bdf8;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 24px;
  font-size: 15px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #38bdf8;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.hero {
  min-height: 95vh;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.25), transparent 35%),
    linear-gradient(135deg, #020617, #111827, #1e3a8a);
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 50px;
  align-items: center;
}

.tag {
  display: inline-block;
  background: rgba(56,189,248,0.15);
  color: #7dd3fc;
  padding: 8px 14px;
  border: 1px solid rgba(56,189,248,0.4);
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero h2 {
  font-size: 25px;
  color: #bae6fd;
  margin-bottom: 20px;
}

.hero p {
  max-width: 720px;
  font-size: 18px;
  color: #dbeafe;
}

.hero-buttons {
  margin-top: 35px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  margin: 6px;
  font-weight: 700;
  transition: 0.3s;
}

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

.primary:hover {
  background: #0ea5e9;
  transform: translateY(-3px);
}

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

.secondary:hover {
  background: #38bdf8;
  color: #020617;
  transform: translateY(-3px);
}

.hero-dashboard {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 25px;
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.dashboard-card {
  background: rgba(255,255,255,0.12);
  padding: 25px;
  border-radius: 18px;
  margin-bottom: 20px;
}

.dashboard-card h3 {
  color: #38bdf8;
  font-size: 24px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-grid div {
  background: rgba(255,255,255,0.1);
  padding: 18px;
  border-radius: 15px;
  text-align: center;
}

.mini-grid strong {
  display: block;
  font-size: 30px;
  color: #38bdf8;
}

.section {
  padding: 90px 0;
}

.light {
  background: #f8fafc;
}

.dark {
  background: #020617;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 45px;
  color: inherit;
}

.section-title.left {
  text-align: left;
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 45px;
  align-items: center;
}

.about-box {
  background: #f8fafc;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.about-box ul {
  margin-top: 15px;
  padding-left: 20px;
}

.services-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.project-card,
.service-card {
  background: #fff;
  color: #111827;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.service-card {
  background: #111827;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

.service-card span {
  color: #38bdf8;
  font-weight: bold;
}

.project-card:hover,
.service-card:hover {
  transform: translateY(-10px);
}

.project-card h3,
.service-card h3 {
  margin: 12px 0;
  color: #38bdf8;
}

.project-card span {
  display: block;
  color: #0ea5e9;
  font-weight: bold;
  margin-top: 15px;
}

.project-card a {
  display: inline-block;
  margin-top: 18px;
  color: #1e3a8a;
  font-weight: bold;
  text-decoration: none;
}

.showcase {
  grid-column: span 2;
  background: linear-gradient(135deg, #e0f2fe, #fff);
  border: 2px solid #38bdf8;
}

.project-top {
  display: inline-block;
  background: #38bdf8;
  color: #020617;
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: bold;
}

.skill-bars {
  max-width: 850px;
  margin: auto;
}

.bar {
  margin-bottom: 22px;
}

.bar span {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.bar div {
  height: 13px;
  background: #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

.bar em {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #38bdf8, #1e3a8a);
  border-radius: 20px;
  transition: 1.5s;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: #111827;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.step b {
  color: #38bdf8;
  font-size: 28px;
}

.cta {
  background: linear-gradient(135deg, #1e3a8a, #020617);
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.contact-box {
  text-align: center;
}

.footer {
  background: #020617;
  color: #fff;
  text-align: center;
  padding: 25px;
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.35;
}

.shape1 {
  width: 160px;
  height: 160px;
  background: #38bdf8;
  top: 18%;
  right: 8%;
  animation: float 6s infinite ease-in-out;
}

.shape2 {
  width: 90px;
  height: 90px;
  background: #0ea5e9;
  bottom: 14%;
  left: 8%;
  animation: float 8s infinite ease-in-out;
}

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

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

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #111827;
    padding: 20px;
  }

  .nav-links a {
    display: block;
    margin: 15px 0;
  }

  .hero-content,
  .split,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .showcase {
    grid-column: span 1;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero {
    padding: 80px 0;
  }

  .cursor {
    display: none !important;
  }
}

.section-subtitle {
  max-width: 720px;
  margin: -25px auto 45px;
  text-align: center;
  font-size: 18px;
  color: #64748b;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.learning-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
  border-top: 4px solid #38bdf8;
}

.learning-card:hover {
  transform: translateY(-10px);
}

.learning-card h3 {
  font-size: 26px;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.learning-card p {
  color: #475569;
  margin-bottom: 18px;
}

.learning-card span {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 13px;
}

@media (max-width: 900px) {
  .learning-grid {
    grid-template-columns: 1fr;
  }
}
.contact-form {
  max-width: 650px;
  margin: auto;
  background: #fff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
  color: #111827;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56,189,248,0.18);
}

.hidden-field {
  display: none;
}
.char-count {
    text-align: right;
    font-size: 12px;
}
.field-error {
  display: block;
  color: #dc2626;
  font-size: 13px;
  margin-top: 5px;
}
div#formMessage {
    text-align: center;
}
.form-success,
.form-error {
  padding: 13px 15px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-weight: 600;
}

.form-success {
  background: #dcfce7;
  color: #166534;
}

.form-error {
  background: #fee2e2;
  color: #991b1b;
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin: 0;
    margin-bottom: 20px;
}