@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
  background-color: #0a0a0a;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kalam", cursive;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #ffffff;
}

p {
  color: #a3a3a3;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-header h2 span {
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header p {
  color: #a3a3a3;
  font-size: 1.1rem;
}

.btn-primary, .action-btn-filled {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover, .action-btn-filled:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
}

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00f2ff;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.form-control,
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-control input,
.form-control textarea,
.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.form-control input:focus,
.form-control textarea:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00f2ff;
  background: rgba(255, 255, 255, 0.08);
}
.form-control input::placeholder,
.form-control textarea::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a3a3a3;
}
.form-control textarea,
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.divide-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .divide-two {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.navbar .logo h1 {
  font-family: "Kalam", cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar .nav-links ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.navbar .nav-links ul li a {
  text-decoration: none;
  color: #a3a3a3;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}
.navbar .nav-links ul li a:hover, .navbar .nav-links ul li a.active {
  color: #00f2ff;
}
.navbar .nav-links ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00f2ff;
  transition: width 0.3s ease;
}
.navbar .nav-links ul li a:hover::after {
  width: 100%;
}
.navbar .action-btn button {
  background: transparent;
  color: #00f2ff;
  border: 1px solid #00f2ff;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .action-btn button a {
  text-decoration: none;
  color: inherit;
}
.navbar .action-btn button:hover {
  background: #00f2ff;
  color: #0a0a0a;
  box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}
.navbar .menu-icon {
  display: none;
  cursor: pointer;
}
.navbar .menu-icon div {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  margin: 6px 0;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.navbar .menu-icon.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.navbar .menu-icon.active div:nth-child(2) {
  opacity: 0;
}
.navbar .menu-icon.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-nav-links {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.mobile-nav-links ul {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
}
.mobile-nav-links ul li {
  margin-bottom: 1rem;
}
.mobile-nav-links ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 0;
}
.mobile-nav-links ul li a:hover {
  color: #00f2ff;
}
.mobile-nav-links.active {
  max-height: 400px;
}
@media screen and (min-width: 769px) {
  .mobile-nav-links {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .nav-links,
.action-btn {
    display: none;
  }

  .menu-icon {
    display: block;
  }
}
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
  gap: 2rem;
}
.hero-section .hero-content {
  flex: 1;
  max-width: 600px;
}
.hero-section .hero-content .greeting {
  font-family: "Kalam", cursive;
  font-size: 1.5rem;
  color: #00f2ff;
  margin-bottom: 1rem;
}
.hero-section .hero-content .hero-name {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section .hero-content .hero-role {
  font-size: 2rem;
  color: #00f2ff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-section .hero-content .hero-description {
  font-size: 1.1rem;
  color: #a3a3a3;
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.hero-section .hero-content .hero-description b {
  color: #ffffff;
}
.hero-section .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
}
.hero-section .hero-content .social-links {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
}
.hero-section .hero-content .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.hero-section .hero-content .social-links a img {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.hero-section .hero-content .social-links a:hover {
  transform: translateY(-3px);
  border-color: #00f2ff;
  background: rgba(0, 242, 255, 0.1);
}
.hero-section .hero-content .social-links a:hover img {
  opacity: 1;
}
.hero-section .hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-section .hero-visual .visual-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-section .hero-visual .profile-img {
  max-width: 450px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.1));
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

@media screen and (max-width: 992px) {
  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
    padding-top: 120px;
  }
  .hero-section .hero-content {
    max-width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-section .hero-content .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section .hero-content .social-links {
    justify-content: center;
  }
  .hero-section .hero-visual {
    width: 100%;
    margin-bottom: 2rem;
  }
  .hero-section .hero-visual .profile-img {
    max-width: 300px;
  }
}
@media screen and (max-width: 576px) {
  .hero-section .hero-content .hero-name {
    font-size: 3.5rem;
  }
  .hero-section .hero-content .hero-role {
    font-size: 1.5rem;
  }
}
.about-section {
  padding: 6rem 0;
}
.about-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.about-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.about-section .section-header h2 span {
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-section .section-header p {
  color: #a3a3a3;
  font-size: 1.1rem;
}
.about-section .about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-section .about-content .about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #a3a3a3;
}
.about-section .about-content .about-text p b {
  color: #ffffff;
  font-weight: 600;
}
.about-section .about-content .about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-section .about-content .about-stats .stat-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.about-section .about-content .about-stats .stat-item:hover {
  border-color: #00f2ff;
  transform: translateY(-5px);
}
.about-section .about-content .about-stats .stat-item h3 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.about-section .about-content .about-stats .stat-item p {
  color: #a3a3a3;
  font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
  .about-section .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.services {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 4rem;
}
.services .service {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  background-color: #121212;
}
.services .service:hover {
  transform: scale(1.05);
  border: 1px solid #00f2ff;
}
.services .service .service-icon img {
  width: 5rem;
}
.services .service .service-title {
  font-family: "Inter", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
}
.services .service .service-description {
  font-family: "Inter", serif;
  font-weight: 400;
  font-size: 1rem;
  color: #a3a3a3;
}

@media screen and (max-width: 480px) {
  .services {
    flex-direction: column;
  }
}
.skills-section {
  padding: 6rem 0;
}
.skills-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.skills-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.skills-section .section-header h2 span {
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.skills-section .section-header p {
  color: #a3a3a3;
  font-size: 1.1rem;
}
.skills-section .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.skills-section .skills-grid .skill-category {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.skills-section .skills-grid .skill-category:hover {
  border-color: #00f2ff;
  transform: translateY(-5px);
}
.skills-section .skills-grid .skill-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #00f2ff;
}
.skills-section .skills-grid .skill-category .skill-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.skills-section .skills-grid .skill-category .skill-list .skill-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.skills-section .skills-grid .skill-category .skill-list .skill-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}
.skills-section .skills-grid .skill-category .skill-list .skill-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.skills-section .skills-grid .skill-category .skill-list .skill-item span {
  color: #ffffff;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .skills-section .skills-grid {
    grid-template-columns: 1fr;
  }
}
.portfolio-section {
  padding: 6rem 0;
}
.portfolio-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.portfolio-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.portfolio-section .section-header h2 span {
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.portfolio-section .section-header p {
  color: #a3a3a3;
  font-size: 1.1rem;
}
.portfolio-section .filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.portfolio-section .filter-buttons .filter-btn {
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #a3a3a3;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.portfolio-section .filter-buttons .filter-btn:hover {
  border-color: #00f2ff;
  color: #00f2ff;
  background: rgba(0, 242, 255, 0.05);
}
.portfolio-section .filter-buttons .filter-btn.active {
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  color: #0a0a0a;
  border-color: transparent;
  font-weight: 600;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.projects-grid .project {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.projects-grid .project:hover {
  transform: translateY(-8px);
  border-color: #00f2ff;
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}
.projects-grid .project .project-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  border-radius: 12px;
}
.projects-grid .project .project-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.projects-grid .project .project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}
.projects-grid .project .project-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}
.projects-grid .project .project-title a:hover {
  color: #00f2ff;
}
.projects-grid .project .project-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a3a3a3;
}
.projects-grid .project .project-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: #00f2ff;
  font-weight: 500;
}
.projects-grid .project .project-meta .separator {
  color: #a3a3a3;
}
.projects-grid .project .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.projects-grid .project .project-tag {
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 242, 255, 0.2);
  transition: all 0.2s ease;
}
.projects-grid .project:hover .project-tag {
  background: rgba(0, 242, 255, 0.2);
  border-color: #00f2ff;
}

@media screen and (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
.experience-section {
  padding: 6rem 0;
}
.experience-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.experience-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.experience-section .section-header h2 span {
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.experience-section .timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.experience-section .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}
.experience-section .timeline .timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
  margin-bottom: 2rem;
  position: relative;
}
.experience-section .timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 0 4px #0a0a0a, 0 0 0 6px #00f2ff;
}
.experience-section .timeline .timeline-item .timeline-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}
.experience-section .timeline .timeline-item .timeline-content:hover {
  border-color: #00f2ff;
  transform: translateX(-5px);
}
.experience-section .timeline .timeline-item .timeline-content .timeline-date {
  display: inline-block;
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  color: #0a0a0a;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.experience-section .timeline .timeline-item .timeline-content h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.experience-section .timeline .timeline-item .timeline-content h4 {
  color: #00f2ff;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.experience-section .timeline .timeline-item .timeline-content p {
  color: #a3a3a3;
  line-height: 1.6;
  font-size: 0.95rem;
}
.experience-section .timeline .timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
}
.experience-section .timeline .timeline-item:nth-child(even) .timeline-content:hover {
  transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .experience-section .timeline::before {
    left: 0;
  }
  .experience-section .timeline .timeline-item {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 2rem;
  }
  .experience-section .timeline .timeline-item::before {
    left: 0;
    top: 1.5rem;
  }
  .experience-section .timeline .timeline-item .timeline-content:hover {
    transform: translateY(-5px);
  }
  .experience-section .timeline .timeline-item:nth-child(even) {
    padding-left: 2rem;
  }
  .experience-section .timeline .timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateY(-5px);
  }
}
.certificates-section {
  padding: 6rem 0;
}
.certificates-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.certificates-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.certificates-section .section-header h2 span {
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.certificates-section .section-header p {
  color: #a3a3a3;
  font-size: 1.1rem;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}
.certificates-grid .certificate {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.certificates-grid .certificate:hover {
  transform: translateY(-5px);
  border-color: #00f2ff;
  box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}
.certificates-grid .certificate .certificate-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.certificates-grid .certificate .certificate-header {
  margin-bottom: 0.5rem;
}
.certificates-grid .certificate .certificate-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.certificates-grid .certificate .certificate-issuer {
  color: #00f2ff;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.certificates-grid .certificate .certificate-date {
  color: #a3a3a3;
  font-size: 0.85rem;
  font-weight: 500;
}
.certificates-grid .certificate .certificate-description {
  color: #a3a3a3;
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1;
}
.certificates-grid .certificate .certificate-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.certificates-grid .certificate .certificate-skills .skill-tag {
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(0, 242, 255, 0.2);
  transition: all 0.2s ease;
}
.certificates-grid .certificate:hover .skill-tag {
  background: rgba(0, 242, 255, 0.15);
  border-color: #00f2ff;
}
.certificates-grid .certificate .cert-link {
  display: inline-flex;
  align-items: center;
  color: #00f2ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}
.certificates-grid .certificate .cert-link:hover {
  color: #ffffff;
  transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }
}
.contact-section {
  padding: 6rem 0;
}
.contact-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-section .section-header h2 span {
  background: linear-gradient(135deg, #7000ff 0%, #00f2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-section .section-header p {
  color: #a3a3a3;
  font-size: 1.1rem;
}
.contact-section .contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}
.contact-section .contact-container .contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-section .contact-container .contact-info .info-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.contact-section .contact-container .contact-info .info-item:hover {
  border-color: #00f2ff;
  transform: translateX(5px);
}
.contact-section .contact-container .contact-info .info-item h3 {
  color: #00f2ff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.contact-section .contact-container .contact-info .info-item p {
  color: #ffffff;
  font-size: 1rem;
}
.contact-section .contact-container .contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}
.contact-section .contact-container .contact-form .form-group {
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  .contact-section .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}
footer .footer-content {
  text-align: center;
}
footer .footer-content p {
  color: #a3a3a3;
  font-size: 0.95rem;
}

/* Project Detail Page Improvements */
.detail-hero {
  padding: 8rem 0 3rem;
  /* Increased top padding to avoid nav overlap */
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.detail-hero .hero-content .project-type {
  color: #00f2ff;
  font-family: "Kalam", cursive;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.detail-hero .hero-content .project-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.detail-hero .hero-content .project-meta-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: #a3a3a3;
  font-size: 1.1rem;
}
.detail-hero .hero-content .project-meta-strip .meta-item {
  color: #ffffff;
  font-weight: 500;
}
.detail-hero .hero-content .project-meta-strip .meta-separator {
  color: #00f2ff;
  opacity: 0.6;
}

.detail-main-image {
  margin: 3rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.detail-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.detail-block {
  margin-bottom: 3rem;
}
.detail-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00f2ff;
}
.detail-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d4d4d4;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}
.sidebar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8rem;
}

.tech-stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.tech-stack-grid .tech-badge {
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-list {
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #d4d4d4;
  line-height: 1.5;
}
.feature-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #00f2ff;
}

.project-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.project-links a {
  text-align: center;
  justify-content: center;
}

.gallery-section {
  margin-top: 4rem;
  position: relative;
}
.gallery-section .gallery-carousel-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Navigation Buttons */
  /* Indicators */
}
.gallery-section .gallery-carousel-container .carousel-wrapper {
  overflow: hidden;
  width: 100%;
}
.gallery-section .gallery-carousel-container .carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.gallery-section .gallery-carousel-container .carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}
.gallery-section .gallery-carousel-container .carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}
.gallery-section .gallery-carousel-container .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.gallery-section .gallery-carousel-container .carousel-btn:hover {
  background: rgba(0, 242, 255, 0.2);
  border-color: #00f2ff;
  color: #00f2ff;
}
.gallery-section .gallery-carousel-container .carousel-btn.prev {
  left: 20px;
}
.gallery-section .gallery-carousel-container .carousel-btn.next {
  right: 20px;
}
.gallery-section .gallery-carousel-container .carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.gallery-section .gallery-carousel-container .carousel-indicators .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-section .gallery-carousel-container .carousel-indicators .carousel-dot.active {
  background: #00f2ff;
  transform: scale(1.2);
}

.project-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.project-navigation .nav-btn {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}
.project-navigation .nav-btn:hover {
  transform: translateY(-5px);
}
.project-navigation .nav-btn .nav-label {
  font-size: 0.9rem;
  color: #a3a3a3;
}
.project-navigation .nav-btn .nav-title {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
}
.project-navigation .nav-btn.next {
  text-align: right;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .detail-hero .hero-content .project-title {
    font-size: 2.5rem;
  }

  .detail-stats {
    grid-template-columns: 1fr 1fr;
  }

  .detail-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sidebar-content {
    order: 1;
  }
}

/*# sourceMappingURL=main.css.map */
