/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.hero-content h2 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

/* Hero Image */
.myImages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
svg {
    fill: var(--primary-color);
    margin: 10px;
}

.image-container {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--card-bg);
    padding: 15px;
    animation: float 6s ease-in-out infinite;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

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



.main-card {
  background: var(--secondary-color);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.main-title {
  padding: 4%;
  padding-bottom: 2%;
  border-bottom: 2px solid var(--primary-color);
  margin-bottom: 0;
}

.main-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.7px;
  justify-self: center;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 4%;
}

#checkpoint {
  background: #667eea4e;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
}

.card-title {
  display: flex;
  justify-content:left;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
}
.card-section h3 {
  font-weight: 600;
  color: var(--primary-color);
  padding-left: 5px;
  display: inline-block;
  width: 320px;
}

.card-section h4 {
  margin: 15px;
  font-weight: 400;
  color: var(--text-color);
}

.card-section p {
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
  margin-bottom: 15px;
  font-weight: 400;
}

#grade {
  font-size: 0.8rem;
  color: var(--text-color);
  text-align: right;
}



/* Responsive Design */
@media (max-width: 768px) {
  .main-card {
    padding: 2%;
  }

  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 5%;
  }
  
  .main-title {
    padding: 30px 20px 15px 20px;
  }
  
  .main-title h2 {
    font-size: 2rem;
  }
  
  .card-section h3 {
    font-size: 1.3rem;
  }
  
  .info-label {
    min-width: 120px;
  }
}




/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
        padding: 2%;
    }

    .hero-content p {
        font-size: 1.1rem;
        max-width: 100%;
    }


    .image-container {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .image-container {
        width: 240px;
        height: 240px;
    }

}
