/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Ancizar Serif", serif;
  background-color: #000000;
  color: #f3f4f6;
  line-height: 1.6;
}

.icon {
    width: 48px;
    height: 48px;
    display: inline-block;
    background-image: url('./no_writing_logo.png');
    background-size: cover; /* or contain */
}

.apple-touch-icon {
    width: 48px;
    height: 48px;
    display: inline-block;
    background-image: url('./no_writing_logo.png');
    background-size: cover; /* or contain */
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(156, 163, 175, 0.5);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  z-index: 50;
  box-shadow: 0 25px 50px -12px rgba(61, 64, 69, 0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 4.5rem;
  width: 18.5rem;
  margin-right: 0.3rem;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #9d2b2b;
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
}

.nav-links {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-left: 2.5rem;
}

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ff5050;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

.nav-link.active {
  color:#ff5050;
  background-color: rgba(0, 0, 0, 0.44);
  box-shadow: 0 10px 15px -3px rgba(153, 27, 27, 0.2);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(117, 121, 130, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(1, 1, 1, 0.5);
  border-radius: 0.375rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 200px;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: rgba(75, 85, 99, 0.5);
  color: #ff5050;
}

.dropdown-item:first-child {
  border-radius: 0.375rem 0.375rem 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 0.375rem 0.375rem;
}

.nav-mobile {
  display: block;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none;
  }
}

.mobile-menu-btn {
  color: #d1d5db;
  padding: 0.9rem;
  border-radius: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.mobile-menu-btn:hover {
  color: #ff6b9d;
  background-color: rgba(75, 85, 99, 0.5);
}

.mobile-menu {
  background: rgba(156, 163, 175, 0.5);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(156, 163, 175, 0.5);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.mobile-nav-links {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ff6b9d;
  background-color: rgba(75, 85, 99, 0.5);
}

.mobile-nav-link.active {
  color: #ff6b9d;
  background-color: rgba(153, 27, 27, 0.3);
  box-shadow: 0 10px 15px -3px rgba(153, 27, 27, 0.2);
}

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

.rose-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 850px;
  height: 850px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.rose-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.25);
}

.rain-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

/* Raindrop CSS */
.raindrop {
  position: absolute;
  top: -10px;
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(255, 107, 157, 0.6), transparent);
  animation: fall linear infinite;
  border-radius: 1px;
}

@keyframes fall {
  0% {
    transform: translateY(-100vh);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

/* Square Animation */
.box1 div {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 6px solid #6b0000;
  z-index: 1;
}

.box1 div:nth-child(1) {
  top: 12%;
  left: 42%;
  animation: animate 10s linear infinite;
}
.box1 div:nth-child(2) {
  bottom: 70%;
  left: 50%;
  animation: animate 17s linear infinite;
}
.box1 div:nth-child(3) {
  bottom: 17%;
  left: 46%;
  animation: animate 9s linear infinite;
}
.box1 div:nth-child(4) {
  top: 20%;
  right: 60%;
  animation: animate 10s linear infinite;
}
.box1 div:nth-child(5) {
  top: 67%;
  left: 10%;
  animation: animate 10s linear infinite;
}
.box1 div:nth-child(6) {
  top: 20%;
  left: 40%;
  animation: animate 12s linear infinite;
}
.box1 div:nth-child(7) {
  top: 80%;
  left: 85%;
  animation: animate 15s linear infinite;
}
.box1 div:nth-child(8) {
  top: 32%;
  left: 25%;
  animation: animate 16s linear infinite;
}
.box1 div:nth-child(9) {
  top: 90%;
  left: 25%;
  animation: animate 9s linear infinite;
}
.box1 div:nth-child(10) {
  top: 40%;
  left: 80%;
  animation: animate 9s linear infinite;
}
.box1 div:nth-child(11) {
  top: 10%;
  left: 5%;
  animation: animate 10s linear infinite;
}
.box1 div:nth-child(12) {
  top: 10%;
  left: 80%;
  animation: animate 17s linear infinite;
}

@keyframes animate {
  0% {
    transform: scale(0) translateY(0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.3) translateY(-90px) rotate(360deg);
    opacity: 0;
  }
}

/* Remaining CSS (unchanged) */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(174, 21, 21, 0.513), #000000, #374151);
}

.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 2rem;
  }
}

.hero-text {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.hero-title-white {
  color: #ffffff;
}

.hero-title-rose {
  color: white;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #40080a);
  line-height: 0.70em;
  outline: none;
  animation: animate1 5s linear infinite;
}

@keyframes animate1 {
  0% {
    color: #40080a;
    text-shadow: none;
  }
  100% {
    color: white;
    text-shadow: 0 0 10px red, 0 0 20px red, 0 0 40px red, 0 0 80px red, 0 0 160px red;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

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

.scroll-icon {
  color: #ff6b9d;
  width: 2rem;
  height: 2rem;
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40%,
  43% {
    transform: translateX(-50%) translateY(-30px);
  }
  70% {
    transform: translateX(-50%) translateY(-15px);
  }
  90% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary {
  background-color: #dc2626;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #b91c1c;
}

.btn-outline {
  border: 1px solid #ff6b9d;
  color: #ff6b9d;
  background: transparent;
}

.btn-outline:hover {
  background-color: #ff6b9d;
  color: #000000;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.section-divider {
  width: 6rem;
  height: 0.25rem;
  background-color: #ef4444;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 42rem;
  margin: 2rem auto 0;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: #374151;
}

.about-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-circle {
  width: 20rem;
  height: 20rem;
  background: linear-gradient(to bottom right, #dc2626, #374151);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-inner-circle {
  width: 18rem;
  height: 18rem;
  background-color: #4b5563;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-rose {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
  filter: brightness(2) contrast(1.25);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b9d;
}

.about-paragraph {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.75;
}

.about-actions {
  display: flex;
  gap: 1rem;
}

/* Experience Section */
.experience-section {
  padding: 5rem 0;
  background-color: #000000;
}

.experience-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.experience-card {
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border-left: 4px solid #ef4444;
}

.experience-card:hover {
  border-color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.2);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.experience-company {
  flex: 1;
}

.experience-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.experience-company-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b9d;
  margin-bottom: 0;
}

.experience-period {
  background-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.experience-description {
  margin-bottom: 1.5rem;
}

.experience-description p {
  color: #d1d5db;
  line-height: 1.6;
}

.experience-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Education Section */
.education-section {
  padding: 5rem 0;
  background-color: #374151;
}

.education-content {
  max-width: 48rem;
  margin: 0 auto;
}

.education-card {
  background-color: #000000;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.education-card:hover {
  border-color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.2);
}

.education-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.education-icon .icon {
  color: #ffffff;
  width: 2rem;
  height: 2rem;
}

.education-details {
  flex: 1;
}

.education-degree {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.education-institution {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ff6b9d;
  margin-bottom: 0.5rem;
}

.education-period {
  background-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.education-grade {
  font-size: 1rem;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 1rem;
}

.education-activities h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.education-activities p {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Awards Section */
.awards-section {
  padding: 5rem 0;
  background-color: #000000;
}

.awards-content {
  max-width: 48rem;
  margin: 0 auto;
}

.award-card {
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.award-card:hover {
  border-color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.2);
}

.award-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.award-icon .icon {
  color: #ffffff;
  width: 2rem;
  height: 2rem;
}

.award-details {
  flex: 1;
}

.award-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.award-organization {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ff6b9d;
  margin-bottom: 0.5rem;
}

.award-year {
  background-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.award-description p {
  color: #d1d5db;
  line-height: 1.6;
}

/* Skills Section */
.skills-section {
  padding: 5rem 0;
  background-color: #374151;
}

.skills-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.skill-card {
  background-color: #000000;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.skill-card:hover {
  border-color: #ef4444;
}

.skill-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.skill-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.skill-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skill-badge {
  background-color: #4b5563;
  color: #d1d5db;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

/* Portfolio Section */
.portfolio-section {
  padding: 5rem 0;
  background-color: #000000;
}

.projects-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.project-card:hover {
  border-color: #ef4444;
}

.project-image {
  width: 100%;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-image.suramed {
  background: linear-gradient(to bottom right, #ffc400, #ff0000, #2feab5);
}

.project-image.dr-ai {
  background: linear-gradient(to bottom right, #5600b8, #44dbca);
}

.project-image.imvusa {
  background: linear-gradient(to bottom right, #ea580c, #dc2626);
}

.project-image.dr-s {
  background: linear-gradient(to bottom right, #389a35, #89b780, #2feab5);
}

.project-emoji {
  font-size: 3rem;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-content {
  padding: 1.5rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.project-duration {
  font-size: 0.875rem;
  color: #ff6b9d;
}

.project-description {
  color: #9ca3af;
  margin-bottom: 1rem;
}

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

.project-tag {
  background-color: rgba(153, 27, 27, 0.3);
  color: #fca5a5;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

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

.project-link {
  color: #ff6b9d;
  font-size: 0.875rem;
  text-decoration: underline;
}

.project-link:hover {
  color: #fca5a5;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: #374151;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-cards {
    grid-template-columns: repeat(5, 1fr);
  }
}

.contact-card {
  background-color: #000000;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  background-color: #000000;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #ef4444;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon .icon {
  color: #ffffff;
  width: 1.5rem;
  height: 1.5rem;
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-link {
  color: #ff6b9d;
  font-size: 0.875rem;
  text-decoration: none;
  word-break: break-all;
}

.contact-link:hover {
  color: #fca5a5;
}

/* Contact Form */
.contact-form-container {
  max-width: 42rem;
  margin: 0 auto;
}

.contact-form {
  background-color: #000000;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 2rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ef4444;
}

.form-textarea {
  resize: none;
}

/* Footer */
.footer {
  background-color: #000000;
  border-top: 1px solid #4b5563;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-brand {
    margin-bottom: 0;
  }
}

.footer-logo {
  height: 4.5rem;
  width: 18.5rem;
  background-color: #4b5563;
  border-radius: 0.5rem ;
  margin-right: 0.7rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9d2b2b;
  margin-bottom: 0.25rem;
}

.footer-subtitle {
  color: #9ca3af;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ff6b9d;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .about-circle {
    width: 16rem;
    height: 16rem;
  }

  .about-inner-circle {
    width: 14rem;
    height: 14rem;
  }

  .about-rose {
    width: 8rem;
    height: 8rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .experience-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience-period {
    align-self: flex-start;
  }

  .education-card,
  .award-card {
    flex-direction: column;
    text-align: center;
  }

  .education-icon,
  .award-icon {
    align-self: center;
  }
}

/* Mobile Responsive for Dropdown */
@media (max-width: 767px) {
  .nav-dropdown {
    display: none;
  }

  .achievement-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .achievement-year {
    align-self: flex-start;
    min-width: auto;
  }

  .certification-card {
    flex-direction: column;
    text-align: center;
  }

  .certification-icon {
    align-self: center;
  }
}

/* Achievements Section */
.achievements-section {
  padding: 5rem 0;
  background-color: #374151;
}

.achievements-content {
  max-width: 48rem;
  margin: 0 auto;
}

.achievement-category {
  background-color: #000000;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.achievement-category:hover {
  border-color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.2);
}

.achievement-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #4b5563;
}

.achievement-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement-emoji {
  font-size: 2rem;
}

.achievement-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.achievement-list {
  display: grid;
  gap: 1rem;
}

.achievement-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem;
  background-color: rgba(75, 85, 99, 0.2);
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background-color: rgba(75, 85, 99, 0.3);
  transform: translateX(5px);
}

.achievement-year {
  background-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  min-width: 4rem;
  text-align: center;
}

.achievement-details {
  flex: 1;
}

.achievement-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.achievement-description {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Certifications Section */
.certifications-section {
  padding: 5rem 0;
  background-color: #000000;
}

.certifications-content {
  max-width: 48rem;
  margin: 0 auto;
}

.certification-card {
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.certification-card:hover {
  border-color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.2);
}

.certification-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.certification-icon .icon {
  color: #ffffff;
  width: 2rem;
  height: 2rem;
}

.certification-details {
  flex: 1;
}

.certification-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.certification-organization {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ff6b9d;
  margin-bottom: 0.5rem;
}

.certification-year {
  background-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.certification-description p {
  color: #d1d5db;
  line-height: 1.6;
}

/* Accolades Section */
.accolades-section {
  padding: 5rem 0;
  background-color: #000000;
}

.accolades-content {
  max-width: 48rem;
  margin: 0 auto;
}

.accolade-category {
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.accolade-category:hover {
  border-color: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.2);
}

.accolade-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #4b5563;
}

.accolade-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accolade-emoji {
  font-size: 2rem;
}

.accolade-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.accolade-list {
  display: grid;
  gap: 1rem;
}

.accolade-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem;
  background-color: rgba(75, 85, 99, 0.2);
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.accolade-item:hover {
  background-color: rgba(75, 85, 99, 0.3);
  transform: translateX(5px);
}

.accolade-year {
  background-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  min-width: 5rem;
  text-align: center;
}

.accolade-details {
  flex: 1;
}

.accolade-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.accolade-description {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Mobile Responsive for Accolades */
@media (max-width: 767px) {
  .accolade-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .accolade-year {
    align-self: flex-start;
    min-width: auto;
  }
}
