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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #f7fafc;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1rem;
  color: #718096;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.navbar .nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .nav-content .logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #241705 0%, #bc430d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.navbar .nav-content .nav-toggle {
  display: none;
}
.navbar .nav-content .nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .navbar .nav-content .nav-toggle-label {
    display: flex;
  }
}
.navbar .nav-content .nav-toggle-label span {
  width: 25px;
  height: 3px;
  background: #2d3748;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.navbar .nav-content .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.navbar .nav-content .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}
.navbar .nav-content .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
.navbar .nav-content .nav-toggle:checked ~ .nav-links {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.navbar .nav-content .nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
@media (max-width: 768px) {
  .navbar .nav-content .nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
}
.navbar .nav-content .nav-links li a {
  text-decoration: none;
  color: #2d3748;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.navbar .nav-content .nav-links li a:hover {
  color: #241705;
}
.navbar .nav-content .nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #241705 0%, #bc430d 100%);
  transition: width 0.3s ease;
}
.navbar .nav-content .nav-links li a:hover::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #241705 0%, #bc430d 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  pointer-events: none;
}
.hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 3rem;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .hero .hero-content {
    flex-direction: column;
    text-align: center;
  }
}
.hero .hero-content .hero-text {
  flex: 1;
  animation: fadeInUp 0.8s ease-out;
}
.hero .hero-content .hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #feeaf0 0%, #f09410 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-text h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-content .hero-text h1 {
    font-size: 2.2rem;
  }
}
.hero .hero-content .hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: #ffffff;
}
@media (max-width: 480px) {
  .hero .hero-content .hero-text p {
    font-size: 1.1rem;
  }
}
.hero .hero-content .hero-text .highlight {
  background: linear-gradient(120deg, #f093fb 0%, transparent 100%);
  padding: 0 0.5rem;
  border-radius: 4px;
  color: #ffffff;
}
.hero .hero-content .hero-text .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-text .hero-buttons {
    justify-content: center;
  }
}
.hero .hero-content .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero .hero-content .hero-image .hero-image-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #241705 0%, #bc430d 100%);
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: float 7s ease-in-out infinite;
}
@media (max-width: 992px) {
  .hero .hero-content .hero-image .hero-image-wrapper {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 768px) {
  .hero .hero-content .hero-image .hero-image-wrapper {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 480px) {
  .hero .hero-content .hero-image .hero-image-wrapper {
    width: 280px;
    height: 280px;
  }
}
.hero .hero-content .hero-image .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.98);
  transition: transform 0.5s ease;
}
.hero .hero-content .hero-image .hero-image-wrapper:hover .hero-img {
  transform: scale(1.07);
}
.hero .hero-content .hero-image .hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #ffffff;
  color: #241705;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.btn.btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn.btn-outline:hover {
  background: #ffffff;
  color: #241705;
}

.section {
  padding: 3.2rem 0;
}
.section .section-title {
  text-align: center;
  margin-bottom: 1.8rem;
}
.section .section-title h2 {
  background: linear-gradient(135deg, #feeaf0 0%, #f09410 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section .section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
  color: #718096;
}

#about {
  background: #0a0e17;
  color: #e2e8f0;
}
#about .section-title h2,
#about .about-text h3 {
  background: linear-gradient(135deg, #feeaf0 0%, #f09410 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#about .about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  #about .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
#about .about-content .about-image {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
#about .about-content .about-image .image-frame {
  position: relative;
  display: inline-block;
}
#about .about-content .about-image .image-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #241705 0%, #bc430d 100%);
  border-radius: 20px;
  z-index: -1;
}
@media (max-width: 992px) {
  #about .about-content .about-image .image-frame::before {
    display: none;
  }
}
#about .about-content .about-image .image-frame img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
#about .about-content .about-image .image-frame img:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
#about .about-content .about-text h3 {
  margin-bottom: 1.5rem;
}
#about .about-content .about-text p {
  color: #e2e8f0;
  opacity: 0.9;
}
#about .about-content .about-text .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}
#about .about-content .about-text .stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #feeaf0 0%, #f09410 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#about .about-content .about-text .stats .stat-label {
  opacity: 0.8;
}
@media (max-width: 768px) {
  #about .about-content .about-text .stats {
    grid-template-columns: 1fr;
  }
}
#about .about-content .about-text .skills .skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
#about .about-content .about-text .skills .skills-grid .skill-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
#about .about-content .about-text .skills .skills-grid .skill-tag:hover {
  background: linear-gradient(135deg, #feeaf0 0%, #f09410 100%);
  color: #000000;
  transform: translateY(-2px);
}

#projects {
  background: #0a0e17;
  color: #e2e8f0;
}
#projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100vw - 4rem), 1fr));
  gap: 2rem;
}
#projects .projects-grid .project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
#projects .projects-grid .project-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
#projects .projects-grid .project-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
#projects .projects-grid .project-card.active {
  opacity: 1;
  transform: translateY(0);
}
#projects .projects-grid .project-image {
  height: 250px;
  background: linear-gradient(135deg, #241705 0%, #bc430d 100%);
  position: relative;
  overflow: hidden;
}
#projects .projects-grid .project-image .project-links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1.2rem;
}
#projects .projects-grid .project-image .project-links .project-link {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #241705;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
#projects .projects-grid .project-image .project-links .project-link:hover {
  background: #ffffff;
  color: #bc430d;
  transform: translateY(-6px) scale(1.1);
  text-decoration: none;
}
#projects .projects-grid .project-content {
  padding: 2rem;
}
#projects .projects-grid .project-content h3 {
  background: linear-gradient(135deg, #feeaf0 0%, #f09410 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
#projects .projects-grid .project-content p {
  color: rgba(226, 232, 240, 0.8);
}
#projects .projects-grid .project-content .project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#projects .projects-grid .project-content .project-tech .tech-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

#contact.contact-section {
  background: #0a0e17;
  color: #e2e8f0;
}
#contact.contact-section .section-title {
  text-align: center;
  margin-bottom: 4rem;
}
#contact.contact-section .section-title h2 {
  background: linear-gradient(135deg, #feeaf0 0%, #f09410 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
#contact.contact-section .section-title p {
  color: #cbd5e1;
  font-size: 1.1rem;
}
#contact.contact-section .contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 992px) {
  #contact.contact-section .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
#contact.contact-section .contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #feeaf0 0%, #f09410 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
#contact.contact-section .contact-info .contact-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
#contact.contact-section .contact-info .contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
@media (max-width: 992px) {
  #contact.contact-section .contact-info .contact-detail {
    justify-content: center;
  }
}
#contact.contact-section .contact-info .contact-detail i {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}
#contact.contact-section .contact-info .contact-detail span {
  color: #e2e8f0;
  text-decoration: none;
}
#contact.contact-section .contact-info .social-links-horizontal {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 992px) {
  #contact.contact-section .contact-info .social-links-horizontal {
    justify-content: center;
  }
}
#contact.contact-section .contact-info .social-links-horizontal .social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
#contact.contact-section .contact-info .social-links-horizontal .social-link:hover {
  background: linear-gradient(135deg, #feeaf0 0%, #f09410 100%);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(240, 148, 16, 0.3);
  text-decoration: none;
}
#contact.contact-section .contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  #contact.contact-section .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}
#contact.contact-section .contact-form-wrapper .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#contact.contact-section .contact-form-wrapper .contact-form .form-group input,
#contact.contact-section .contact-form-wrapper .contact-form .form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
#contact.contact-section .contact-form-wrapper .contact-form .form-group input::placeholder,
#contact.contact-section .contact-form-wrapper .contact-form .form-group textarea::placeholder {
  color: #94a3b8;
}
#contact.contact-section .contact-form-wrapper .contact-form .form-group input:focus,
#contact.contact-section .contact-form-wrapper .contact-form .form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(240, 148, 16, 0.3);
  text-decoration: none;
}
#contact.contact-section .contact-form-wrapper .contact-form .form-group textarea {
  resize: vertical;
  min-height: 140px;
}
#contact.contact-section .contact-form-wrapper .contact-form .submit-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #feeaf0 0%, #f09410 100%);
  color: #000;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  text-decoration: none;
}
#contact.contact-section .contact-form-wrapper .contact-form .submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(240, 148, 16, 0.5);
  text-decoration: none;
}
@media (max-width: 480px) {
  #contact.contact-section .contact-form-wrapper .contact-form .submit-btn {
    align-self: center;
    padding: 0.8rem 2rem;
  }
}
#contact.contact-section .contact-form-wrapper .form-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer {
  background: #2d3748;
  color: #f7f7f7;
  padding: 1.2rem;
  text-align: center;
}
.footer p {
  padding-bottom: 0.2rem;
}
.footer .copyright {
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
}
.footer .copyright:last-child {
  font-size: 0.95rem;
  opacity: 0.9;
  text-decoration: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mt-3 {
  margin-top: 2rem;
}

a,
.btn,
.social-link,
.project-link,
.skill-tag,
.tech-tag {
  text-decoration: none !important;
}
a:hover, a:focus, a:active,
.btn:hover,
.btn:focus,
.btn:active,
.social-link:hover,
.social-link:focus,
.social-link:active,
.project-link:hover,
.project-link:focus,
.project-link:active,
.skill-tag:hover,
.skill-tag:focus,
.skill-tag:active,
.tech-tag:hover,
.tech-tag:focus,
.tech-tag:active {
  text-decoration: none !important;
}

i[class*=fa-],
i[class*=icon-] {
  text-decoration: none !important;
  font-style: normal;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

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