/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4a6fa5;
  --secondary-color: #166088;
  --accent-color: #17b890;
  --dark-bg: #0d1b2a;
  --light-bg: #e0e5ec;
  --text-dark: #2c3e50;
  --text-light: #f8f9fa;
  --shadow-light: 8px 8px 15px #a3b1c6, -8px -8px 15px #ffffff;
  --shadow-dark: 5px 5px 10px #0a141f, -5px -5px 10px #1a2535;
  --shadow-inset: inset 4px 4px 8px #a3b1c6, inset -4px -4px 8px #ffffff;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--transition);
}

body.dark-mode {
  background: var(--dark-bg);
  color: var(--text-light);
}

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

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 111, 165, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Neomorphic Card */
.neomorphic {
  background: var(--light-bg);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.dark-mode .neomorphic {
  background: var(--dark-bg);
  box-shadow: var(--shadow-dark);
}

.neomorphic:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 20px #a3b1c6, -12px -12px 20px #ffffff;
}

.dark-mode .neomorphic:hover {
  box-shadow: 8px 8px 15px #0a141f, -8px -8px 15px #1a2535;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(224, 229, 236, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: var(--transition);
}

.dark-mode .navbar {
  background: rgba(13, 27, 42, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.theme-toggle {
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  background: var(--light-bg);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.theme-toggle:hover {
  transform: rotate(30deg);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.dark-mode .nav-link {
  color: var(--text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Fix for Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.dark-mode .hamburger span {
  background: var(--text-light);
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu styles */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--light-bg);
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .dark-mode .nav-menu {
    background: var(--dark-bg);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 12px 15px;
    width: 100%;
    text-align: center;
    border-radius: 8px;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: rgba(74, 111, 165, 0.1);
  }
}

/* Make navbar fixed on mobile */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Add padding to body for fixed navbar */
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}
/* Hero Section */
.hero {
  padding: 10px 0 100px;
  margin-top: 60px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-role {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.dark-mode .hero-role {
  color: #7db4d8;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat h3 {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
}

.image-wrapper {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  overflow: hidden;
  border-radius: 50%;
  z-index: 2;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  animation: rotate 10s linear infinite;
  z-index: 1;
}

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

@-webkit-keyframes rotate {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes rotate {
  0% { -moz-transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); }
}

.tech-stack {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tech-tag {
  padding: 8px 16px;
  background: var(--light-bg);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-light);
}

.dark-mode .tech-tag {
  background: var(--dark-bg);
  box-shadow: var(--shadow-dark);
}

/* Sections */
.section {
  padding: 100px 0;
}

.bg-alt {
  background: rgba(224, 229, 236, 0.3);
}

.dark-mode .bg-alt {
  background: rgba(13, 27, 42, 0.3);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.about-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}

.card-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.card h4 {
  margin-bottom: 10px;
}

.card-sub {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Skills Section */
.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.skill-category {
  padding: 25px;
  border-radius: 20px;
}

.skill-category h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: var(--accent-color);
}

.skill-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-name {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.skill-bar {
  height: 10px;
  background: rgba(224, 229, 236, 0.5);
  border-radius: 5px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 5px;
  width: 0;
  transition: width 1.5s ease;
}

/* ... (keep all previous styles) ... */

/* Education Section */
.education-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.education-category {
  margin-bottom: 40px;
}

.education-category h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.education-timeline {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.education-item {
  padding: 25px;
  position: relative;
}

.education-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.education-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.education-header h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin: 0;
}

.education-year {
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.education-details {
  padding-left: 15px;
}

.education-school {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.dark-mode .education-school {
  color: var(--text-light);
}

.education-info {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.education-board,
.education-percentage {
  padding: 5px 12px;
  background: rgba(74, 111, 165, 0.1);
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
}

.dark-mode .education-board,
.dark-mode .education-percentage {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.education-stream {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--text-dark);
  opacity: 0.9;
}

.dark-mode .education-stream {
  color: var(--text-light);
}

.education-achievements {
  margin-top: 15px;
  padding-left: 20px;
}

.education-achievements li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 5px;
}

.education-achievements li::marker {
  color: var(--accent-color);
}

/* Academic Achievements */
.achievements-container {
  margin-top: 60px;
}

.achievements-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.achievement-card {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.achievement-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.achievement-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.achievement-card p {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.achievement-year {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 10px;
}

/* Responsive adjustments for education section */
@media (max-width: 768px) {
  .education-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .education-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  .education-item {
    padding: 20px 15px;
  }
  
  .education-header h4 {
    font-size: 1.1rem;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

/* Projects Section */
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.project-card {
  overflow: hidden;
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-content {
  padding: 25px;
}

.project-content h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.project-tech span {
  padding: 5px 12px;
  background: rgba(74, 111, 165, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
}

.dark-mode .project-tech span {
  background: rgba(255, 255, 255, 0.1);
}

.project-links {
  display: flex;
  gap: 15px;
}

.project-link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.project-link:hover {
  color: var(--accent-color);
}

.view-more {
  text-align: center;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--accent-color);
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-date {
  flex: 0 0 150px;
  text-align: right;
  padding-right: 30px;
  font-weight: 500;
  color: var(--accent-color);
}

.timeline-content {
  flex: 1;
  padding: 25px;
  margin-left: 30px;
  text-align: left;
}

.timeline-content h3 {
  margin-bottom: 5px;
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 500;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 25px;
  text-align: center;
}

.contact-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.contact-card h4 {
  margin-bottom: 10px;
}

.contact-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--accent-color);
}

.contact-form {
  padding: 30px;
}

.contact-form h3 {
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: var(--light-bg);
  box-shadow: var(--shadow-inset);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-dark);
}

.dark-mode .form-group input,
.dark-mode .form-group textarea {
  background: var(--dark-bg);
  color: var(--text-light);
  box-shadow: inset 4px 4px 8px #0a141f, inset -4px -4px 8px #1a2535;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--accent-color);
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background: var(--light-bg);
  padding: 50px 0 20px;
  text-align: center;
}

.dark-mode .footer {
  background: var(--dark-bg);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.dark-mode .footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

.dark-mode .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  color: var(--accent-color);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-date {
    text-align: left;
    padding-left: 60px;
    margin-bottom: 10px;
  }
  
  .timeline-content {
    margin-left: 60px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--light-bg);
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .dark-mode .nav-links {
    background: var(--dark-bg);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .projects-container {
    grid-template-columns: 1fr;
  }
  
  .image-container {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .about-info {
    grid-template-columns: 1fr;
  }
  
  .image-container {
    width: 250px;
    height: 250px;
  }
  
  .tech-stack {
    gap: 8px;
  }
  
  .tech-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* Enhanced Compatibility */
.neomorphic:hover,
.back-to-top:hover,
.social-link:hover,
.btn-primary:hover,
.btn-secondary:hover,
.theme-toggle:hover,
.project-card:hover .project-image img {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
}

.neomorphic,
.nav-link,
.theme-toggle,
.project-link,
.contact-card a,
.footer-links a,
.social-link,
.btn,
.project-image img,
.skill-progress,
body,
.hamburger span {
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}

.neomorphic,
.card,
.contact-form,
.project-tag,
.tech-tag,
.image-wrapper,
.logo-img img,
.theme-toggle,
.social-link,
.back-to-top {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.btn,
.project-tech span {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.social-link,
.back-to-top,
.logo-img img,
.image-wrapper {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}