@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-top: #8596cb;
  --bg-bottom: #eaeefb;
  --accent: #233b83;
  --accent-light: #0b59d7;
  --accent-bright: #57dcf1;
  --text-light: #ffffff;
  --text-muted: #cdd8f6;
  --card-grad-1: #8796c4;
  --card-grad-2: #aab6de;
  --dark-grad-1: #07135a;
  --dark-grad-2: #4054c2;
  --black-grad-1: #1d1c1c;
  --black-grad-2: #2b2929;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 24px rgba(10, 20, 60, 0.18);
  --shadow-lg: 0 16px 40px rgba(10, 20, 60, 0.22);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  background-attachment: fixed;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--accent-bright);
  color: #07135a;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-bottom);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

.header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: var(--space-sm) var(--space-md);
  top: 0;
  z-index: 500;
}

.row { width: 100%; }

.nav {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.name {
  font-size: 1.8rem;
  font-weight: 210;
  letter-spacing: -0.01em;
  font-family: "Rubik", sans-serif;
  color: var(--text-light);
  text-decoration: none;
  margin-right: auto;
}

.nav_links {
  list-style: none;
  display: flex;
  gap: var(--space-md);
  margin-right: var(--space-lg);
}

.nav_link a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 17px;
  padding: 6px 2px;
  transition: color 0.3s ease;
}

.nav_link a:hover {
  color: #0f4b87;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  position: fixed;
  right: 20px;
  top: 16px;
  z-index: 9999;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  transition: all 0.35s var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: linear-gradient(180deg, #04090f4b, #0d151e71);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 90px 30px 30px;
  gap: 6px;
  transition: right 0.45s var(--ease);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-menu a:hover {
  color: var(--accent-bright);
  padding-left: 8px;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 92vh;
  padding: var(--space-lg) var(--space-md);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  width: 100%;
  gap: var(--space-sm);
}

.hero-text {
  flex: 0 1 480px;
  opacity: 0;
  animation: rise 1s var(--ease) forwards;
  animation-delay: 0.15s;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

.hero-text p {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 500;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

.hero-text .new {
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.contact-social {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}

.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 12px 28px;
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 125%;
}

.btn:hover {
  background-color: #ffffff;
  color: #111;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  color: var(--text-light);
  font-size: 1.4rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.1);
}

.hero-image {
  flex: 0 0 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) forwards, float 5s ease-in-out infinite;
  animation-delay: 0.5s, 1.5s;
  position: relative;
  margin-top: -2.5rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-image::before {
  content: '';
  position: absolute;
  width: calc(100% + 36px);
  aspect-ratio: 1 / 1;
  max-width: 460px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(87, 220, 241, 0.12));
  filter: blur(2px);
  z-index: 0;
  animation: pulseGlow 3.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(87, 220, 241, 0.25); }
  50% { box-shadow: 0 0 0 18px rgba(87, 220, 241, 0); }
}

.hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, 0.3);
}

h1 {
  position: relative;
  font-family: monospace;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
  padding-top: 18px;
  display: inline-block;
}

h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent);
}

h1::after {
  content: '';
  position: absolute;
  bottom: -7.5px;
  left: 0;
  width: 100%;
  height: 1.1px;
  background-color: #fff;
}

h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0b59d7;
}

h3 {
  font-size: 1rem;
  font-weight: 400;
  color: #aaa;
}

h4 {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgb(190, 202, 215);
}

h6 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #57dcf1;
  font-size: 1.05rem;
  font-weight: 100;
}

.content-section {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: var(--space-xl) auto;
  padding: 0 var(--space-md);
  opacity: 0;
  animation: rise 0.9s var(--ease) forwards;
}

.about-image { flex: 1; }

.about-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-text { flex: 1.6; }

.about-text p,
.content-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.content3 {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--space-md);
  align-items: start;
}

.content3 h1 {
  grid-column: 1 / -1;
}

.skills-section {
  background: transparent;
  padding: var(--space-xl) 0;
}

.skills-section .content-section {
  margin: 0 auto;
}

.skill-category { margin-bottom: var(--space-md); }

.category-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skill-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bubble {
  padding: 8px 18px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(170, 196, 255, 0.25);
  color: white;
  border-color: white;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.25s ease, border-color 0.25s ease,
              color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.bubble:hover {
  background-color: rgba(100, 149, 255, 0.22);
  border-color: #52a4f1;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 191, 255, 0.538);
  transform: translateY(-2px);
}

.education-section {
  background: transparent;
  padding: var(--space-xl) 0;
}

.education-section .content-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
  margin: 0 auto;
}

.education-section h1 {
  grid-column: 1 / -1;
  text-align: center;
  display: block;
}

.education-section h1::before {
  left: 50%;
  transform: translateX(-50%);
}

.education-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: 0;
  padding: var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.education-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-md);
}


.education-text ul { margin-left: 18px; }
.education-text ul li { font-size: 1rem; color: #fff; margin-bottom: 6px; }

.education-text h1,
.education-text h2 {
  color: #fff;
}

.education-text h1,
.education-text h1::before,
.education-text h1::after,
.experience-text h1,
.experience-text h1::before,
.experience-text h1::after,
.project-details h2,
.acheivement-item h1,
.acheivement-item h1::before,
.acheivement-item h1::after {
  padding-top: 0;
}

.education-text h1::before,
.experience-text h1::before,
.acheivement-item h1::before {
  display: none;
}

.education-text h1::after,
.experience-text h1::after,
.acheivement-item h1::after {
  display: none;
}

.education-text h1::after {
  background-color: #fff;
}

.education-text h3 {
  color: rgba(255, 255, 255, 0.85);
}

.education-text p {
  color: #fff;
}

.content2 {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.content2::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 100px;
  bottom: 40px;
  width: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.experience-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: linear-gradient(180deg, var(--card-grad-1), var(--card-grad-2));
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.experience-item:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(87, 220, 241, 0.2);
}

.name {
    display: flex;
    align-items: center;
    gap: 8px;                 

    font-size: 1.8rem;
    font-weight: 210;
    letter-spacing: -0.01em;
    font-family: "Rubik", sans-serif;
    color: var(--text-light);
    text-decoration: none;

    margin-right: auto;
}

.logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;

    margin-top: -2px; 
}

.logo-image {
  transition: transform 0.4s var(--ease);
}


.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.name span {
    line-height: 1;
}

.experience-text h1 { font-size: 1.4rem; margin-bottom: 2px; }
.experience-text h2 { font-size: 1.05rem; color: #fff; font-weight: 600; margin-bottom: 2px; }
.experience-text h3 { font-size: 0.92rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 10px; }
.experience-text p { font-size: 1rem; line-height: 1.6; color: #fff; }

.acheivements-section {
  background: transparent;
  padding: var(--space-xl) 0;
}

.acheivements-section h1 {
  display: block;
  text-align: center;
}

.acheivements-section h1::before {
  left: 50%;
  transform: translateX(-50%);
}

.acheivement-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  background-color: rgba(255, 255, 255, 0.06);
}

.acheivement-item img {
  width: 90px;
  border-radius: var(--radius-sm);
}

.acheivement-image {
  width: 100%;
  max-width: 630px;
  height: auto;
  border-radius: var(--radius-md);
}

.project-container {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: linear-gradient(180deg, var(--card-grad-1), var(--card-grad-2));
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-container:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(87, 220, 241, 0.25);
  border-color: rgba(87, 220, 241, 0.5);
}

.project-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex-shrink: 0;
}

.project-details h2 { margin-bottom: 8px; }

.project {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.project:hover { color: #064e9a; }

.project-details p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 8px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin: var(--space-xl) auto;
  padding: var(--space-md);
  gap: var(--space-md);
}

.contact-info,
.contact-form {

  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-info { width: 38%; }
.contact-form { width: 58%; }

.contact-info h2,
.contact-form h2 { color: white; margin-bottom: 14px; }

.contact-info a {
  text-decoration: none;
  color: var(--accent-light);
  font-weight: 600;
}

.contact-info a:hover { color: navy; }

.contact-info .social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 1rem;
  color: var(--accent);
}

.contact-info .social-links a:hover { color: var(--accent-light); }

.contact-form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
  color: #222;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #f7f8fc;
  color: #111;
  border: 1px solid #d8dcea;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(11, 89, 215, 0.15);
}

.contact-form button {
  background: var(--accent-light);
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  margin-top: 8px;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

.contact-form button:hover {
  background: #021a7c;
  transform: translateY(-2px);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.service-card {
  background: #ffffff;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card i { font-size: 1.8rem; color: var(--accent); margin-bottom: var(--space-xs); }
.service-card p { color: #333; }
.service-title { font-size: 1.1rem; font-weight: 700; color: #111; }

.contact-me { text-align: center; margin-top: var(--space-lg); }
.contact-me h2 { font-size: 1.8rem; color: #fff; }
.contact-me p { font-size: 1.05rem; color: #111; margin-bottom: var(--space-sm); }

.contact-me a {
  text-decoration: none;
  background-color: var(--accent-light);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  display: inline-block;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

.contact-me a:hover {
  background: #0056b3;
  transform: translateY(-2px);
}


@keyframes rise {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.skills-section,
.education-section,
.acheivements-section,
.contact-container {
  opacity: 0;
  animation: rise 0.9s var(--ease) forwards;
}

.content-section { animation-delay: 0.1s; }
.skills-section { animation-delay: 0.2s; }
.education-section { animation-delay: 0.25s; }
.acheivements-section { animation-delay: 0.25s; }
.contact-container { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
  }
}


@media (max-width: 900px) {
  .nav_links { margin-right: var(--space-md); gap: var(--space-sm); }
  .hero-content { gap: var(--space-lg); }
  .hero-text { flex-basis: 420px; }
  .hero-image { flex-basis: 360px; }
  .hero-image img { max-width: 320px; }
  .hero-image::before { max-width: 350px; }
}

@media (max-width: 768px) {
  body{overflow-x:hidden;}
  section{padding:60px 20px;}
  .header{padding:15px 20px;}
  .name{font-size:1.45rem;}
  .nav_links{display:none;}
  .menu-overlay{display:block;}
  .hamburger{display:flex;}
.hero { min-height: auto; padding: 56px var(--space-sm) 36px; }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
  }

  @media (max-width: 768px) {
  .content3 {
    grid-template-columns: 1fr;
    padding: 40px 16px;
    gap: var(--space-md);
  }

  .content3 h1 {
    grid-column: 1 / -1;
    text-align: left;
  }

  .project-container {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .project-logo {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    margin: 0;
  }

  .project-details {
    flex: 1;
    min-width: 0;
  }

  .project-details h2 {
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .project-details p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .project {
    font-size: 1rem;
  }
}
 
  .hero-text { flex: none; max-width: 100%; width: 100%; }
  .hero-text h1{font-size:2rem;line-height:1.2;font-family:'Poppins','Segoe UI',sans-serif;font-weight:500;}
  .hero-text p{font-size:1.1rem;}
  .hero-text .new{font-size:.95rem;line-height:1.6;}
  .hero-image { flex: none; width: 100%; margin-top: 0; }
  .hero-image::before{width:260px;height:260px;max-width:260px;}
  .hero-image img{width:240px;height:240px;max-width:240px;border-width:4px;margin:auto;}
  .contact-social{display:flex;flex-direction:column;align-items:center;gap:20px;}
  .btn{width:220px;text-align:center;}
  .social-links{justify-content:center;gap:20px;}
  .social-links a{font-size:1.7rem;}
  .content-section{flex-direction:column;text-align:center;gap:30px;padding:0 20px;}
  .about-image img{width:250px;max-width:250px;margin:auto;}
  .about-text p{font-size:1rem;line-height:1.8;}
  .skill-bubbles{justify-content:center;}
  .content2::before{display:none;}
  .education-item,.experience-item,.project-container{flex-direction:column;text-align:center;align-items:center;padding:24px;}
  .education-section .content-section{grid-template-columns:1fr;}
  .logo-image,.project-logo{margin:0 auto 16px;}
  .project-logo{width:80px;height:80px;}
  .experience-text,.education-text{width:100%;}
  .contact-container{flex-direction:column;gap:25px;padding:20px;}
  .contact-info,.contact-form{width:100%;}
  h1{font-size:1.75rem;}
  h2{font-size:1.2rem;}
  h3{font-size:1rem;}
  .acheivement-item{padding:24px;border-radius:18px;}
  .content-section,.content2,.content3,.skills-section,.education-section,.acheivements-section,.contact-container{margin-top:60px;}
}