/* Modern CSS Reset */
:root {
    --primary: #4361ee;
    --primary-light: rgba(67, 97, 238, 0.1);
    --primary-dark: #3a56d4;
    --secondary: #3f37c9;
    --dark: #0a0a19;
    --darker: #050511;
    --light: #f8f9fa;
    --lighter: #ffffff;
    --gray: #adb5bd;
    --dark-gray: #495057;
    --zinc-800: #27272a;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, var(--darker), var(--dark));
    z-index: -1;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--lighter);
  }
  
  h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
  }
  
  p {
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--gray);
  }
  
  .text-primary {
    color: var(--primary);
  }
  
  /* Layout */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 6rem 0;
    position: relative;
  }
  
  /* Header Styles */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 25, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(5, 5, 17, 0.98);
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .logo:hover {
    color: var(--lighter);
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
  }
  
  .nav-link:hover,
  .nav-link:focus {
    color: var(--primary);
  }
  
  .nav-link:hover::after,
  .nav-link:focus::after {
    width: 100%;
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
  }
  
  .menu-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--light);
    margin: 5px 0;
    transition: var(--transition);
  }
  
  .mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
  }
  

  /* For desktop screens */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-image-container {
    order: 2; /* Moves image to right */
  }
  
  .hero-content {
    order: 1; /* Keeps content on left */
    text-align: left; /* Optional: Align content to left */
  }
  
  /* Optional: Adjust animation directions */
  .hero-content[data-aos] {
    transform: translateX(-50px);
  }
  
  .hero-image-container[data-aos] {
    transform: translateX(50px);
  }
}

/* Existing mobile hide */
@media (max-width: 767px) {
  .hero-image-container {
    display: none;
  }
}

  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary-light), transparent 70%);
    opacity: 0.2;
    z-index: -1;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .greeting {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .hero-title {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  
  .typing-container {
    height: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
  }
  
  .typing-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--light);
  }
  
  .blinking-cursor {
    display: inline-block;
    width: 3px;
    height: 1.5rem;
    background-color: var(--primary);
    margin-left: 0.25rem;
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  .hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray);
    max-width: 500px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    background: radial-gradient(circle at center, var(--primary), transparent 70%);
    filter: blur(30px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
  }
  
  .hero-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }
  
  .hero-image:hover {
    transform: translateY(-5px);
  }
  
  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
  }
  
  .btn-icon i {
    margin-right: 0.5rem;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--lighter);
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.3);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
  }
  
  .btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
  }
  
  .btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
  }
  
  /* Section Styles */
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .section-subheader {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 1px;
}
  .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  .section-title::after {
    content: '';
    position: relative;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
  }
  .section-title1 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  .section-title1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0; /* Start from the left edge of the page */
    width: 100vw; /* Span the entire width of the viewport */
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
  }
  
  
  .section-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 1rem auto 2rem;
    opacity: 0.5;
  }
  
  .section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
  }
  
  /* Resume Section */
  .resume-section {
    background-color: var(--darker);
  }
  
  .resume-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  
  .resume-card {
    background-color: rgba(5, 5, 17, 0.7);
    border-radius: 0.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid var(--zinc-800);
  }
  
  .personal-info {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
  }
  .personal-image img {
    width: 150px; /* Adjust the size as needed */
    height: 150px; /* Ensure it's a square */
    border-radius: 50%; /* Makes it circular */
    object-fit: cover; /* Ensures the image fills the circle without distorting */
    border: 2px solid hwb(226 11% 8%); /* Optional: add a border around the image */
  }

  .personal-image {
    width: 42%;
    margin-right: 0px;
  }
  
  
  .personal-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .personal-details ul {
    list-style: none;
  }
  
  .personal-details li {
    margin-bottom: 0.5rem;
    color: var(--gray);
  }
  
  .personal-details span {
    color: var(--primary);
    font-weight: 500;
  }
  
  .skills-section {
    margin-top: 2rem;
  }
  
  .skills-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .skill-item {
    margin-bottom: 1rem;
  }
  
  .skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    color: var(--gray);
  }
  
  .progress-bar {
    height: 0.5rem;
    background-color: var(--zinc-800);
    border-radius: 0.25rem;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 0.25rem;
  }
  
  .professional-info {
    color: var(--gray);
  }
  
  .professional-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--lighter);
  }
  
  .professional-info ul {
    list-style: none;
  }
  
  .professional-info li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
  }
  
  .professional-info li span:first-child {
    color: var(--primary);
    font-weight: 500;
    min-width: 7rem;
  }
  
  .projects-linkedin {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .projects-count {
    text-align: center;
  }
  
  .count-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  .count-label {
    color: var(--gray);
  }
  
  .btn-linkedin {
    background-color: var(--primary);
    color: var(--lighter);
  }
  
  .btn-linkedin:hover {
    background-color: var(--primary-dark);
  }
  
  .download-cv {
    display: flex;
    justify-content: center;
  }
  
  .btn-download {
    background-color: var(--primary);
    color: var(--lighter);
    padding: 0.75rem 1.5rem;
  }
  
  .btn-download:hover {
    background-color: var(--primary-dark);
  }
  
  /* About Section */
  .experience-card {
    background-color: var(--darker);
    border-radius: 0.5rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    border: 1px solid var(--zinc-800);
    margin-bottom: 4rem;
  }
  
  .experience-header {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .experience-date {
    color: var(--primary);
  }
  
  .experience-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
  }
  
  .company-name {
    color: var(--gray);
  }
  
  .experience-description {
    color: var(--gray);
    margin-bottom: 1rem;
  }
  
  .experience-list {
    list-style-type: disc;
    padding-left: 1.25rem;
    color: var(--gray);
  }
  
  .experience-list li {
    margin-bottom: 0.5rem;
  }
  
  .education-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .education-card {
    background-color: var(--darker);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid var(--zinc-800);
  }
  
  .education-date {
    color: var(--primary);
  }
  
  .education-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
  }
  
  .institution-name {
    color: var(--gray);
    margin-bottom: 0.5rem;
  }
  
  .education-grade {
    color: var(--gray);
  }
  
  /* Projects Section */
  .projects-section {
    background-color: var(--darker);
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .project-card {
    background-color: var(--darker);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid var(--zinc-800);
    transition: var(--transition);
    overflow: hidden;
  }
  
  .project-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .project-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--transition);
  }
  
  .project-card:hover h3 {
    color: var(--primary);
  }
  
  .project-card p {
    color: var(--gray);
    margin-bottom: 1rem;
  }
  
  .project-link {
    display: flex;
    justify-content: flex-end;
  }
  
  .view-more {
    display: flex;
    justify-content: center;
  }
  
  /* Counter Section */
  .counter-section {
    background-color: var(--dark);
  }
  
  .counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .counter-item {
    text-align: center;
    background-color: var(--darker);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--zinc-800);
  }
  
  .counter-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
  }
  
  .counter-label {
    color: var(--gray);
  }
  
  /* GitHub CTA */
  .github-cta {
    background: linear-gradient(135deg, var(--darker), var(--dark));
    position: relative;
    overflow: hidden;
  }
  
  .github-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1618401471353-b98afee0b2eb') center/cover;
    opacity: 0.1;
    z-index: 0;
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    color: var(--gray);
    margin-bottom: 2rem;
  }
  
  .btn-github {
    background-color: var(--zinc-800);
    color: var(--lighter);
    padding: 0.75rem 1.5rem;
  }
  
  .btn-github:hover {
    background-color: var(--zinc-700);
  }
  
  /* Contact Section */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .contact-card {
    background-color: var(--darker);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid var(--zinc-800);
    transition: var(--transition);
    text-align: center;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .contact-card p,
  .contact-card a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .contact-card a:hover {
    color: var(--primary);
  }
  
  .contact-form-cta {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .contact-form-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .social-links {
    text-align: center;
  }
  
  .social-links p {
    color: var(--gray);
    margin-bottom: 1rem;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-icons a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--zinc-800);
    color: var(--light);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
  }
  
  .social-icons a:hover {
    transform: translateY(-3px);
  }
  
  .social-icons a:nth-child(1):hover {
    background-color: #ff0000;
  }
  
  .social-icons a:nth-child(2):hover {
    background-color: #0a66c2;
  }
  
  .social-icons a:nth-child(3):hover {
    background-color: #1877f2;
  }
  
  .social-icons a:nth-child(4):hover {
    background-color: #e4405f;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0;
    background-color: var(--darker);
    border-top: 1px solid var(--zinc-800);
  }
  
  .footer-text {
    text-align: center;
    color: var(--gray);
  }
  
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
  }
  
  /* Responsive Styles */
  @media (min-width: 768px) {
    .hero-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .resume-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .education-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .counter-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .contact-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .contact-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--darker);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      transition: var(--transition);
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .section {
      padding: 4rem 0;
    }
  
    .hero {
      padding-top: 7rem;
    }
  
    .hero-content {
      text-align: center;
      margin: 0 auto;
    }
  
    .hero-buttons {
      justify-content: center;
    }
  }
  
  @media (max-width: 575px) {
    .container {
      padding: 0 1rem;
    }
  
    .hero-buttons {
      flex-direction: column;
    }
  
    .btn {
      width: 100%;
    }
  }
  .testimonial-section {
  background-color: var(--darker);
  padding: 6rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: rgba(10, 10, 25, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--zinc-800);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

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

.testimonial-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--lighter);
  font-weight: 500;
  font-size: 1rem;
}


/* Replace existing certifications CSS with this */
.certifications-section {
  padding: 2rem 0;
  position: relative;
}

.certificates-container-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.certificates-container {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.certificate-item {
  flex: 0 0 calc(25% - 15px);
  min-width: 250px;
  background: var(--darker);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

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

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

.certificate-item p {
  padding: 1rem;
  text-align: center;
  color: var(--gray);
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(67, 97, 238, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
}

.left-btn {
  left: 0;
}

.right-btn {
  right: 0;
}

.certificates-container::-webkit-scrollbar {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background-color: white;
  padding: 20px;
  text-align: center;
}

.modal img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}


.education-section:not(:last-child) {
  margin-bottom: 4rem;
}

.quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 7rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}