/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --purple-900: #581c87;
    --indigo-50: #eef2ff;
    --indigo-500: #6366f1;
    --indigo-600: #4f46e5;
    --pink-50: #fdf2f8;
    --pink-500: #ec4899;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    --white: #ffffff;
    --black: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--slate-900);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background-color: var(--purple-200);
    color: var(--purple-900);
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.purple-text {
    color: var(--purple-500);
}

/* Navbar Desktop */
.navbar-desktop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-100);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.5s;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.logo-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
}

.navbar-logo:hover .logo-wrapper {
    transform: scale(1.1);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: -4px;
}

.logo-name {
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--slate-900);
}

.logo-subtitle {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 900;
    color: var(--purple-500);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    text-decoration: none;
    color: var(--slate-400);
}

.nav-link:hover {
    color: var(--slate-900);
}

.nav-link.active {
    color: var(--purple-500);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--purple-500);
    transition: width 0.3s;
    width: 0;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.navbar-cta {
    padding: 10px 24px;
    background-color: var(--slate-900);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s;
}

.navbar-cta:hover {
    background-color: var(--purple-500);
}

/* Mobile Header */
.navbar-mobile-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-100);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mobile-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 56px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    text-decoration: none;
}

.mobile-logo-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
    gap: -2px;
}

.mobile-logo-name {
    font-size: 14px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--slate-900);
    line-height: 1.2;
}

.mobile-logo-subtitle {
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 900;
    color: var(--purple-500);
    line-height: 1.2;
}

/* Mobile Bottom Navigation */
.navbar-mobile-bottom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--slate-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}

.mobile-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 8px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px;
    min-width: 60px;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--slate-500);
    border-radius: 8px;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

.mobile-nav-item.active {
    color: var(--purple-600);
}

.mobile-nav-icon {
    transition: transform 0.2s;
}

.mobile-nav-item.active .mobile-nav-icon {
    transform: scale(1.1);
}

.mobile-nav-item.active .mobile-nav-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 8px;
    height: 8px;
    background-color: var(--purple-500);
    border-radius: 50%;
}

.mobile-nav-label {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    color: inherit;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 80px;
    overflow: hidden;
    background-color: #fdfdfd;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 128px;
        padding-bottom: 128px;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.hero-bg-circle-1 {
    top: -20%;
    right: -10%;
    width: 1000px;
    height: 1000px;
    background: rgba(168, 85, 247, 0.3);
}

.hero-bg-circle-2 {
    bottom: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: rgba(168, 85, 247, 0.3);
}

.hero-bg-dots {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(#000 0.5px, transparent 0.5px);
    background-size: 30px 30px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
}

.hero-stats-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.5);
    transition: all 0.3s;
    width: 100%;
    max-width: 896px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-stats-badge:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--purple-200);
    transform: translateY(-4px);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon-1 {
    background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600));
}

.stat-icon-2 {
    background: linear-gradient(to bottom right, var(--purple-600), var(--indigo-600));
}

.stat-icon-3 {
    background: linear-gradient(to bottom right, var(--indigo-500), var(--purple-500));
}

.stat-text {
    text-align: left;
}

.stat-value {
    font-size: 12px;
    font-weight: 900;
    color: var(--slate-900);
    transition: color 0.3s;
}

.stat-item:hover .stat-value {
    color: var(--purple-600);
}

.stat-label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--slate-500);
    font-size: 9px;
}

.stat-label-desktop {
    display: none;
}

.stat-label-tablet {
    display: none;
}

.stat-label-mobile {
    display: inline;
}

@media (min-width: 640px) {
    .stat-label-mobile {
        display: none;
    }
    .stat-label-tablet {
        display: inline;
    }
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    .stat-value {
        font-size: 14px;
    }
    .stat-label {
        font-size: 10px;
    }
}

@media (min-width: 768px) {
    .stat-label-tablet {
        display: none;
    }
    .stat-label-desktop {
        display: inline;
    }
    .stat-label {
        font-size: 11px;
    }
}

.stat-divider {
    width: 1px;
    height: 28px;
    background-color: var(--slate-200);
    margin: 0 8px;
}

.hero-title {
    font-size: 70px;
    font-family: 'Playfair Display', serif;
    color: var(--slate-900);
    line-height: 0.85;
    letter-spacing: -0.02em;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 144px;
    }
}

.hero-title-purple {
    color: var(--purple-500);
    font-style: italic;
    font-weight: 300;
}

.hero-title-underline {
    position: relative;
}

.hero-title-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 25%;
    width: 50%;
    height: 16px;
    background: rgba(168, 85, 247, 0.1);
    transform: rotate(-1deg);
    border-radius: 9999px;
    z-index: -1;
}

.hero-subtext {
    font-size: 20px;
    color: var(--slate-500);
    max-width: 768px;
    line-height: 1.75;
    font-weight: 300;
}

@media (min-width: 768px) {
    .hero-subtext {
        font-size: 24px;
    }
}

.hero-logo {
    padding-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    width: 64px;
    height: 64px;
    opacity: 0.8;
    transition: opacity 0.3s;
    filter: brightness(0) invert(1);
    animation: bounceSlow 4s ease-in-out infinite;
}

@media (min-width: 640px) {
    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 768px) {
    .hero-logo-img {
        width: 96px;
        height: 96px;
    }
}

.hero-logo:hover .hero-logo-img {
    opacity: 1;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Section Styles */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--purple-500);
}

.section-title {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    color: var(--slate-900);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--purple-500);
    margin: 16px auto 0;
}

/* Skills Section */
.skills-section {
    padding: 96px 24px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.skills-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.skills-bg-circle {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(96px);
    opacity: 0.2;
}

.skills-bg-circle-1 {
    top: 0;
    right: 0;
    background: var(--purple-100);
}

.skills-bg-circle-2 {
    bottom: 0;
    left: 0;
    background: var(--purple-100);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.skill-card {
    position: relative;
    padding: 32px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    overflow: hidden;
}

.skill-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.skill-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.skill-card:hover .skill-card-bg {
    opacity: 1;
}

.skill-card-bg-1 {
    background: linear-gradient(to bottom right, var(--purple-50), rgba(168, 85, 247, 0.5));
}

.skill-card-bg-2 {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.5), var(--indigo-50));
}

.skill-card-bg-3 {
    background: linear-gradient(to bottom right, var(--indigo-50), var(--purple-50));
}

.skill-card-bg-4 {
    background: linear-gradient(to bottom right, var(--purple-50), var(--pink-50));
}

.skill-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: opacity 0.5s;
}

.skill-card:hover .skill-corner {
    opacity: 0.1;
}

.skill-corner-1,
.skill-corner-2,
.skill-corner-3,
.skill-corner-4 {
    background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600));
}

.skill-corner-2 {
    background: linear-gradient(to bottom right, var(--purple-600), var(--indigo-600));
}

.skill-corner-3 {
    background: linear-gradient(to bottom right, var(--indigo-500), var(--purple-500));
}

.skill-corner-4 {
    background: linear-gradient(to bottom right, var(--purple-500), var(--pink-500));
}

.skill-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    transition: transform 0.5s;
}

.skill-card:hover .skill-icon {
    transform: scale(1.1);
}

.skill-icon-1 {
    background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600));
}

.skill-icon-2 {
    background: linear-gradient(to bottom right, var(--purple-600), var(--indigo-600));
}

.skill-icon-3 {
    background: linear-gradient(to bottom right, var(--indigo-500), var(--purple-500));
}

.skill-icon-4 {
    background: linear-gradient(to bottom right, var(--purple-500), var(--pink-500));
}

.skill-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--slate-900);
    transition: color 0.3s;
}

.skill-card:hover .skill-title {
    color: var(--purple-600);
}

.skill-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skill-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--slate-700);
    font-weight: 500;
    transition: color 0.3s;
}

.skill-card:hover .skill-list li {
    color: var(--slate-900);
}

.skill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.skill-card:hover .skill-dot {
    transform: scale(1.25);
}

.skill-dot-1 {
    background: linear-gradient(to right, var(--purple-500), var(--purple-600));
}

.skill-dot-2 {
    background: linear-gradient(to right, var(--purple-600), var(--indigo-600));
}

.skill-dot-3 {
    background: linear-gradient(to right, var(--indigo-500), var(--purple-500));
}

.skill-dot-4 {
    background: linear-gradient(to right, var(--purple-500), var(--pink-500));
}

/* Experience Section */
.experience-section {
    padding: 96px 24px;
    background-color: var(--slate-50);
    position: relative;
    overflow: hidden;
}

.experience-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.experience-bg-circle {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(96px);
    opacity: 0.2;
    background: var(--purple-100);
}

.experience-bg-circle-1 {
    top: 0;
    left: 0;
}

.experience-bg-circle-2 {
    bottom: 0;
    right: 0;
}

.experience-content {
    max-width: 896px;
    margin: 0 auto;
}

.experience-card {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.5);
    transition: all 0.5s;
    overflow: hidden;
}

.experience-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.experience-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--purple-50), rgba(168, 85, 247, 0.3));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.experience-card:hover .experience-card-bg {
    opacity: 1;
}

.experience-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600));
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: opacity 0.5s;
}

.experience-card:hover .experience-corner {
    opacity: 0.1;
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.experience-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

.experience-card:hover .experience-icon {
    transform: scale(1.1);
}

.experience-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
    transition: color 0.3s;
}

.experience-card:hover .experience-title {
    color: var(--purple-600);
}

.experience-period {
    color: var(--slate-500);
    font-weight: 500;
}

.experience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--slate-700);
    font-size: 18px;
    line-height: 1.75;
}

.experience-list li {
    display: flex;
    gap: 16px;
}

.experience-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--purple-500), var(--purple-600));
    flex-shrink: 0;
    margin-top: 8px;
    transition: transform 0.3s;
}

.experience-list li:hover .experience-dot {
    transform: scale(1.25);
}

.experience-list li:hover {
    color: var(--slate-900);
}

/* Education Section */
.education-section {
    padding: 96px 24px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.education-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.education-bg-circle {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(96px);
    opacity: 0.2;
    background: var(--purple-100);
}

.education-bg-circle-1 {
    top: 0;
    right: 0;
}

.education-bg-circle-2 {
    bottom: 0;
    left: 0;
}

.education-content {
    max-width: 896px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.education-card {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    overflow: hidden;
}

.education-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.education-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--purple-50), rgba(168, 85, 247, 0.3));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.education-card:hover .education-card-bg {
    opacity: 1;
}

.education-card-highlight {
    background: linear-gradient(to bottom right, var(--purple-50), rgba(168, 85, 247, 0.5));
}

.education-card-bg-highlight {
    background: linear-gradient(to bottom right, var(--purple-50), rgba(168, 85, 247, 0.5));
    opacity: 1;
}

.education-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600));
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: opacity 0.5s;
}

.education-card:hover .education-corner {
    opacity: 0.1;
}

.education-card-highlight .education-corner {
    opacity: 0.1;
}

.education-card-highlight:hover .education-corner {
    opacity: 0.2;
}

.education-decor-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    color: var(--purple-200);
    opacity: 0.2;
    transition: transform 0.7s;
}

.education-card:hover .education-decor-icon {
    transform: rotate(12deg);
}

.education-decor-icon-2 {
    opacity: 0.3;
}

.education-card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.education-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.education-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

.education-card:hover .education-icon {
    transform: scale(1.1);
}

.education-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--slate-900);
    transition: color 0.3s;
}

.education-card:hover .education-title {
    color: var(--purple-600);
}

.education-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--purple-500);
    font-weight: 700;
    margin-bottom: 16px;
}

.education-description {
    font-size: 18px;
    color: var(--slate-600);
    line-height: 1.75;
    max-width: 512px;
}

.education-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--purple-100);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.education-card:hover .education-badge {
    border-color: var(--purple-200);
}

.education-badge svg {
    color: var(--purple-500);
}

.education-badge span {
    font-weight: 600;
    color: var(--slate-700);
}

.education-badge-highlight {
    border-color: var(--purple-200);
}

.education-card:hover .education-badge-highlight {
    border-color: var(--purple-300);
}

/* Awards Section */
.awards-section {
    padding: 80px 24px;
    background-color: #0a0f1e;
    color: var(--white);
}

.awards-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.awards-badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 9999px;
    margin: 0 auto;
}

.awards-badge-label svg {
    color: var(--purple-400);
}

.awards-badge-label span {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--purple-400);
}

.awards-title {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .awards-title {
        font-size: 60px;
    }
}

.awards-subtitle {
    font-size: 18px;
    color: var(--slate-400);
    max-width: 512px;
    margin: 0 auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.award-card {
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s;
}

.award-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.award-image-container {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--slate-800);
    position: relative;
}

.award-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    font-size: 14px;
    opacity: 0.7;
}

.award-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: all 0.7s;
}

.award-card:hover .award-image {
    opacity: 1;
    transform: scale(1.1);
}

.award-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.4) 50%, transparent 100%);
    transition: all 0.5s;
}

.award-card:hover .award-overlay {
    background: linear-gradient(to top, rgba(88, 28, 135, 0.9) 0%, rgba(88, 28, 135, 0.4) 50%, transparent 100%);
}

.award-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0) 0%, rgba(168, 85, 247, 0) 100%);
    transition: all 0.5s;
}

.award-card:hover .award-glow {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.award-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.award-card:hover .award-badge {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.5);
}

.award-badge svg {
    transition: transform 0.3s;
}

.award-card:hover .award-badge svg {
    transform: scale(1.1);
}

.award-content {
    padding: 24px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.award-card:hover .award-content {
    background: rgba(15, 23, 42, 0.9);
}

.award-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.2;
    transition: color 0.3s;
}

.award-card:hover .award-card-title {
    color: var(--purple-300);
}

.award-card-subtitle {
    color: var(--slate-400);
    font-size: 14px;
    line-height: 1.75;
    transition: color 0.3s;
}

.award-card:hover .award-card-subtitle {
    color: var(--slate-300);
}

.awards-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .awards-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.award-stat {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s;
    cursor: default;
}

.award-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}

.award-stat-value {
    font-size: 30px;
    font-weight: 700;
    color: var(--purple-400);
    margin-bottom: 8px;
    transition: all 0.3s;
    display: inline-block;
}

.award-stat:hover .award-stat-value {
    color: var(--purple-300);
    transform: scale(1.1);
}

.award-stat-label {
    font-size: 14px;
    color: var(--slate-400);
    transition: color 0.3s;
}

.award-stat:hover .award-stat-label {
    color: var(--slate-300);
}

/* Contact Section */
.contact-section {
    padding: 96px 24px;
    background-color: var(--slate-50);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-bg-circle {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(96px);
    opacity: 0.2;
    background: var(--purple-100);
}

.contact-bg-circle-1 {
    top: 0;
    right: 0;
}

.contact-bg-circle-2 {
    bottom: 0;
    left: 0;
}

.contact-content {
    max-width: 896px;
    margin: 0 auto;
}

.contact-card {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.5);
    transition: all 0.5s;
    overflow: hidden;
}

.contact-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.contact-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--purple-50), rgba(168, 85, 247, 0.3));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.contact-card:hover .contact-card-bg {
    opacity: 1;
}

.contact-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600));
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: opacity 0.5s;
}

.contact-card:hover .contact-corner {
    opacity: 0.1;
}

.contact-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: var(--slate-900);
    transition: color 0.3s;
}

.contact-card:hover .contact-card-title {
    color: var(--purple-600);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(to bottom right, transparent, transparent);
    border: 1px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    overflow: hidden;
}

.contact-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.contact-item-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.contact-item:hover .contact-item-bg {
    opacity: 1;
}

.contact-item-bg-1 {
    background: linear-gradient(to bottom right, var(--purple-50), rgba(168, 85, 247, 0.5));
}

.contact-item-bg-2 {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.5), var(--indigo-50));
}

.contact-item-bg-3 {
    background: linear-gradient(to bottom right, var(--indigo-50), var(--purple-50));
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon-1 {
    background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600));
}

.contact-icon-2 {
    background: linear-gradient(to bottom right, var(--purple-600), var(--indigo-600));
}

.contact-icon-3 {
    background: linear-gradient(to bottom right, var(--indigo-500), var(--purple-500));
}

.contact-item-content {
    text-align: center;
}

.contact-label {
    font-size: 12px;
    color: var(--slate-500);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.contact-item:hover .contact-label {
    color: var(--slate-700);
}

.contact-value {
    font-weight: 500;
    color: var(--slate-900);
    transition: color 0.3s;
}

.contact-item:hover .contact-value {
    color: var(--purple-600);
}

.contact-footer {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--purple-100);
    text-align: center;
}

.contact-footer-text {
    color: var(--slate-500);
    font-style: italic;
    max-width: 512px;
    margin: 0 auto;
    line-height: 1.75;
    transition: color 0.3s;
}

.contact-card:hover .contact-footer-text {
    color: var(--slate-600);
}

/* Footer */
.footer {
    padding: 96px 24px;
    padding-bottom: 128px;
    border-top: 1px solid var(--slate-100);
    background-color: var(--white);
}

@media (min-width: 768px) {
    .footer {
        padding-bottom: 96px;
    }
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(12, 1fr);
    }
}

.footer-left {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.footer-logo-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
}

.footer-logo:hover .footer-logo-wrapper {
    transform: scale(1.1);
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-name {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1;
}

.footer-logo-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 900;
    color: var(--purple-500);
    margin-top: 8px;
}

.footer-description {
    color: var(--slate-400);
    font-size: 14px;
    line-height: 1.75;
    max-width: 384px;
}

.footer-right {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-right {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-nav-title {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--slate-400);
}

.footer-nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 48px;
}

.footer-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-900);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--purple-500);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-legal {
        text-align: right;
    }
}

.footer-copyright {
    color: var(--slate-900);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.footer-legal-text {
    color: var(--slate-400);
    font-size: 12px;
}

/* Responsive */
@media (min-width: 768px) {
    .navbar-desktop {
        display: block;
    }
    
    .navbar-mobile-header,
    .navbar-mobile-bottom {
        display: none;
    }
    
    main {
        padding-bottom: 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Safe area for mobile */
@supports (padding: max(0px)) {
    .navbar-mobile-bottom {
        padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    }
}
