body {
  font-family: Arial, sans-serif;
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #f4f4f4;
  color: #333;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #007acc;
  font-weight: bold;
}

nav a:hover {
  color: #005f99;
}

section {
  background: white;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  color: #777;
  margin-top: 40px;
}

.about-section {
  padding: 40px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  align-items: center;
}

.profile-pic {
  flex: 1 1 250px;
  text-align: center;
  padding: 20px;
}

.profile-pic img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #007acc;
}

.about-text {
  flex: 2 1 400px;
  padding: 20px 30px;
}

.about-text h2 {
  font-size: 28px;
  color: #007acc;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 10px;
}

.about-text blockquote {
  margin-top: 20px;
  font-style: italic;
  color: #555;
  border-left: 4px solid #007acc;
  padding-left: 15px;
}
.hero {
  height: 90vh;
  background: url('../image/office.jpeg') no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-content h1 span {
  color: #00c6ff;
  font-weight: bold;
}

.subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  font-style: italic;
}

.hero-btn {
  display: inline-block;
  background: #00c6ff;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-btn:hover {
  background: #007acc;
  color: #fff;
}

.about-section {
  background: url('../image/about-bg.jpeg') no-repeat center center/cover;
  padding: 60px 20px;
  color: white;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: 0;
}

.about-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.profile-pic {
  flex: 1 1 250px;
  text-align: center;
  padding: 20px;
}

.profile-pic img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}

.about-text {
  flex: 2 1 400px;
  padding: 20px 30px;
  color: white;
}

.about-text h2 {
  font-size: 28px;
  color: #00c6ff;
}

.about-text p,
.about-text blockquote {
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
}

.projects-section {
  padding: 60px 20px;
  background: url('../image/dark.jpeg') no-repeat center center/cover;
  color: white;
  text-align: center;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

.projects-section h2 {
  position: relative;
  z-index: 1;
  font-size: 2.5em;
  color: #00c6ff;
  margin-bottom: 40px;
}

.projects-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.project-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  width: 300px;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.project-card h3 {
  font-size: 1.2em;
  color: #00c6ff;
  margin-bottom: 10px;
}

.project-card ul {
  padding-left: 20px;
  font-size: 0.95em;
  color: #f0f0f0;
}


body {
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.skills-section {
  text-align: center;
  padding: 50px 20px;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.skill {
  text-align: center;
}

.outer-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(#e44d26 98%, #333 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.outer-circle.css {
  background: conic-gradient(#2965f1 98%, #333 0%);
}

.outer-circle.js {
  background: conic-gradient(#f0db4f 98%, #333 0%);
}

.outer-circle.node {
  background: conic-gradient(#68a063 98%, #333 0%);
}

.outer-circle.react {
  background: conic-gradient(#61dafb 98%, #333 0%);
}

.inner-circle {
  width: 80px;
  height: 80px;
  background: #111;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.inner-circle i {
  font-size: 24px;
  margin-bottom: 5px;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
}

header {
  background-color: black;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 30px;
}

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

nav a {
  color: blue;
  text-decoration: none;
  font-weight: bold;
}

.home-section {
  background-image: url('../image/office.jpeg'); /* your pink tech image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.intro-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.name {
  color: #00ccff;
}

.btn {
  background-color: #00ccff;
  color: white;
  padding: 10px 20px;
  margin-top: 15px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 20px;
}
.skills-section {
  background: url('../image/pink.jpeg') no-repeat center center/cover;
  padding: 60px 20px;
  color: white;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;


}
.social-links a i {
  margin-right: 8px;
  font-size: 20px;
  vertical-align: middle;
}
/* Make the section take full screen and center the text */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('../image/office.jpeg') no-repeat center center/cover;
  color: white;
}


.intro-text {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('../image/dark.jpeg'); /* or remove if not needed */
  background-size: cover;
  background-position: center;
  color: white;
  z-index: 2;
  position: relative;
}

.intro-text h1 {
  font-size: 4rem;
  margin: 0;
  font-weight: bold;
}

.intro-text {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centers h1 and p vertically */
  align-items: center;      /* centers horizontally */
  text-align: center;
  background: url('../image/office.jpeg') no-repeat center center/cover; /* optional */
  color: white;
  padding-bottom: 60px; /* space for social icons */
}

.social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
}

.social-links a {
  color: #00c6ff;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

/* Icon size and spacing */
.social-links a i {
  font-size: 20px;
}

.intro-text {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px 60px; /* horizontal padding + space at bottom for icons */
  box-sizing: border-box; /* include padding in width calculations */
  background: url('../image/office.jpeg') no-repeat center center/cover; /* optional */
  color: white;
}

.social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  max-width: calc(100% - 40px); /* prevent overflow due to padding */
  overflow-x: auto; /* allow horizontal scroll if many icons */
}

.social-links a {
  color: #00c6ff;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  white-space: nowrap; /* prevent icon text wrapping */
}

.social-links a i {
  font-size: 20px;
}

.page-wrapper {
  padding: 0 20px; /* horizontal padding */
  box-sizing: border-box;
  overflow-x: hidden; /* prevent horizontal scroll */
  position: relative;
  width: 100%;
}

.intro-text {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background: url('../image/office.jpeg') no-repeat center center/cover;
  padding-bottom: 60px; /* space for socials */
  box-sizing: border-box;
}

.social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  max-width: 100%; /* full width inside container */
  flex-wrap: wrap; /* wrap on very narrow screens */
  justify-content: center; /* center icons */
}

.social-links a {
  color: #00c6ff;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  white-space: nowrap;
}

.social-links a i {
  font-size: 20px;
}
.intro-text h1,
.intro-text p {
  color: black;
  font-weight: bold;
}
.intro-text {
  background: rgba(255, 255, 255, 0.1);      /* semi-transparent white */
  border-radius: 15px;                        /* rounded corners */
  backdrop-filter: blur(10px);                /* blur behind */
  -webkit-backdrop-filter: blur(10px);       /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3); /* subtle border */
  padding: 30px;
  color: black;  /* text color */
}
/* 1. Fade-in and slide up for intro text */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.intro-text {
  animation: fadeInUp 1s ease forwards;
}

/* 2. Button and social links hover scale */
.btn, .social-links a {
  transition: transform 0.3s ease;
}

.btn:hover, .social-links a:hover {
  transform: scale(1.1);
}

/* 3. Social icons color pulse on hover */
@keyframes pulseColor {
  0%, 100% {
    color: #00c6ff;
    text-shadow: 0 0 5px #00c6ff;
  }
  50% {
    color: #008bb9;
    text-shadow: 0 0 15px #008bb9;
  }
}

.social-links a:hover {
  animation: pulseColor 1.5s infinite;
}
/* Fade-in and slide up for projects section */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects-section {
  animation: fadeInUp 1s ease forwards;
  opacity: 0; /* start hidden, animation will reveal */
}

/* Scale effect on hover for project cards */
.project-card {
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Fade-in and slide-up for contact section */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  animation: fadeInUp 1s ease forwards;
  opacity: 0; /* start hidden */
}

/* Button hover scale */
.contact-form button {
  transition: transform 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
}
.center-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
}

.container {
  max-width: 1200px;
  margin: 0 auto; /* centers the container */
  padding: 0 20px; /* optional: adds space on sides */
}




body {
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  font-family: sans-serif;
}

/* Center the container */
.container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #fff; /* Optional: light background */
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 20px;
}
body {
  align-items: flex-start;
  min-height: 100vh;
}

.contact-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section input,
.contact-section textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-section button {
  padding: 10px;
  background-color: #ff69b4;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.contact-section {
  background: url('../image/queen.jpeg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.frosted-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  color: #000;
}

.contact-info {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-info span {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  background-color: #ff69b4;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e055a2;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f3f3f3;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
