body {
  margin: 0;
  font-family: Arial;
  background: #020823;
  padding-top: 10px;
}

/* navbar css code started from here*/
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: black;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* logo */
.logo {
  color: #38bdf8;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
}

/* menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-menu a {
  text-decoration: none;
  color: #38bdf8;
  font-size: 18px;
  /* transition: transform 0.3s ease; */
}

.nav-menu a:hover {
  text-decoration: underline;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #38bdf8;
  transition: 0.3s;
}

/* hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: black;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 20px 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* navbar css code closed */


/* hero section */
/* Main portfolio background */
.main-portfolio {
  background: linear-gradient(135deg, #020617, #071126, #020617);
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 70px;
  overflow: hidden;
}

/* Background Blur Effects */
.hero-bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}

.hero-blur-1 {
  width: 280px;
  height: 280px;
  background: rgba(56, 189, 248, 0.18);
  top: 8%;
  left: -60px;
}

.hero-blur-2 {
  width: 320px;
  height: 320px;
  background: rgba(14, 165, 233, 0.15);
  bottom: 5%;
  right: -80px;
}

/* Content box */
.hero-content-box {
  position: relative;
  z-index: 2;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 5px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: 945px;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(56, 189, 248, 0.25);
  margin-bottom: 18px;
  margin-left: 10px;
}

/* Intro */
.hero-intro {
  color: #cbd5e1;
  font-size: 18px;
  margin-bottom: 8px;
  margin-top: 10px;
  margin-left: 10px;
  letter-spacing: 1px;
}

/* Main title */
.hero-title {
  color: #ffffff;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.1;
  margin-left: 10px;
}

/* Role text */
.hero-role-wrap {
  color: #cbd5e1;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.static-text {
  color: #94a3b8;
  margin-right: 8px;
  margin-left: 10px;
}

#typing-role {
  color: #38bdf8;
  font-weight: 700;
  position: relative;
}

/* Cursor */
#typing-role::after {
  content: "|";
  margin-left: 5px;
  animation: blink 0.8s infinite;
  color: #38bdf8;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Description */
.hero-description {
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 0;
  margin-left: 10px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-premium {
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  color: #02111f;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.35);
}

.btn-primary-premium:hover {
  transform: translateY(-3px);
  color: #02111f;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.45);
}

.btn-outline-premium {
  padding: 13px 28px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  background: rgba(56, 189, 248, 0.05);
  transition: all 0.35s ease;
}

.btn-outline-premium:hover {
  background: rgba(56, 189, 248, 0.12);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Mini Info Cards */
.hero-mini-info {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.info-card {
  min-width: 140px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  padding: 18px 20px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.35);
}

.info-card h3 {
  margin: 0;
  color: #38bdf8;
  font-size: 24px;
  font-weight: 800;
}

.info-card p {
  margin: 6px 0 0;
  color: #94a3b8;
  font-size: 14px;
}

/* Image Area */
.image-wrapper {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.image-ring {
  position: absolute;
  inset: -18px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(14, 165, 233, 0.08));
  filter: blur(0.5px);
  z-index: 0;
  animation: floatRing 4s ease-in-out infinite;
}

@keyframes floatRing {

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

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

.profile-img {
  position: relative;
  z-index: 2;
  max-width: 340px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-img:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(56, 189, 248, 0.18);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    text-align: center;
    padding-top: 120px;
  }

  .hero-content-box {
    padding: 30px 24px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-role-wrap {
    font-size: 24px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-mini-info {
    justify-content: center;
  }

  .profile-img {
    margin-top: 10px;
    max-width: 300px;
    height: 380px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-role-wrap {
    font-size: 20px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .btn-primary-premium,
  .btn-outline-premium {
    width: 100%;
    text-align: center;
  }

  .info-card {
    width: 100%;
  }

  .profile-img {
    /* max-width: 260px;
    height: 320px; */
  }
}

/* What I Do Section */
.what-i-do-section {
  padding: 50px 0;
  background: #020617;
}

.section-title {
  font-weight: 800;
  color: #ffffff;
}

.section-subtitle {
  color: #ffffff;
}

/* Service Card */
.service-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(10, 16, 30, 0.95));
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(56, 189, 248, 0.08);
  border-radius: 50%;
  filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.12);
}

/* Icon */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  font-size: 28px;
  margin-bottom: 20px;
  border: 1px solid rgba(56, 189, 248, 0.15);
}

.service-card h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  color: #94a3b8;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .what-i-do-section {
    padding: 75px 0;
  }

  .section-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .what-i-do-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .service-card {
    padding: 24px 18px;
  }

  .service-card h4 {
    font-size: 20px;
  }
}


/* Why Choose Me Section */
.why-choose-section {
  background-color: #020617;
  padding: 90px 0;
}

.why-choose-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.why-choose-section .section-subtitle {
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Card Design */
.why-card {
  background: linear-gradient(180deg, #0f172a, #111827);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.12);
}

.why-card h5 {
  color: #38bdf8;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.why-card p {
  color: #94a3b8;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-section {
    padding: 75px 0;
  }

  .why-choose-section h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-section h2 {
    font-size: 28px;
  }

  .why-choose-section .section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .why-card {
    padding: 24px 18px;
  }

  .why-card h5 {
    font-size: 20px;
  }

  .why-card p {
    font-size: 14.5px;
  }
}

/* footer bar css code started from here  */
/* Footer */

/* Footer */

.footer-section {
  background: #020617;
  color: #94a3b8;
  padding: 60px 0 20px;
  border-top: 1px solid #1e293b;
}

.footer-logo {
  color: #38bdf8;
  font-weight: bold;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
}

/* Contact Info */

.footer-contact p {
  margin: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #38bdf8;
  font-size: 16px;
}

.footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #38bdf8;
}

/* Headings */

.footer-heading {
  color: #ffffff;
  margin-bottom: 20px;
}

/* Links */

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

/* Social Icons */

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 20px;
  color: #94a3b8;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #38bdf8;
  transform: translateY(-3px);
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
}

/* Footer code ends from here  */