body {
font-family: Georgia, serif;
background-color: #fff6fa;
color: #333;
margin: 0;
padding: 0;
}

:root {
--main-color: #002366; /* dark pink */
}

/* NAVBAR */
.navbar {
background-color: var(--main-color);
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
color: white;
}

.navbar .logo {
font-size: 1.5rem;
font-weight: bold;
}

.nav-links {
list-style: none;
display: flex;
gap: 1.5rem;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
}

.nav-links a:hover {
text-decoration: underline;
}

/* INTRO SECTION */
.intro {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
padding: 3rem 2rem;
gap: 2rem;
}

.intro-text {
flex: 1;
min-width: 280px;
}

.intro-text h1 {
color: var(--main-color);
font-size: 2rem;
margin-bottom: 1rem;
}

.intro-text p {
font-size: 1.1rem;
line-height: 1.6;
}

.intro-img {
flex: 1;
text-align: center;
}

.intro-img img {
max-width: 500px;
height: 300px;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CARD SECTION */
.card-section {
padding: 2rem;
}

.info-card {
background-color: white;
border-left: 6px solid var(--main-color);
padding: 1.5rem 2rem;
margin: 1rem auto;
max-width: 900px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-card h2 {
color: var(--main-color);
margin-bottom: 1rem;
}

.info-card ul {
padding-left: 1.2rem;
}

.info-card ul li {
margin: 0.5rem 0;
line-height: 1.5;
}

/* TEAM SECTION */
.team-section {
background-color: #e0e0e0;
padding: 2rem;
text-align: center;
}

.team-section h2 {
margin-bottom: 1rem;
color: var(--main-color);
}

.team-container {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}

.team-container img {
width: 100px;
height: 100px;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: transform 0.3s ease;
}

.team-container img:hover {
transform: scale(1.05);
}
.ach-title {
text-align: center;
color: var(--main-color);
margin-bottom: 1.5rem;
}

.achievements-grid {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1.5rem;
padding: 1rem 2rem;
}

.ach-card {
flex: 1;
min-width: 220px;
max-width: 300px;
border-radius: 12px;
padding: 1.5rem;
color: white;
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
transition: transform 0.3s ease;
}

.ach-card h3 {
margin-top: 0;
}

.ach-card:hover {
transform: translateY(-5px);
}

.pink {
background-color: #c71585;
}

.green {
background-color: #2e8b57;
}

.orange {
background-color: #ff8c00;
}
.skills-edu-section {
padding: 2rem;
}

.wide-cards-container {
display: flex;
gap: 2rem;
flex-wrap: wrap;
justify-content: center;
}

.wide-card {
flex: 1;
min-width: 280px;
max-width: 500px;
background-color: #fff;
border-left: 6px solid var(--main-color);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.wide-card h3 {
margin-top: 0;
color: var(--main-color);
}

.skill-card {
background-color: #ffe0f0;
}

.edu-card {
background-color: #e5f0ff;
}

.wide-card ul {
padding-left: 1.2rem;
}

.wide-card ul li {
margin: 0.5rem 0;
}
.glowing-card {
background-color: #fff0f6;
border-left: 6px solid var(--main-color);
box-shadow: 0 0 20px rgba(199, 21, 133, 0.2);
padding: 2rem;
border-radius: 12px;
}

.achievements-tiles {
display: flex;
justify-content: center;
gap: 1.5rem;
flex-wrap: wrap;
padding: 2rem;
}

.tile {
flex: 1;
min-width: 250px;
max-width: 300px;
border-radius: 12px;
padding: 1.5rem;
color: white;
text-align: center;
box-shadow: 0 6px 14px rgba(0,0,0,0.12);
transition: transform 0.3s ease;
}

.tile:hover {
transform: scale(1.05);
}

.tile span {
font-size: 2.5rem;
display: block;
margin-bottom: 1rem;
}

.tile h3 {
margin: 0.5rem 0;
}

.pink {
background-color: #c71585;
}

.purple {
background-color: #6a5acd;
}

.teal {
background-color: #008080;
}
.video-section {
    text-align: center;
    padding: 2rem 1rem;
    font-family: Georgia, serif;
  }
  
  .video-container {
    position: relative;
    width: 60%;
    margin: 0 auto;
    padding-bottom: 33.75%; 
    height: 0;
    overflow: hidden;
    border: 4px solid var(--main-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  