@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

:root {
    --bg-main: #0b0f19;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.07);
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.15);
    --secondary: #a855f7;
    --secondary-glow: rgba(168, 85, 247, 0.15);
    --accent: #ec4899;
    --accent-glow: rgba(236, 72, 153, 0.15);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --glass-blur: blur(16px);
    --transition-speed: 0.4s;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

/* Background glowing blur blobs */
body::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f1322;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    border: 2px solid #0f1322;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    width: 0%;
    z-index: 110;
    transition: width 0.1s ease;
}

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

/* Navigation & Header */
header {
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 0.45rem 0;
    background: rgba(11, 15, 25, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-text-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--primary-glow));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-text-img {
    transform: scale(1.05) translateY(-1px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

nav a:hover {
    color: var(--text-primary);
}

nav a:hover i {
    transform: translateY(-2px);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
    transition: transform 0.3s ease;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.mobile-lang-switcher {
    display: none;
}

.desktop-lang-switcher {
    display: flex;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-logo-container {
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 0 25px rgba(99, 102, 241, 0.45));
    animation: float 4s ease-in-out infinite;
}

.hero-logo-img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 10%, #c7d2fe 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: none;
    letter-spacing: -0.2px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.45);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Scroll Animation Elements */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Common Section Title */
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    text-align: center;
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.section-title span.icon-title {
    display: inline-flex;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

/* About Section */
.about {
    padding: 6rem 0;
    margin: 2rem 0;
}

.about-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: white;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
}

.badge:hover {
    background: rgba(99, 102, 241, 0.05);
}

.badge i {
    color: var(--primary);
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.07) 0%, rgba(168, 85, 247, 0.07) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

/* Goals Layout */
.goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.2rem;
    margin-top: 3.5rem;
}

.goal-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: height var(--transition-speed) ease;
}

.goal-card:nth-child(1)::before { background: var(--primary); }
.goal-card:nth-child(2)::before { background: var(--secondary); }
.goal-card:nth-child(3)::before { background: var(--accent); }

.goal-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.goal-icon {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.goal-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.goal-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Statistics Section */
.stats {
    padding: 6rem 0;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.03) 0%, transparent 60%);
}

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

.stat-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    padding: 2.2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px var(--primary-glow);
    background: rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.stat-label i {
    color: var(--primary);
    font-size: 0.95rem;
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Initiatives Section */
.initiatives {
    padding: 6rem 0;
}

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

.initiative-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid transparent;
    padding: 2.8rem 2.2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.initiative-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.05);
}

.initiative-item:nth-child(1):hover { border-left-color: var(--primary); }
.initiative-item:nth-child(2):hover { border-left-color: var(--secondary); }
.initiative-item:nth-child(3):hover { border-left-color: var(--accent); }
.initiative-item:nth-child(4):hover { border-left-color: #10b981; }
.initiative-item:nth-child(5):hover { border-left-color: #f59e0b; }
.initiative-item:nth-child(6):hover { border-left-color: #ec4899; }

.showcase-grid {
    max-width: 960px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card p {
    flex-grow: 1;
    margin-bottom: 2.2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.init-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.15));
}

.logo-icon-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    overflow: hidden;
}

.project-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.initiative-item:nth-child(1):hover .init-icon { background: var(--primary); color: white; border-color: transparent; filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.5)); transform: scale(1.1) rotate(5deg); }
.initiative-item:nth-child(2):hover .init-icon { background: rgba(6, 182, 212, 0.1); border-color: var(--accent); filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4)); transform: scale(1.1) rotate(-5deg); }
.initiative-item:nth-child(2):hover .project-logo-img { transform: scale(1.1) rotate(-3deg); }

.initiative-item h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.project-action {
    display: flex;
    margin-top: auto;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.visit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(99, 102, 241, 0.4);
}

.visit-btn i {
    transition: transform 0.3s ease;
}

.visit-btn:hover i {
    transform: translateX(4px);
}

.more-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.more-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.more-btn i {
    transition: transform 0.3s ease;
}

.more-btn:hover i {
    transform: translateY(3px);
}

/* Team Section */
.team {
    padding: 6rem 0;
}

.team-showcase {
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem 0;
}

.team-card-premium {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.team-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.team-card-premium:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.25);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(168, 85, 247, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.team-logo-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--secondary);
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.15));
}

.team-card-premium:hover .team-logo-container {
    transform: scale(1.1) rotate(360deg);
    background: var(--secondary);
    color: white;
    border-color: transparent;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.3);
}

.team-card-premium h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: white;
    background: linear-gradient(135deg, white 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-description-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.85;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--primary);
    width: 44px;
    height: 44px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    min-width: 44px;
}

.contact-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: white;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

textarea.form-input {
    resize: vertical;
    min-height: 140px;
}

/* Toast Notifications */
.success-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.success-toast.fade-out {
    opacity: 0;
    transform: translateX(50px);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.toast-content i {
    color: #10b981;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.4));
}

/* Footer */
footer {
    background: linear-gradient(180deg, #070910 0%, #030408 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 6rem 2rem 3rem;
    margin-top: 5rem;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: 1.8fr 1fr 1.4fr;
    }
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.3));
    transition: transform 0.5s ease;
}

.footer-section h4:hover .footer-logo-img {
    transform: scale(1.1) rotate(5deg);
}

.footer-vision-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-top: 1rem;
    max-width: 360px;
}

/* Upgraded links with slide effect */
.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 0.9rem;
}

.footer-links-list a {
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links-list a i {
    font-size: 0.75rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.footer-links-list a:hover {
    color: white;
    transform: translateX(6px);
}

.footer-links-list a:hover i {
    transform: translateX(3px);
}

/* Premium LDOpvl Dev Info Box */
.dev-card-info {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.6rem;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dev-card-info:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(168, 85, 247, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 85, 247, 0.05);
}

.dev-team-title {
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, white 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.dev-item-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
}

.dev-item-link:last-child {
    margin-bottom: 0;
}

.dev-item-link i {
    color: var(--secondary);
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
}

.dev-item-link a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-item-link a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding-top: 1.5rem;
}

.footer-bottom-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06) 50%, transparent);
    margin-bottom: 2rem;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.made-with-heart {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.heartbeat-icon {
    color: #ef4444;
    font-size: 0.9rem;
    animation: heartbeat 1.5s infinite;
    filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.4));
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

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

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

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px var(--primary));
    }
    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 12px var(--primary));
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .image-placeholder {
        width: 180px;
        height: 180px;
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.6rem 0;
    }
    
    .logo-text-img {
        height: 60px; /* Perfectly scaled typographic logo on mobile */
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 110;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -280px; /* Precise hidden position matching drawer width */
        width: 280px;
        height: 100vh;
        background: rgba(7, 9, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        padding: 7rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
        z-index: 100;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        visibility: hidden; /* Fully prevents drawer from creating horizontal overflow! */
    }
    
    nav.active {
        right: 0;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.8rem;
        align-items: flex-start;
    }
    
    nav a {
        font-size: 1.15rem;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    }
    
    .desktop-lang-switcher {
        display: none !important;
    }
    
    .mobile-lang-switcher {
        display: flex !important;
        margin-top: auto; /* Pushes the switcher elegantly to the bottom of the drawer */
        margin-bottom: 2rem;
        justify-content: center;
        width: 100%;
    }
    
    .hero-logo-img {
        height: 150px; /* Balanced hero logo size on tablets */
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .container {
        padding: 0 1.25rem; /* Better breathing room on mobile viewports */
    }
    
    .about-card,
    .contact-card {
        padding: 2.5rem 1.8rem;
    }
    
    /* Enforce 16px font-size to prevent mobile browser auto-zooming on inputs */
    .form-input, 
    .form-group input, 
    .form-group textarea {
        font-size: 16px !important;
    }
    
    .team-card-premium {
        padding: 3rem 1.8rem;
    }
    
    .team-logo-container {
        width: 80px;
        height: 80px;
        font-size: 2.1rem;
    }
}

@media (max-width: 480px) {
    .logo-text-img {
        height: 52px; /* Ultra sleek typographic logo size on narrow screens */
    }
    
    .container {
        padding: 0 1rem; /* Maximize available screen width on small smartphones */
    }
    
    .initiative-item {
        padding: 2.2rem 1.25rem; /* Perfectly adapted internal padding for small cards */
    }
    
    .hero-logo-img {
        height: 120px; /* Beautifully compact hero logo on small phones */
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cta-button {
        justify-content: center;
        width: 100%;
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .goals {
        grid-template-columns: 1fr;
    }
    
    .team-card-premium {
        padding: 2.5rem 1.25rem;
    }
    
    .team-card-premium h3 {
        font-size: 1.5rem;
    }
    
    .team-description-text {
        font-size: 0.95rem;
        line-height: 1.75;
    }
}
