/* Global Styles */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

/* body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  flex-direction: column;
  padding: 20px;
  margin: 0;
  transition: background-color 0.3s, color 0.3s;
} */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  transition: background-color 0.3s, color 0.3s;
}


/* Header */
header {
  background-color: #222;
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2rem;
  color: #ff9f00;
  margin-bottom: 20px;
}

header nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

header a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

header a:hover {
  color: #ff9f00;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  background: linear-gradient(145deg, #111, #1a1a1a);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin: 2rem auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 159, 0, 0.1));
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 60%;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ff9f00, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideIn 1s ease-out;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: #e6e6e6;
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
  width: 280px;
  height: 280px;
  margin-left: 2rem;
  flex-shrink: 0;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff9f00, #ff6b6b);
  z-index: 0;
  animation: rotate 10s linear infinite;
}

.hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-in-out;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 100%;
  overflow-x: auto;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  text-align: center;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat .number {
  font-size: 2rem;
  font-weight: bold;
  color: #ff9f00;
  display: block;
  margin-bottom: 0.5rem;
}

.stat .label {
  font-size: 0.9rem;
  color: #ccc;
}

/* Dashboard Section */
.dashboard {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 1200px;
}

.dashboard h2 {
  text-align: center;
  color: #ff9f00;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.dashboard-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.dashboard-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
  display: flex;
  flex-direction: column;
}

.dashboard-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dashboard-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dashboard-content {
  padding: 1rem;
  flex-grow: 1;
}

.dashboard-content h3 {
  color: #ff9f00;
  margin-bottom: 1rem;
}

.dashboard-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.dashboard-link {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ff9f00;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin: 0;
  white-space: nowrap;
}

.dashboard-link:hover {
  background: #28a745;
}

.dashboard-links {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin: 0.5rem 0 1rem 0;
  flex-wrap: wrap;
}


/* Skills Section */
.skills {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skills h2 {
  text-align: center;
  color: #ff9f00;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.skills ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.skills li {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skills li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 1rem;
  font-size: 1.5rem;
  width: 2rem;
  text-align: center;
}

.skills li:nth-child(1)::before {
  content: "\f3c5";
  color: #ff6347;
  animation: pulse 2s ease-in-out infinite;
}

.skills li:nth-child(2)::before {
  content: "\f0c0";
  color: #32cd32;
  animation: bounce 2s ease-in-out infinite;
}

.skills li:nth-child(3)::before {
  content: "\f121";
  color: #1e90ff;
  animation: zoomIn 2s ease-in-out infinite;
}

.skills li:nth-child(4)::before {
  content: "\f1c0";
  color: #ff4500;
  animation: rotate 3s linear infinite;
}

.skills li:nth-child(5)::before {
  content: "\f080";
  color: #FF9F1C;
  animation: bounce 2s infinite;
}

.skills li:nth-child(6)::before {
  content: "\f201";
  color: #2AB7CA;
  animation: pulse 2s infinite;
}

.skills li:nth-child(7)::before {
  content: "\f130";
  color: #F87060;
  animation: bounce 2s infinite;
}

.skills li:nth-child(8)::before {
  content: "\f06e";
  color: #50C878;
  animation: spin 3s infinite;
}

.skills li:hover {
  transform: translateY(-5px);
  background: rgba(255, 159, 0, 0.2);
  box-shadow: 0 5px 15px rgba(255, 159, 0, 0.2);
}

/* Certifications Section */
.certifications {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 900px;
}

.certifications h2 {
  text-align: center;
  color: #ff9f00;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2rem;
}

.cert-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cert-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 159, 0, 0.2);
  background: rgba(255, 159, 0, 0.1);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 159, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon i {
  font-size: 1.8rem;
  color: #ff9f00;
}

.cert-content {
  flex: 1;
}

.cert-content h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  color: #ff9f00;
}

.cert-issuer {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.cert-date {
  font-size: 0.8rem;
  opacity: 0.6;
}

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

.view-cert,
.download-cert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cert-actions i {
  font-size: 1rem;
}

.view-cert:hover,
.download-cert:hover {
  background: #ff9f00;
  color: white;
}

/* Projects Section */
.projects {
  padding: 2rem;
  max-width: 100%;
  overflow-x: hidden;
}

.projects h2 {
  text-align: center;
  color: #ff9f00;
  margin-bottom: 2rem;
}

.project-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 1rem;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-content h3 {
  color: #ff9f00;
  margin-bottom: 1rem;
}

.project-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

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

.project-tags span {
  background: rgba(255, 159, 0, 0.1);
  color: #ff9f00;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ff9f00;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin: 0 1rem 1rem 1rem;
}

.project-link:hover {
  background: #28a745;
}

/* Testimonials */
.testimonials {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  max-width: 500px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #e6e6e6;
}

.testimonial-card h4 {
  color: #ff9f00;
  text-align: right;
}

/* Contact Form */
.contact-form {
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  max-width: 100%;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ff9f00;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #555;
  border-radius: 5px;
  background-color: #444;
  color: #fff;
}

.contact-form button {
  background-color: #ff9f00;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

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

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: #ff9f00;
  width: 100%;
  margin-top: 50px;
}

footer a {
  color: #ff9f00;
  margin: 0 10px;
  text-decoration: none;
}

footer a:hover {
  color: #28a745;
  opacity: 0.7;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #ff9f00;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a i {
  font-size: 1.25rem;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: #ff9f00;
  color: white;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #444;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 1000;
}

.dark-mode-toggle:hover {
  background-color: #ff9f00;
  transform: scale(1.1);
}

.toggle-icon {
  font-size: 24px;
}

/* Dark Mode Styles */
body.dark-mode {
  background-color: #121212;
  color: #e6e6e6;
}

body.dark-mode header {
  background-color: #333;
}

body.dark-mode .project-card {
  background-color: #2d2d2d;
}

body.dark-mode .project-card p {
  color: #dcdcdc;
}

body.dark-mode .dashboard-item {
  background: #222;
}

body.dark-mode .dashboard-item h3 {
  color: #fff;
}

body.dark-mode .dashboard-item p {
  color: #dcdcdc;
}

body.dark-mode .testimonial-card p {
  color: #dcdcdc;
}

/* Light Mode Styles */
body.light-mode {
  background-color: #f9f9f9;
  color: #333;
}

body.light-mode header {
  background-color: #fff;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.light-mode header nav a {
  color: #333;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

body.light-mode header nav a:hover {
  color: #ff9f00;
}

body.light-mode header nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff9f00;
  transition: width 0.3s ease;
}

body.light-mode header nav a:hover::after {
  width: 100%;
}

body.light-mode .hero {
  background: linear-gradient(145deg, #f8f9fa, #fff);
  color: #333;
}

body.light-mode .hero-content p {
  color: #666;
}

body.light-mode .stat {
  background: rgba(0, 0, 0, 0.05);
}

body.light-mode .stat .label {
  color: #666;
}

body.light-mode .skills {
  background: rgba(0, 0, 0, 0.03);
}

body.light-mode .skills li {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #333;
}

body.light-mode .skills li:hover {
  background: rgba(255, 159, 0, 0.1);
}

body.light-mode .project-card {
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.light-mode .project-card p {
  color: #666;
}

body.light-mode .project-link {
  background-color: #007bff;
}

body.light-mode .project-link:hover {
  background-color: #0056b3;
}

body.light-mode .dashboard-item {
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eaeaea;
}

body.light-mode .dashboard-item h3 {
  color: #333;
  font-weight: 600;
}

body.light-mode .dashboard-item p {
  color: #555;
}

body.light-mode .cert-card {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.light-mode .cert-card:hover {
  background: rgba(255, 159, 0, 0.05);
}

body.light-mode .contact-form {
  background-color: #fff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid #ddd !important;
}

body.light-mode .contact-form h2 {
  color: #ff9f00 !important;
}

body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
  background-color: #f9f9f9 !important;
  color: #333 !important;
  border: 1px solid #ddd !important;
}

body.light-mode .contact-form input::placeholder,
body.light-mode .contact-form textarea::placeholder {
  color: #999 !important;
}

body.light-mode .contact-form button {
  background-color: #ff9f00 !important;
  color: #fff !important;
}

body.light-mode .contact-form button:hover {
  background-color: #28a745 !important;
}

body.light-mode footer {
  background-color: #f4f4f4;
  color: #555;
}

body.light-mode .social-links a {
  background: rgba(0, 0, 0, 0.05);
}

body.light-mode .social-links a:hover {
  background: #ff9f00;
  color: #fff;
}

body.light-mode .testimonial-card {
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.light-mode .testimonial-card p {
  color: #555;
}

/* Animations */
@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .hero-image {
    margin-left: 0;
    width: 220px;
    height: 220px;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  header {
    padding: 15px;
  }

  .hero,
  .dashboard,
  .projects,
  .skills {
    padding: 1rem;
  }

  .project-grid,
  .dashboard-grid {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .project-card,
  .dashboard-item {
    width: 90%;
    max-width: 400px;
  }

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

  .cert-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .cert-icon {
    margin: 0 auto;
  }

  .cert-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat {
    width: 100%;
    max-width: 200px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }
}



/* ===== ABOUT SECTION ===== */
.about-section {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff9f00;
  margin-bottom: 1.2rem;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #dcdcdc;
  margin-bottom: 1.8rem;
  max-width: 850px;
}

.about-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: #ff9f00;
  font-weight: 600;
  border-left: 4px solid #ff9f00;
  padding-left: 10px;
}

.about-content ul {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.about-content ul li {
  padding: 8px 0;
  font-size: 1rem;
  color: #e6e6e6;
  position: relative;
  padding-left: 20px;
}

.about-content ul li::before {
  content: "•";
  color: #ff9f00;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 4px;
}

/* ===== EXPERIENCE BLOCK ===== */
.experience-item {
  margin-bottom: 2rem;
  padding: 1.2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #ff9f00;
}

.experience-item h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.experience-item .date {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 0.8rem;
}

/* ===== ACHIEVEMENTS ===== */
.achievements {
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  padding: 2rem;
}

.achievements h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff9f00;
}

.achievement-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.achievement-card {
  flex: 1 1 250px;
  min-height: 160px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-card i {
  font-size: 2rem;
  color: #ff9f00;
  margin-bottom: 0.8rem;
}

.achievement-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.achievement-card p {
  font-size: 0.95rem;
  color: #dcdcdc;
  line-height: 1.4;
}

.achievement-card:hover {
  transform: translateY(-5px);
}

/* ABOUT SECTION - DARK MODE */
body.dark-mode .about-section {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

body.dark-mode .about-content h2,
body.dark-mode .about-content h3 {
  color: #ff9f00;
}

body.dark-mode .about-content p,
body.dark-mode .about-content li,
body.dark-mode .experience-item .date {
  color: #dcdcdc;
}

body.dark-mode .experience-item {
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid #ff9f00;
}

/* ABOUT SECTION - LIGHT MODE */
body.light-mode .about-section {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e6e6e6;
}

body.light-mode .about-content h2,
body.light-mode .about-content h3 {
  color: #ff9f00;
}

body.light-mode .about-content p {
  color: #444;
  /* readable neutral */
}

body.light-mode .about-content ul li {
  color: #333;
  /* better for body lists */
}

body.light-mode .about-content ul li::before {
  color: #ff9f00;
}

body.light-mode .experience-item {
  background: #fafafa;
  border-left: 3px solid #ff9f00;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
}

body.light-mode .experience-item h4 {
  color: #333;
}

body.light-mode .experience-item .date {
  color: #777;
}

/* ACHIEVEMENTS - LIGHT MODE */
body.light-mode .achievements h2 {
  color: #ff9f00;
}

body.light-mode .achievement-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .achievement-card i {
  color: #ff9f00;
}

body.light-mode .achievement-card h3 {
  color: #333;
}

body.light-mode .achievement-card p {
  color: #555;
}


.contact-section {
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
  padding: 2rem;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-row {
  display: flex;
  flex-direction: column;
  text-align: left;
}

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

.submit-btn {
  padding: 10px;
  border: none;
  background: #ff9f00;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}


body.dark-mode .contact-section input,
body.dark-mode .contact-section textarea {
  background: #333;
  color: #eee;
  border: 1px solid #555;
}

body.dark-mode .contact-section label,
body.dark-mode .contact-section p {
  color: #e6e6e6;
}

body.dark-mode .submit-btn {
  background: #ff9f00;
  color: white;
}

body.light-mode .contact-section input,
body.light-mode .contact-section textarea {
  background: #fff;
  color: #333;
}

.floating-social {
  position: fixed;
  top: 25%;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-social .icon {
  width: 42px;
  height: 42px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Individual colors */
.floating-social .linkedin {
  background: #0A66C2;
}

.floating-social .github {
  background: #333;
}

.floating-social .email {
  background: #D44638;
}

/* Hover animations */
.floating-social .icon:hover {
  transform: translateX(4px);
  background: #ff9f00;
  color: #fff;
}

body.light-mode .floating-social .icon {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
  .floating-social {
    top: auto;
    bottom: 20px;
    flex-direction: row;
    left: 50%;
    transform: translateX(-50%);
  }
}

.glow-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

body.light-mode .glow-name {
  color: #ff9f00;
  text-shadow: 0 0 10px rgba(255, 159, 0, 0.4);
}