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

:root {
  --color-bg: #000000;
  --color-bg-secondary: #111827;
  --color-text: #ffffff;
  --color-text-secondary: #9ca3af;
  --color-border: #374151;
  --color-purple: #a855f7;
  --color-pink: #ec4899;
  --color-red: #ef4444;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  @media screen and (max-width:768px){
	font-size: 1rem;	
  }
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin: auto 0;
  background: linear-gradient(
    to right,
    #a855f7,
    #ec4899,
    #ef4444
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link, .menu-item a {
  color: var(--color-text-secondary);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover, .menu-item a:hover {
  color: var(--color-text);
}

.nav-link::after, .menu-item a::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--color-purple),
    var(--color-pink)
  );
  transition: width 0.3s ease;
}

.nav-link:hover::after, .menu-item a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.5rem;
}


.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
	.menu-item{
		font-size:35px;
	}
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.blob-1 {
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background-color: var(--color-purple);
  animation: pulse 3s ease-in-out infinite;
}

.blob-2 {
  bottom: 25%;
  right: 25%;
  width: 384px;
  height: 384px;
  background-color: var(--color-pink);
  animation: pulse 3s ease-in-out infinite 1s;
}

.blob-3 {
  top: 50%;
  left: 50%;
  width: 384px;
  height: 384px;
  background-color: #3b82f6;
  opacity: 0.2;
  animation: pulse 3s ease-in-out infinite 2s;
}

.blob-4 {
  top: 25%;
  right: 25%;
  width: 384px;
  height: 384px;
  background-color: var(--color-purple);
  opacity: 0.2;
}

.blob-5 {
  bottom: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background-color: var(--color-pink);
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1280px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    to right,
    rgba(168, 85, 247, 0.2),
    rgba(236, 72, 153, 0.2)
  );
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(
    to right,
    #a855f7,
    #ec4899,
    #ef4444
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
  @media screen and (max-width:768px){
	padding: 0.5rem 1.5rem;
  }
}

.btn-primary {
  background: linear-gradient(
    to right,
    var(--color-purple),
    var(--color-pink)
  );
  color: var(--color-text);
  border: none;
}

.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.5);
  transform: scale(1.05);
}

.btn-secondary {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--color-purple);
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
}

.hero-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-link {
  color: var(--color-text-secondary);
  padding: 0.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-secondary);
  animation: bounce 2s infinite;
}

/* About Section */
.about {
  padding: 8rem 0;
  background: linear-gradient(
    to bottom,
    var(--color-bg),
    var(--color-bg-secondary)
  );
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3.75rem;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 48rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(
    to bottom right,
    rgba(31, 41, 55, 0.5),
    rgba(17, 24, 39, 0.5)
  );
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-5px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(
    to bottom right,
    var(--color-purple),
    var(--color-pink)
  );
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--color-text-secondary);
}

/* Projects Section */
.projects {
  padding: 8rem 0;
  background-color: var(--color-bg);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  background-color: var(--color-bg-secondary);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.project-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
}

.project-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.project-description {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background-color: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: var(--color-text);
}

/* Skills Section */
.skills {
  padding: 8rem 0;
  background: linear-gradient(
    to bottom,
    var(--color-bg),
    var(--color-bg-secondary)
  );
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.skill-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.skill-name {
  color: var(--color-text);
}

.skill-percent {
  color: var(--color-text-secondary);
}

.skill-bar {
  height: 0.5rem;
  background-color: #1f2937;
  border-radius: 9999px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(
    to right,
    var(--color-purple),
    var(--color-pink)
  );
  border-radius: 9999px;
  animation: fillBar 1s ease-out;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(
    to bottom right,
    var(--color-purple),
    var(--color-pink)
  );
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.contact-value {
  color: var(--color-text);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.form-input {
  padding: 0.75rem 1rem;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  color: var(--color-text);
  transition: border-color 0.3s ease;
  font-family: inherit;
  font-size: 1rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-purple);
}

textarea.form-input {
  resize: none;
}

/* Footer */
.footer {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 10;
}

.footer p {
  color: var(--color-text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .nav-link {
    font-size: 2rem;
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 60;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .blob {
    width: 256px !important;
    height: 256px !important;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }
}



/* ===============================
   About Content Section
================================ */

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

/* Text Area */
.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted, #fff);
    margin-bottom: 20px;
    max-width: 560px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Stats Area */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Stat Card */
.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(10px);
}

/* Hover Interaction */
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Number */
.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}

/* Label */
.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted, #9ca3af);
    letter-spacing: 0.3px;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text p {
        max-width: 100%;
    }

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

@media (max-width: 640px) {
    .about-content {
        padding: 60px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}


/* Education Section */
.title-edu{
	text-align:center;
	margin-bottom: 4rem;
}
.education {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-secondary));
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
}

.education-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, var(--color-purple), var(--color-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.education-icon i {
    font-size: 2rem;
    color: white;
}

.education-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.education-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.education-date {
    display: inline-block;
    background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    border: 1px solid rgba(55, 65, 81, 0.5);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.education-card p {
    color: #fff;
    line-height: 1.6;
}