body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, #ffffff, #ffffff);
  /* Gradient background from dark blue to black */
  color: #ffffff;
  /* White text color */
  margin: 0;
  padding: 0;
}

/* Header Styles */
header {
  position: relative;
  height: 400px;
  /* Adjust the height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  color: black;
}

.header-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 50px;
  /* Increase the padding to make it bigger */
}

.header-content h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

img {
  border-radius: 10px;
  /* Changed photo border radius */
  width: 180px;
  /* Increased photo size */
  height: 180px;
  /* Increased photo size */
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

h1 {
  font-size: 36px;
  margin-top: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
}
/**nav starts **/

nav {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  will-change: transform;
}

.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

#nav-toggle-btn {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 1100;
  background: rgba(31, 41, 55, 0.7);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#nav-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

#nav-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

#nav-toggle-btn.rotate #nav-icon {
  transform: rotate(180deg);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Highlight Competitive link */
nav ul li a#nav-competitive {
  color: #ff9800;
  font-weight: 600;
  border: 1px solid #ff9800;
  padding: 6px 12px;
  border-radius: 4px;
}

nav ul li a#nav-competitive:hover,
nav ul li a#nav-competitive:focus {
  background-color: #ff9800;
  color: #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  nav {
    padding: 6px 0;
  }

  nav ul {
    gap: 8px;
    flex-wrap: wrap;
  }

  nav ul li a {
    font-size: 0.9rem;
    padding: 4px 8px;
  }

  nav ul li a#nav-competitive {
    padding: 5px 10px;
    font-size: 0.9rem;
  }
}
/**nav ends **/

/* Section Styles */
edu .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

/* Page Title Styles */
section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
  color: #040514;
}

/* Social Links Styles */
.social-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-links a {
  color: #f1c40f; /* yellow color */
  font-size: 32px;
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffd700; /* slightly darker yellow on hover */
}
/* Project Styles */
#education {
  background-color: #84cc9a;
  /* Dark blue background color for the section */
  padding: 50px 0;
}

#projects {
  background-color: white;
  /* Dark blue background color for the section */
  padding: 50px 0;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
}

.project-list li {
  background-color: rgb(255, 255, 255);
  /* Changed project background color */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(138, 73, 73, 0.3);
}

.project-image img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.project-details h3 {
  font-size: 24px;
  color: #373b38;
  margin-bottom: 10px;
}

.project-details h6 {
  font-size: 24px;
  color: #f00a30;
  margin-bottom: 10px;
}

.project-details p {
  color: rgb(55, 68, 70);
  font-size: 16px;
}

.project-details strong {
  font-weight: bold;
}

.project-details a {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-details a:hover {
  color: #0056b3;
}

/* Improved "About Me" Section Styles */
#about {
  background-color: #f9faf8;
  /* Dark blue background color for the section */
  padding: 50px 0;
}

.profile-info {
  display: flex;
  flex-direction: row;
  /* Ensure that the elements are in a row */
  align-items: flex-start;
  /* Align the elements to the top */
}

.profile-image {
  flex: 0 0 180px;
  /* Set a fixed width for the profile image */
  margin-right: 20px;
  /* Add some space between the image and the details */
}

.profile-image img {
  border-radius: 50%;
  /* Make the image circular */
  border: 3px solid #007bff;
  /* Add a white border around the image */
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  /* Add a shadow effect */
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.profile-image {
  flex: 0 0 180px;
  /* Set a fixed width for the profile image */
  margin-right: 20px;
  /* Add some space between the image and the details */
}

.profile-details p {
  color: rgb(14, 19, 15);
  font-size: 18px;
  margin-bottom: 20px;
}

.personal-details li {
  color: black;
  font-size: 16px;
  list-style: none;
  margin-bottom: 10px;
}

.personal-details li strong {
  font-weight: bold;
}

/* Skills Styles */

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.skill {
  flex-basis: calc(25% - 20px);
  margin-bottom: 40px;
  background-color: #0cc96b;
  /* Dark blue background color for the skill categories */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.skill h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.skill ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.skill li {
  font-size: 16px;
  color: #e7ebee;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skill-name {
  flex: 1;
}

.skill-percentage {
  font-weight: bold;
  color: #ffffff; /* Makes the percentage stand out more */
  font-size: 1.1rem;
}

.skills-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Skill Categories */
.skill {
  background-color: #0cc96b;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Slightly deeper shadow */
}

/* Skill Category Box */
.skill-category {
  background-color: #ffffff; /* Clean white for contrast */
  border-left: 5px solid #007bff; /* Blue accent for separation */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Emphasize shadow on hover */
}

/* Skill Titles */
.skill-title {
  font-size: 1.5rem;
  color: #007bff; /* Blue for consistent theme */
  margin-bottom: 10px;
}

/* Skill List */
.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-list li {
  margin: 10px 0;
  font-size: 1rem;
  color: #555; /* Dark gray for readability */
}
.skill-list li strong {
  font-weight: 600;
  color: #555;
}

/* Competitive Styles */
/* Add this CSS code to style the "Competitive Programming Profile" section */
#competitive {
  background-color: #a8a8eb;
  /* Dark background color for the section */
  padding: 50px 0;
}

#competitive h2 {
  font-size: 36px;
  color: #0a0101;
  text-align: center;
  margin-bottom: 30px;
}

.competitive-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.competitive-card {
  background-color: #0f043d;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 200px;
  transition: background-color 0.3s ease;
}

.competitive-card a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.competitive-card i {
  font-size: 36px;
  margin-bottom: 10px;
}

.competitive-card span {
  display: block;
}

.competitive-card:hover {
  background-color: #007bff;
}

.contest-achievements {
  margin-top: 30px;
}

.contest-achievements .achievement-card {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #170530;
}

.contest-achievements .achievement-icon {
  flex: 0 0 40px;
  height: 40px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffbb00;
  color: #fff;
  font-size: 20px;
}

.contest-achievements .achievement-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #444;
}

.contest-achievements .achievement-card p {
  font-size: 16px;
  margin: 5px 0 0;
  color: #666;
}

/* Updated text color for achievements */
.contest-achievements .achievement-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.h4-red {
  color: #ff4d4d;
}
.h4-yellow {
  color: #ffbb00;
}
.h4-purple {
  color: #8a2be2;
}
.h4-green {
  color: #4caf50;
}
.h4-orange {
  color: #ff6f00;
}

#competitive p {
  color: #fff;
  text-align: left;
  font-size: 16px;
  margin-bottom: 10px;
}

#experience {
  background-color: #ffffff;
  padding: 50px 0;
}

#experience .experience-list {
  list-style-type: none;
  padding: 0;
}

#experience .experience-list li {
  margin-bottom: 30px;
  border-left: 3px solid #4a0896;
  padding-left: 20px;
}

#experience .experience-list .date {
  font-weight: bold;
  font-size: 18px;
  color: #3e2e4b;
  margin-bottom: 5px;
}

#experience .experience-list h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #121311;
}

#experience .experience-list p {
  font-size: 16px;
  line-height: 1.5;
}
.experience-list .content {
  display: block;
  overflow: visible;
}

.experience-list .content p {
  display: block; /* Make sure it's rendered */
  visibility: visible; /* Just in case */
  overflow: visible; /* Prevent clipping */
  color: #000; /* Make sure it's not hidden by color */
  margin-top: 8px; /* Optional spacing */
  line-height: 1.6; /* Better readability */
}

/* Contact Form Styles */
#contact {
  background-color: #a8a8eb;
  padding: 50px 0;
}

.contact-form {
  margin-top: 30px;
  text-align: center;
  /* Centering the contact form */
}

.contact-form input,
.contact-form textarea {
  background-color: #ffffff;
  /* Changed contact form input background color */
  color: #e9dfdf;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form textarea {
  height: 150px;
}

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

.contact-form button:hover {
  background-color: #0056b3;
}

/* Footer Styles */
footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

@media screen and (max-width: 768px) {
  .header-content {
    padding: 20px;
  }

  img {
    width: 120px;
    height: 120px;
  }

  h1 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  nav ul li {
    margin-right: 10px;
  }

  .container {
    padding: 20px;
  }

  .project-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .skills-list {
    display: block; /* Stack the skill boxes */
  }

  .skill {
    flex-basis: 100%; /* Make each skill take the full width */
    margin-bottom: 20px;
  }
  /* Update the layout for "About Me" section */
  .profile-info {
    flex-direction: column;
  }

  .profile-image img {
    width: 200px;
    height: 200px;
  }

  .profile-details {
    margin-top: 20px;
  }

  /* Update the layout for "Projects" section */
  .project-details {
    text-align: left;
  }

  /* Update the layout for "Competitive Programming Profile" section */
  .competitive-cards {
    flex-direction: column;
  }

  .competitive-card {
    width: 100%;
    margin-bottom: 10px;
  }

  /* Update the layout for "Work Experience" section */
  #experience .experience-list li {
    margin-bottom: 20px;
  }

  /* Update the layout for contact form */
  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  /* Update the layout for footer */
  footer {
    padding: 10px 0;
  }
}

.chart-container {
  max-width: 400px;
  margin: 0 auto;
}

#scroll-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.award-card {
  position: relative;
  flex: 0 0 300px;
  height: 260px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 6px 15px rgba(66, 82, 110, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.award-card:hover {
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  filter: brightness(0.8);
  z-index: 0;
}

.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: white;
  padding: 12px 16px;
  box-sizing: border-box;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 15px;
}

.card-content a {
  padding: 8px 16px;
  background-color: #4f46e5;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.card-content a:hover {
  background-color: #4338ca;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #4f46e5;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.scroll-arrow.left {
  left: 10px;
}

.scroll-arrow.right {
  right: 10px;
}

@media (max-width: 960px) {
  .award-card {
    flex: 0 0 min(320px, 90vw);
  }
}

/* Disable touch-based scrolling and scrollbar */
#scroll-wrapper {
  touch-action: none;
}

#skills .slide {
  flex: 0 0 280px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  color: white;
  box-sizing: border-box;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

#skills .slide h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 6px;
}

#skills .slide ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#skills .slide ul li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

#skills .slide ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: white;
  font-weight: bold;
}

@media (max-width: 768px) {
  #skills .slide {
    flex: 0 0 220px;
  }
}

@media (max-width: 480px) {
  #skills .slide {
    flex: 0 0 180px;
    padding: 16px;
  }
}

/* Subtle hover effect on experience cards */
#experience .experience-list li:hover {
  box-shadow: 0 20px 35px rgba(90, 103, 216, 0.3);
  transform: translateY(-8px);
}

/* Responsive tweaks */
@media (max-width: 640px) {
  #experience .experience-list li {
    flex-direction: column;
    padding: 25px 20px;
  }
  #experience .date {
    flex: unset !important;
    width: 100%;
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
  #experience .content {
    flex: unset !important;
  }
}

.extracted-style-0 {
  position: relative;
  text-align: center;
  color: #ffffff;
}
.extracted-style-1 {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.35);
}
.extracted-style-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.extracted-style-3 {
  margin-bottom: 24px;
}
.extracted-style-4 {
  margin-bottom: 10px;
}
.extracted-style-5 {
  color: white;
  margin: 0 10px;
  font-size: 22px;
  transition: color 0.3s;
}
.extracted-style-6 {
  color: white;
  margin: 0 10px;
  font-size: 22px;
  transition: color 0.3s;
}
.extracted-style-7 {
  color: white;
  margin: 0 10px;
  font-size: 22px;
  transition: color 0.3s;
}
.extracted-style-8 {
  color: white;
  margin: 0 10px;
  font-size: 22px;
  transition: color 0.3s;
}
.extracted-style-9 {
  color: white;
  margin: 0 10px;
  font-size: 22px;
  transition: color 0.3s;
}
.extracted-style-10 {
  font-size: 16px;
  letter-spacing: 1px;
}
.extracted-style-11 {
  font-size: 30px;
  font-weight: bold;
}
.extracted-style-12 {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 12px 0;
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.extracted-style-13 {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.extracted-style-14 {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  transition: all 0.3s ease;
}
.extracted-style-15 {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  transition: all 0.3s ease;
}
.extracted-style-16 {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  transition: all 0.3s ease;
}
.extracted-style-17 {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  transition: all 0.3s ease;
}
.extracted-style-18 {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  transition: all 0.3s ease;
}
.extracted-style-19 {
  color: #ff9800;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid #ff9800;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.extracted-style-20 {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  transition: all 0.3s ease;
}
.extracted-style-21 {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  transition: all 0.3s ease;
}
.extracted-style-22 {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.extracted-style-23 {
  flex-shrink: 0;
}
.extracted-style-24 {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid blue;
}
.extracted-style-25 {
  flex-grow: 1;
}
.extracted-style-26 {
  color: #007bff;
  text-decoration: none;
  border-bottom: none;
}
.extracted-style-27 {
  color: #007bff;
  text-decoration: none;
  border-bottom: none;
}
.extracted-style-28 {
  color: #007bff;
  text-decoration: none;
  border-bottom: none;
}
.extracted-style-29 {
  list-style-type: none;
  padding: 0;
  margin-top: 15px;
}
.extracted-style-30 {
  color: #007bff;
}
.extracted-style-31 {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}
.extracted-style-32 {
  font-size: 18px;
  padding: 14px 28px;
  background-color: #007bff;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  transition: background-color 0.3s ease;
}
.extracted-style-33 {
  font-size: 18px;
  padding: 14px 28px;
  background-color: #6c757d;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
  transition: background-color 0.3s ease;
}
.extracted-style-34 {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1);
  margin-right: 8px;
  vertical-align: middle;
}
.link-underline {
  color: inherit;
  text-decoration: underline;
}
.purple-circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: violet;
  margin-right: 8px;
}

.green-circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: green;
  margin-right: 8px;
}
.orange-circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: orange;
  margin-right: 8px;
}
.extracted-style-90 {
  background: #f0f4ff;
  padding: 70px 15px;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}
.extracted-style-91 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #222;
}
.extracted-style-92 {
  overflow: hidden;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
}
.extracted-style-93 {
  background-image: url("images/awards/vc-crest.jpg");
}
.extracted-style-94 {
  background-image: url("images/awards/iapc_fall22.jpg");
}
.extracted-style-95 {
  background-image: url("images/awards/iapc_spring23.jpg");
}
.extracted-style-96 {
  background-image: url("images/awards/iapc_fall22_austpic.jpg");
}
.extracted-style-97 {
  display: none;
  padding: 60px 15px;
}
.extracted-style-98 {
  background-color: #fafafa;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.extracted-style-99 {
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
  text-align: center;
}
.extracted-style-100 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.extracted-style-101 {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.extracted-style-102 {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.extracted-style-103 {
  padding: 20px;
}
.extracted-style-104 {
  margin-top: 0;
  font-weight: 700;
  color: #222;
}
.extracted-style-105 {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}
.extracted-style-106 {
  color: #333;
}
.extracted-style-107 {
  color: #333;
}
.extracted-style-108 {
  color: #2a7f62;
  text-decoration: underline;
}
.extracted-style-109 {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.extracted-style-110 {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.extracted-style-111 {
  padding: 20px;
}
.extracted-style-112 {
  margin-top: 0;
  font-weight: 700;
  color: #222;
}
.extracted-style-113 {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}
.extracted-style-114 {
  color: #333;
}
.extracted-style-115 {
  color: #333;
}
.extracted-style-116 {
  color: #2a7f62;
  text-decoration: underline;
}
.extracted-style-117 {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.extracted-style-118 {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.extracted-style-119 {
  padding: 20px;
}
.extracted-style-120 {
  margin-top: 0;
  font-weight: 700;
  color: #222;
}
.extracted-style-121 {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}
.extracted-style-122 {
  color: #333;
}
.extracted-style-123 {
  color: #333;
}
.extracted-style-124 {
  color: #2a7f62;
  text-decoration: underline;
}
.extracted-style-125 {
  padding: 80px 0 100px;
  overflow: hidden;
  background-color: #a8a8eb;
}
.extracted-style-126 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: white;
}
.extracted-style-127 {
  overflow: hidden;
  width: 100%;
}
.extracted-style-128 {
  display: flex;
  gap: 25px;
  width: max-content;
  margin: 0 auto;
  /* Remove transition here because we use JS continuous transform */
}
.extracted-style-129 {
  background: #f9fafc;
  padding: 70px 15px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.extracted-style-130 {
  max-width: 960px;
  margin: 0 auto;
}
.extracted-style-131 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #1a202c;
}
.extracted-style-132 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.extracted-style-133 {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
  padding: 32px 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.extracted-style-134 {
  flex: 0 0 180px;
  font-weight: 700;
  color: #5a67d8;
  font-size: 1rem;
  text-align: center;
  border-radius: 12px;
  padding: 14px 12px;
  background: #ebf0ff;
  user-select: none;
  letter-spacing: 0.02em;
}
.extracted-style-135 {
  flex: 1 1 0;
}
.extracted-style-136 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.2;
}
.extracted-style-137 {
  margin: 0;
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  max-width: 720px;
}
.extracted-style-138 {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
  padding: 32px 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.extracted-style-139 {
  flex: 0 0 180px;
  font-weight: 700;
  color: #5a67d8;
  font-size: 1rem;
  text-align: center;
  border-radius: 12px;
  padding: 14px 12px;
  background: #ebf0ff;
  user-select: none;
  letter-spacing: 0.02em;
}
.extracted-style-140 {
  flex: 1 1 0;
}
.extracted-style-141 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.2;
}
.extracted-style-142 {
  color: black;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  font-weight: 700;
}
.extracted-style-143 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  max-width: 720px;
}
.extracted-style-144 {
  color: #5a67d8;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  font-weight: 700;
}
.extracted-style-145 {
  margin: 0;
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  max-width: 720px;
}
