/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #eaeaea;
  background-color: #000;
  line-height: 1.6;
}



@keyframes fadeIn {
  to { opacity: 1; }
}

/* Container */
.container {
  width: 85%;
  margin: 0 auto;
}

/* Header / Hero */
header {
  background: #111;
  padding: 50px 0;
  text-align: center;
}
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background-color: #0b0b0b; /* deep black background */
  color: #eaeaea; /* light text for contrast */
}

/* Hire Me Button */
.hire-btn {
  display: inline-block;
  padding: 14px 38px;
  background: linear-gradient(135deg, #8E2DE2, #4A00E0);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 18px rgba(142, 45, 226, 0.4);
}

.hire-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, #4A00E0, #8E2DE2);
  box-shadow: 0 6px 25px rgba(142, 45, 226, 0.6);
}

/* Optional hero tweaks for black theme */
header {
  text-align: center;
  padding: 90px 20px 100px;
  background: #0b0b0b;
}

.hero-text h1 {
  color: #fff;
  font-size: 2.8em;
}

.hero-text p {
  color: #d1c4e9; /* soft purple text tone */
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Navigation for dark background */
nav {
  background-color: #111;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

nav ul li a {
  color: #eaeaea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #9b5de5;
}
.highlight {
  background: linear-gradient(135deg, #8E2DE2, #4A00E0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #00ff99;
  transition: transform 0.3s;
}

.profile img:hover {
  transform: scale(1.1);
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #00ff99;
}

.hero-text p {
  font-size: 1.2rem;
  color: #fff;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #111;
  border-top: 1px solid #00ff99;
  border-bottom: 1px solid #00ff99;
}

.nav-container ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.nav-container ul li {
  margin: 0 15px;
}

.nav-container ul li a {
  color: #00ff99;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-container ul li a.active,
.nav-container ul li a:hover {
  color: #fff;
  text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99;
}

/* Sections */
section {
  padding: 50px 0;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  color: #00ff99;
  margin-bottom: 20px;
}

/* Skills */
.skills-list {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.skills-list li {
  background-color: #222;
  padding: 10px 20px;
  border-radius: 20px;
  list-style: none;
  transition: background 0.3s;
}

.skills-list li:hover {
  background-color: #00ff99;
  color: #000;
  cursor: default;
}

/* Portfolio */
.gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.project {
  text-align: center;
}

.project img {
  width: 300px;
  height: 200px;
  border-radius: 10px;
  border: 2px solid #00ff99;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ff99, 0 0 30px #00ff99;
}

.project h3 {
  margin-top: 10px;
  color: #00ff99;
}

/* Blog */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #00ff99;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00ff99;
}

.blog-post h3 {
  color: #00ff99;
  margin-bottom: 10px;
}

.blog-post p {
  color: #eee;
  margin-bottom: 10px;
}

.blog-post a {
  color: #00ff99;
  text-decoration: none;
  font-weight: bold;
}

.blog-post a:hover {
  text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99;
}

/* Contact Links */
section a {
  color: #00ff99;
  text-decoration: none;
}

section a:hover {
  text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99;
}

/* Footer */
footer {
  background-color: #111;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #00ff99;
}
/* Portfolio Cards */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.project img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
  display: block;
}

.project:hover img {
  transform: scale(1.05);
  filter: brightness(70%);
}

.project .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #00ff99;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px;
}

.project:hover .overlay {
  opacity: 1;
  text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99;
}

/* Blog Cards */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.blog-post {
  background-color: #222;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #00ff99;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px #00ff99;
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
}

.skills-list li {
  background-color: #222;
  padding: 10px 20px;
  border-radius: 20px;
  list-style: none;
  border: 1px solid #00ff99;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.skills-list li:hover {
  background-color: #00ff99;
  color: #000;
  transform: scale(1.05);
  cursor: default;
}
/* Map Container */
.map-container {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 20px auto 40px;
  border: 3px solid #00ff99;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* Contact Section */
#contact {
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}

.contact-info {
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-form {
  background-color: #111;
  border: 1px solid #00ff99;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.2);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #000;
  color: #fff;
  border: 1px solid #00ff99;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00ffcc;
  box-shadow: 0 0 8px #00ff99;
}

.contact-form button {
  padding: 14px;
  background-color: #00ff99;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #00cc77;
  transform: scale(1.05);
}

#form-message {
  margin-top: 15px;
  font-size: 1rem;
  color: #00ff99;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin: 20px auto 50px;
  max-width: 800px;
  border: 2px solid #00ff99;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.2);
}
/* Social Media Icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.social-links a {
  color: #00ff99;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #00cc77;
  transform: scale(1.2);
  text-shadow: 0 0 8px #00ff99;
}
/* Portfolio Page */
#portfolio {
  padding: 60px 20px;
  color: #fff;
  text-align: left;
}

#portfolio h2 {
  text-align: center;
  color: #00ff99;
  margin-bottom: 20px;
}

#portfolio p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #ccc;
  line-height: 1.7;
}

.portfolio-section {
  margin-bottom: 50px;
  background-color: #111;
  border: 1px solid #00ff99;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.1);
}

.portfolio-section h3 {
  color: #00ff99;
  border-bottom: 1px solid #00ff99;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* Education & Experience */
.timeline {
  list-style: none;
  padding: 0;
}

.timeline li {
  margin-bottom: 15px;
}

.timeline h4 {
  color: #fff;
}

.timeline p {
  color: #aaa;
  margin-left: 10px;
}

/* Lists */
.list-style {
  list-style-type: "✔ ";
  padding-left: 20px;
}

.list-style li {
  margin-bottom: 8px;
  color: #ccc;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.inline-list li {
  background: #00ff99;
  color: #000;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
}

/* Experience Section */
.experience-item {
  margin-bottom: 20px;
}

.experience-item h4 {
  color: #fff;
}

.experience-item p {
  color: #ccc;
  line-height: 1.6;
}
/* ===== Skills Page Styling ===== */
#skills {
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

#skills h2 {
  color: #00ff99;
  margin-bottom: 15px;
}

#skills .intro-text {
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1rem;
  line-height: 1.6;
}

.skills-section {
padding: 60px; 
  margin-bottom: 30px;
  text-align: left;
}

.skills-section h3 {
  color: #00ff99;
  font-size: 1.4rem;
  margin-bottom: 25px;
  border-left: 4px solid #00ff99;
  padding-left: 10px;
}

/* --- Technical Skills --- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.skill-card {
  background-color: #111;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #00ff99;
  box-shadow: 0 0 10px rgba(0, 255, 153, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.3);
}

.skill-card h4 {
  margin-bottom: 10px;
  color: #fff;
}

.progress-bar {
  width: 100%;
  background-color: #222;
  border-radius: 5px;
  overflow: hidden;
  height: 8px;
}

.progress-bar div {
  height: 8px;
  background: linear-gradient(90deg, #00ff99, #00cc99);
}

/* --- Soft Skills --- */
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.skills-tags span {
  background: #00ff99;
  color: #000;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.skills-tags span:hover {
  background: #00cc77;
  transform: scale(1.1);
}

/* --- Tools & Platforms --- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  text-align: center;
}

.tool-item {
  background: #111;
  border: 1px solid #00ff99;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tool-item:hover {
  transform: translateY(-5px);
  background: #00ff99;
  color: #000;
}

.tool-item i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #00ff99;
}

.tool-item:hover i {
  color: #000;
}

.tool-item p {
  font-weight: 600;
}
.hero-text h1 {
  font-size: 2.8em;
  color: #fff;
  margin-bottom: 10px;
}

/* Sub-title for roles */
.hero-text .roles {
  font-size: 1.3em;
  font-weight: 600;
  color: #b388ff;
  margin-top: 0;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* Intro line below roles */
.hero-text p {
  color: #d1c4e9;
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.projects-section {
  padding: 100px 20px;
  text-align: center;
  color: #eaeaea;
}

.projects-section h2 {
  font-size: 2.2em;
  color: #b388ff;
  margin-bottom: 15px;
}

.projects-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #8E2DE2, #4A00E0);
  margin: 10px auto;
  border-radius: 3px;
}

.section-intro {
  color: #d1c4e9;
  max-width: 750px;
  margin: 15px auto 50px;
  font-size: 1.1em;
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2c2c2c;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(142, 45, 226, 0.4);
}

.project-card h3 {
  color: #b388ff;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.project-card p {
  color: #d1c4e9;
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #8E2DE2, #4A00E0);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  transition: 0.3s;
}

.project-btn:hover {
  background: linear-gradient(135deg, #9c4dff, #5e17eb);
  box-shadow: 0 4px 10px rgba(142, 45, 226, 0.5);
}
.project-skill {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  background: #e0f2ff;
  color: #0077ff;
  padding: 5px 10px;
  border-radius: 20px;
}
/* ===== Certifications Section ===== */
.certifications-section {
  background-color: #fafafa;
  padding: 60px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}

.certifications-section h2 {
  text-align: center;
  color: #222;
  font-size: 2rem;
  margin-bottom: 10px;
}

.certifications-section .section-intro {
  text-align: center;
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.certificate-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.certificate-card h3 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.certificate-card p {
  color: #555;
  margin: 4px 0;
}

.certificate-links a {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  color: #0077cc;
  font-weight: 500;
  text-decoration: none;
}

.certificate-links a:hover {
  text-decoration: underline;
}
/* ===== Certifications Section (Pure Black Boxes + Gradient Background) ===== */
.certifications-section {
  background: linear-gradient(180deg, #000000 0%, #121212 100%);
  padding: 60px 20px;
  margin-top: 50px;
  border-radius: 16px;
  color: #ffffff;
}

.certifications-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.section-intro {
  text-align: center;
  font-size: 1rem;
  color: #bbbbbb;
  margin-bottom: 40px;
}

.certificates-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.certificate-box {
  background: #000000; /* pure black */
  border: 1px solid #333333;
  border-radius: 14px;
  padding: 25px 20px;
  width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.certificate-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(0, 179, 255, 0.3);
  border: 1px solid #00b3ff;
}

.certificate-box h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.certificate-box p {
  color: #cccccc;
  margin: 4px 0;
}

.certificate-links {
  margin-top: 10px;
}

.certificate-links a {
  display: inline-block;
  color: #00b3ff;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.certificate-links a:hover {
  color: #66d9ff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .certificate-box {
    width: 100%;
  }
}

