/* Hero Section */
.hero { padding: 180px 0 100px; background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); position: relative; overflow: hidden; }
.hero:before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%); animation: float 20s infinite linear; }
.hero .container { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.hero-content { flex: 1; max-width: 600px; animation: fadeInUp 1s ease-out; }
.hero h1 { font-size: 4rem; margin-bottom: 1rem; animation: fadeInUp 1s 0.2s ease-out both; }
.hero h2 { font-size: 2rem; color: var(--gray-600); margin-bottom: 0.5rem; animation: fadeInUp 1s 0.4s ease-out both; }
.hero h3 { font-size: 1.5rem; color: var(--accent); margin-bottom: 2rem; animation: fadeInUp 1s 0.6s ease-out both; }

.hero-quote { font-size: 1.4rem; font-style: italic; color: var(--gray-700); margin: 2rem 0; padding: 1.5rem; background: rgba(255, 255, 255, 0.9); border-radius: var(--border-radius-lg); border-left: 4px solid var(--accent); box-shadow: var(--shadow); animation: fadeInUp 1s 0.8s ease-out both; }
.hero-quote:hover { transform: translateX(10px); }
.hero-buttons { display: flex; gap: 1rem; margin-top: 2rem; animation: fadeInUp 1s 1s ease-out both; }

/* Hero Image & Floating Elements */
.hero-image { flex: 1; display: flex; justify-content: center; align-items: center; }
.image-container { position: relative; width: 350px; height: 350px; border-radius: 50%; border: 8px solid rgba(255, 255, 255, 0.2); display: flex; justify-content: center; align-items: center; background: linear-gradient(135deg, #2563eb, #f59e0b); }
.profile-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; box-shadow: 0 15px 35px rgba(0,0,0,0.2); }

.floating-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.floating-element { position: absolute; width: 60px; height: 60px; background: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 10px 20px rgba(0,0,0,0.1); color: #2563eb; font-size: 1.5rem; animation: float 4s ease-in-out infinite; }
.floating-element:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
.floating-element:nth-child(2) { bottom: 10%; right: -10%; animation-delay: 1s; }
.floating-element:nth-child(3) { top: 50%; right: -15%; animation-delay: 2s; }
/* =========================================
   CORE INTERESTS SECTION
   ========================================= */
.interests {
    margin-top: 5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
}

.interests h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

/* Optional underline for the heading */
.interests h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.interests-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.interest-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px; /* Pill shape */
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: default;
    border: 1px solid rgba(0,0,0,0.05);
}

.interest-item i {
    color: var(--primary);
    font-size: 1.3rem;
    transition: var(--transition);
}

.interest-item span {
    font-weight: 600;
    color: var(--gray-600);
}

/* Hover Effect for Interests */
.interest-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: transparent;
}

.interest-item:hover i,
.interest-item:hover span {
    color: white;
}

/* =========================================
   VISION & GOALS SECTION
   ========================================= */
.goals {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 5rem auto 0;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s 0.2s ease-out both;
}

/* Decorative top border */
.goals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.goals h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

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

.goals li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 1.2rem;
}

.goals li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Custom Checkmark Icon */
.goals li::before {
    content: '\f058'; /* FontAwesome Check Circle code */
    font-family: 'Font Awesome 6 Free'; /* Ensure FontAwesome is loaded */
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--success);
    font-size: 1.4rem;
}
@media (max-width: 768px) {
    .hero .container { flex-direction: column; text-align: center; }
    .hero-buttons { justify-content: center; }
    .image-container { width: 280px; height: 280px; margin-top: 2rem; }
}