/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #3385d6;
    --secondary-color: #00a8e8;
    --accent-color: #A30563;
    --accent-dark: #7d0449;
    --accent-light: #c3077a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0e27;
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #A30563 100%);
    --gradient-secondary: linear-gradient(135deg, #A30563 0%, #0066cc 100%);
    --gradient-hero: linear-gradient(135deg, #0a0e27 0%, #1a2552 30%, #4d1a3d 70%, #2d3a6b 100%);
    --gradient-accent: linear-gradient(135deg, #0066cc 0%, #A30563 50%, #00a8e8 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.2);
    --shadow-accent: 0 8px 32px rgba(163, 5, 99, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.nav-title-effect {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.nav-title-effect::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-brand:hover .nav-title-effect::after {
    transform: scaleX(1);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 168, 232, 0.1) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    min-height: 85vh;
    z-index: 1;
    position: relative;
    padding: 2rem 0;
}

.hero-text {
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-main-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: block;
}

.hero-main-img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-image-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(35px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-image-decoration::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 130px;
    height: 130px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(25px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
    line-height: 1.2;
}

.title-line:first-child {
    margin-bottom: 0.2rem;
}

.title-line.highlight {
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #A30563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 500;
}

.hero-tagline {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    margin: 0.5rem 0 0;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 1.5rem 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: left;
    padding: 0.5rem 0;
}

.stat-item .stat-number {
    justify-content: flex-start;
}

.stat-number {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-plus {
    font-size: 0.6em;
    margin-left: 0.1em;
    opacity: 0.9;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    margin-top: 0.5rem;
}

.btn {
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

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

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image: 
        radial-gradient(circle at 10% 20%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, var(--accent-color) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    height: 100%;
}

.about-image-wrapper {
    position: sticky;
    top: 100px;
}

.about-img {
    width: 100%;
    height: auto;
    min-height: 500px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 5px solid transparent;
    background: var(--gradient-primary);
    padding: 5px;
    position: relative;
}

.about-img:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 30px 80px rgba(163, 5, 99, 0.35);
}

.about-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.about-image-badge i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-image-badge span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.about-intro {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 102, 204, 0.1);
}

.about-name {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-role {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.about-institution {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.about-institution i {
    font-size: 1.2rem;
}

.about-text .lead {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
}

.about-text p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.about-text p em {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 600;
}

.about-stats-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(163, 5, 99, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.highlight-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.highlight-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover::before {
    transform: scaleY(1);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 102, 204, 0.02) 100%);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Humanitarian Section
   ============================================ */
.humanitarian {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.humanitarian-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.humanitarian-image {
    position: relative;
}

.humanitarian-img {
    width: 100%;
    height: auto;
    min-height: 450px;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    transition: var(--transition);
    border: 4px solid transparent;
    background: var(--gradient-primary);
    padding: 4px;
}

.humanitarian-img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 25px 70px rgba(163, 5, 99, 0.4);
}

.humanitarian-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--text-dark);
}

.humanitarian-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.award-badge i {
    font-size: 3rem;
    color: #ffd700;
}

.award-badge strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.award-badge span {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   AI World Summit Award Section
   ============================================ */
.ai-award {
    background: white;
    padding: 6rem 0;
}

.award-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.award-image-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    padding: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-image-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.3);
}

.award-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: contain;
    max-height: 600px;
}

.award-description {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(163, 5, 99, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.award-description-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.award-description-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.award-description-text {
    flex: 1;
}

.award-description-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.award-description-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   Recognition Award Section
   ============================================ */
.recognition-award {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.recognition-award::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--accent-color) 0%, transparent 50%);
    pointer-events: none;
}

.recognition-award-wrapper {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.recognition-award-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.recognition-award-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    padding: 1.5rem;
    border: 5px solid transparent;
    background-image: var(--gradient-primary);
    background-clip: padding-box;
    position: relative;
    z-index: 2;
}

.recognition-award-img:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 35px 100px rgba(0, 102, 204, 0.35);
}

.recognition-award-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
    z-index: 1;
    animation: pulse 6s ease-in-out infinite;
}

.recognition-award-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

/* ============================================
   Projects Section
   ============================================ */
.projects {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.projects .container {
    max-width: 1600px;
    padding: 0 3rem;
}

.projects-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--accent-color) 0%, transparent 50%);
    pointer-events: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    position: relative;
    z-index: 1;
    max-width: 100%;
    align-items: stretch;
}

.project-card {
    background: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.project-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.4) 0%, rgba(163, 5, 99, 0.4) 100%);
    transition: var(--transition);
}

.project-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.project-card:hover .project-image {
    transform: scale(1.08);
}

.project-card:hover .project-image-overlay {
    background: linear-gradient(180deg, rgba(0, 102, 204, 0.25) 0%, rgba(163, 5, 99, 0.25) 100%);
}

.project-card:hover .project-badge {
    transform: scale(1.05);
    background: var(--gradient-primary);
    color: white;
}

.project-content {
    padding: 2rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-height: 0;
}

.project-content > * {
    flex-shrink: 0;
}

.project-content .project-link {
    margin-top: auto;
    margin-bottom: 0;
}

.project-icon {
    margin-top: -50px;
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid white;
}

.project-card:hover .project-icon {
    transform: rotate(8deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(163, 5, 99, 0.4);
}

.project-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0.5rem 0 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.project-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0.5rem 0;
    min-height: 4.5em;
    flex-shrink: 0;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(163, 5, 99, 0.08) 100%);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.feature-tag i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.project-card:hover .feature-tag {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.project-card:hover .feature-tag i {
    color: white;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    margin-top: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.25);
    width: fit-content;
    align-self: flex-start;
}

.project-link i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
    background: var(--gradient-secondary);
}

.project-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   Global Reach Section
   ============================================ */
.global-reach {
    background: var(--gradient-hero);
    color: white;
}

.global-reach .section-title,
.global-reach .section-description {
    color: white;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.country-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.country-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.country-item span {
    display: block;
    font-weight: 600;
    color: white;
}

/* ============================================
   Achievements Section
   ============================================ */
.achievements {
    background: var(--bg-light);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.achievement-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: baseline;
}

.achievement-number .stat-plus {
    font-size: 0.5em;
    margin-left: 0.1em;
    opacity: 0.8;
    -webkit-text-fill-color: transparent;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Technology Section
   ============================================ */
.technology {
    background: white;
}

.tech-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--text-dark);
}

.tech-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.tech-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

.tech-item i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-item:hover i {
    color: white;
    -webkit-text-fill-color: white;
}

.tech-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tech-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    min-height: 400px;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    transition: var(--transition);
    border: 4px solid transparent;
    background: var(--gradient-primary);
    padding: 4px;
}

.tech-img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 80px rgba(163, 5, 99, 0.5);
}

/* ============================================
   Roles & Expertise Section
   ============================================ */
.roles-expertise {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 8rem 0;
    overflow: hidden;
}

.roles-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(163, 5, 99, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 168, 232, 0.05) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.role-card {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.role-card:hover::before {
    transform: scaleX(1);
}

.role-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.role-card:hover .role-card-glow {
    opacity: 1;
}

.role-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.25);
}

/* Unique color schemes for each role */
.role-card-academician {
    border-top: 4px solid #4a90e2;
}

.role-card-academician:hover {
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
}

.role-card-clinician {
    border-top: 4px solid #e74c3c;
}

.role-card-clinician:hover {
    box-shadow: 0 20px 60px rgba(231, 76, 60, 0.3);
}

.role-card-technocrat {
    border-top: 4px solid #9b59b6;
}

.role-card-technocrat:hover {
    box-shadow: 0 20px 60px rgba(155, 89, 182, 0.3);
}

.role-card-sportsman {
    border-top: 4px solid #f39c12;
}

.role-card-sportsman:hover {
    box-shadow: 0 20px 60px rgba(243, 156, 18, 0.3);
}

.role-card-leadership {
    border-top: 4px solid #27ae60;
}

.role-card-leadership:hover {
    box-shadow: 0 20px 60px rgba(39, 174, 96, 0.3);
}

.role-card-community {
    border-top: 4px solid #e67e22;
}

.role-card-community:hover {
    box-shadow: 0 20px 60px rgba(230, 126, 34, 0.3);
}

.role-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.role-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.role-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.role-card:hover .role-icon {
    transform: rotate(5deg) scale(1.1);
}

.role-icon i {
    font-size: 2.2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.role-icon-academician {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.role-icon-clinician {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.role-icon-technocrat {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.role-icon-sportsman {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.role-icon-leadership {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.role-icon-community {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.role-icon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    border: 3px solid white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.role-header-text {
    flex: 1;
}

.role-card-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.role-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

.role-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 2.5rem 2.5rem;
}

.role-subsection {
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 16px;
    border-left: 5px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.role-subsection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.role-subsection:hover::before {
    opacity: 1;
}

.role-card-academician .role-subsection {
    border-left-color: #4a90e2;
}

.role-card-clinician .role-subsection {
    border-left-color: #e74c3c;
}

.role-card-technocrat .role-subsection {
    border-left-color: #9b59b6;
}

.role-card-sportsman .role-subsection {
    border-left-color: #f39c12;
}

.role-card-leadership .role-subsection {
    border-left-color: #27ae60;
}

.role-card-community .role-subsection {
    border-left-color: #e67e22;
}

.role-subsection:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.role-subsection-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.role-subsection-header i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.role-card-academician .role-subsection-header i {
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
}

.role-card-clinician .role-subsection-header i {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.role-card-technocrat .role-subsection-header i {
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
}

.role-card-sportsman .role-subsection-header i {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.role-card-leadership .role-subsection-header i {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

.role-card-community .role-subsection-header i {
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
}

.role-subsection-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

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

.role-subsection ul li {
    padding: 0.9rem 0;
    padding-left: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.role-subsection ul li:last-child {
    border-bottom: none;
}

.list-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
}

.role-card-academician .list-icon {
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
}

.role-card-clinician .list-icon {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.role-card-technocrat .list-icon {
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
}

.role-card-sportsman .list-icon {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.role-card-leadership .list-icon {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

.role-card-community .list-icon {
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
}

.role-subsection ul li:hover {
    color: var(--text-dark);
    padding-left: 0.5rem;
    transform: translateX(5px);
}

.role-subsection ul li:hover .list-icon {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-light);
}

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

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .navbar .container {
        padding: 0.8rem 1.5rem;
    }

    .nav-brand {
        gap: 0.8rem;
    }

    .nav-logo {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .nav-title {
        font-size: 0.95rem;
    }

    .nav-title-effect {
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }


    .hero {
        padding-top: 70px;
        min-height: auto;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        padding: 2.5rem 0;
    }

    .hero-text {
        text-align: center;
        gap: 1.2rem;
    }

    .hero-badge {
        margin: 0 auto;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        min-width: 140px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 1.5rem 0;
    }

    .stat-item {
        text-align: center;
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .hero-main-img {
        max-height: 350px;
        padding: 0.8rem;
    }

    .about-content,
    .humanitarian-content,
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Roles & Expertise Tablet */
    .roles-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .role-card-header {
        padding: 2rem 2rem 1.5rem;
    }

    .role-content {
        padding: 2rem 2rem 2.5rem;
    }

    .about-image-wrapper {
        position: relative;
        top: 0;
    }

    .about-image,
    .humanitarian-image {
        order: -1;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-stats-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .projects .container {
        padding: 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .tech-stack {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .award-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 100%;
    }

    .award-image-item {
        padding: 1.2rem;
    }

    .award-image {
        max-height: 500px;
    }

    .award-description {
        margin-top: 3rem;
        padding: 2rem;
    }

    .award-description-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .award-description-icon {
        margin: 0 auto;
    }

    .award-description-text h3 {
        font-size: 1.5rem;
    }

    .award-description-text p {
        font-size: 1rem;
    }

    .recognition-award {
        padding: 4rem 0;
    }

    .recognition-award-wrapper {
        max-width: 100%;
        margin-top: 2rem;
    }

    .recognition-award-image {
        padding: 1.5rem;
    }

    .recognition-award-img {
        max-width: 100%;
        padding: 1rem;
        border-radius: 25px;
    }

    .recognition-award-decoration {
        width: 400px;
        height: 400px;
    }

    .recognition-award-decoration::after {
        width: 280px;
        height: 280px;
    }

    .section-header {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.2rem;
    }

    section {
        padding: 3.5rem 0;
    }

    /* Navigation Mobile */
    .navbar {
        padding: 0;
    }

    .navbar .container {
        padding: 0.75rem 1.2rem;
    }

    .nav-brand {
        gap: 0.6rem;
    }

    .nav-logo {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .nav-title {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .nav-title-effect {
        font-size: 0.9rem;
    }


    .nav-menu {
        top: 65px;
        padding: 1.5rem;
    }

    .nav-menu a {
        padding: 0.9rem 0;
        font-size: 1rem;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 70px;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .hero-background {
        opacity: 0.08;
    }

    .hero-wrapper {
        gap: 2.5rem;
        padding: 2.5rem 0 1rem;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .hero-text {
        text-align: center;
        gap: 1.5rem;
        order: 2;
        width: 100%;
    }

    .hero-image {
        order: 1;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-image-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-main-img {
        max-height: 280px;
        padding: 0.8rem;
        width: 100%;
        object-fit: contain;
    }

    .hero-image-decoration {
        width: 120px;
        height: 120px;
        top: -10px;
        right: -10px;
    }

    .hero-image-decoration::after {
        width: 80px;
        height: 80px;
        bottom: -15px;
        left: -15px;
    }

    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
        gap: 0.5rem;
        margin: 0 auto 1rem;
        width: fit-content;
        border-radius: 40px;
    }

    .hero-badge i {
        font-size: 0.85rem;
    }

    .hero-badge span {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin: 0.8rem 0;
        text-align: center;
    }

    .title-line {
        display: block;
        margin: 0;
    }

    .title-line:first-child {
        margin-bottom: 0.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0.8rem 0;
        text-align: center;
        padding: 0 0.5rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        margin: 0.5rem 0 1rem;
        text-align: center;
        font-style: italic;
        padding: 0 0.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin: 1rem 0;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
    }

    .stat-item {
        padding: 0.8rem 0.5rem;
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        justify-content: center;
        margin-bottom: 0.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
        margin-top: 0.2rem;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.9rem;
        margin-top: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
        font-weight: 600;
        justify-content: center;
        border-radius: 50px;
    }

    .btn-primary {
        box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin: 0.8rem 0;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* About Section Mobile */
    .about-content {
        gap: 2rem;
    }

    .about-name {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .about-role {
        font-size: 1rem;
        line-height: 1.5;
    }

    .about-institution {
        font-size: 0.9rem;
    }

    .lead {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .about-stats-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 1.2rem;
    }

    .about-stat-number {
        font-size: 1.6rem;
    }

    .about-stat-label {
        font-size: 0.8rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .highlight-card h3 {
        font-size: 1.2rem;
        margin: 0.8rem 0;
    }

    .highlight-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Projects Mobile */
    .projects {
        padding: 3rem 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .projects .container {
        padding: 0 1.2rem;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 1.5rem 1.5rem 1.8rem;
    }

    .project-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-top: -40px;
        border-radius: 18px;
    }

    .project-card h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .project-description {
        font-size: 0.9rem;
        line-height: 1.7;
        min-height: auto;
    }

    .project-features {
        gap: 0.6rem;
    }

    .feature-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .project-link {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Humanitarian Mobile */
    .humanitarian-content {
        gap: 2rem;
    }

    .humanitarian-text h2 {
        font-size: 1.75rem;
    }

    .humanitarian-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .award-badge {
        padding: 1.2rem;
        gap: 1rem;
        flex-direction: row;
    }

    .award-badge i {
        font-size: 2rem;
    }

    .award-badge strong {
        font-size: 1rem;
    }

    .award-badge span {
        font-size: 0.85rem;
    }

    /* AI Award Mobile */
    .award-gallery {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .award-image-item {
        padding: 1rem;
        border-radius: 20px;
    }

    .award-image {
        max-height: 400px;
        border-radius: 15px;
    }

    .award-description {
        margin-top: 2.5rem;
        padding: 1.5rem;
    }

    .award-description-content {
        gap: 1.2rem;
    }

    .award-description-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .award-description-text h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .award-description-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .recognition-award {
        padding: 3rem 0;
    }

    .recognition-award-wrapper {
        margin-top: 1.5rem;
    }

    .recognition-award-image {
        padding: 1rem;
    }

    .recognition-award-img {
        padding: 0.8rem;
        border-radius: 20px;
        border-width: 3px;
    }

    .recognition-award-decoration {
        width: 300px;
        height: 300px;
    }

    .recognition-award-decoration::after {
        width: 200px;
        height: 200px;
    }

    /* Global Reach Mobile */
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .country-item {
        padding: 1rem 0.8rem;
    }

    .country-flag {
        font-size: 2.2rem;
    }

    .country-item span {
        font-size: 0.85rem;
    }

    /* Achievements Mobile */
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .achievement-card {
        padding: 2rem 1.5rem;
    }

    .achievement-number {
        font-size: 2.8rem;
    }

    .achievement-label {
        font-size: 1rem;
    }

    .achievement-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Technology Mobile */
    .tech-content {
        gap: 2rem;
    }

    .tech-text h2 {
        font-size: 1.75rem;
    }

    .tech-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .tech-stack {
        gap: 0.8rem;
    }

    .tech-item {
        padding: 0.9rem;
    }

    .tech-item i {
        font-size: 1.3rem;
    }

    .tech-item span {
        font-size: 0.9rem;
    }

    .tech-img {
        min-height: 300px;
        border-radius: 20px;
    }

    /* Roles & Expertise Mobile */
    .roles-expertise {
        padding: 4rem 0;
    }

    .roles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .role-card {
        border-radius: 20px;
    }

    .role-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 2rem 1.8rem 1.5rem;
    }

    .role-icon {
        width: 70px;
        height: 70px;
        border-radius: 18px;
    }

    .role-icon i {
        font-size: 1.8rem;
    }

    .role-icon-badge {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        top: -6px;
        right: -6px;
    }

    .role-card-header h3 {
        font-size: 1.6rem;
    }

    .role-subtitle {
        font-size: 0.9rem;
    }

    .role-content {
        gap: 1.2rem;
        padding: 1.5rem 1.8rem 2rem;
    }

    .role-subsection {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .role-subsection-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .role-subsection-header i {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .role-subsection-header h4 {
        font-size: 1rem;
    }

    .role-subsection ul li {
        padding: 0.7rem 0;
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .list-icon {
        width: 18px;
        height: 18px;
        font-size: 0.9rem;
    }

    .role-subsection ul li:hover {
        padding-left: 0.3rem;
    }

    /* Contact Mobile */
    .contact-content {
        max-width: 100%;
    }

    .contact-item {
        padding: 1.5rem;
        gap: 1.2rem;
        flex-direction: row;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-link {
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    /* Scroll Indicator Mobile */
    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
}

