@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

/* ========== FUTURISTIC CUSTOM CURSOR ========== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: screen;
}

/* Main cursor - geometric diamond shape */
.cursor-main {
    width: 24px;
    height: 24px;
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-diamond {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 50%, #dc143c 100%);
    box-shadow:
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 40px rgba(255, 69, 0, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: cursorBreathing 3s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes cursorBreathing {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 107, 53, 0.6),
            0 0 40px rgba(255, 69, 0, 0.4),
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow:
            0 0 30px rgba(255, 107, 53, 0.8),
            0 0 60px rgba(255, 69, 0, 0.6),
            inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

/* Trailing follower cursor */
.cursor-follower {
    width: 40px;
    height: 40px;
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 3px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

/* Orbiting particles */
.cursor-orbit {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
    animation: orbit 2s linear infinite;
    opacity: 0.8;
}

.cursor-orbit:nth-child(2) {
    animation-delay: -0.5s;
}

.cursor-orbit:nth-child(3) {
    animation-delay: -1s;
}

.cursor-orbit:nth-child(4) {
    animation-delay: -1.5s;
}

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(30px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* Hover state - expand and glow */
.cursor-hover .cursor-main {
    width: 32px;
    height: 32px;
}

.cursor-hover .cursor-diamond {
    background: linear-gradient(135deg, #ff8c42 0%, #ff4500 50%, #ff1744 100%);
    box-shadow:
        0 0 30px rgba(255, 140, 66, 0.8),
        0 0 60px rgba(255, 69, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 140, 66, 0.5);
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
}

/* Click state - pulse ripple */
.cursor-clicking .cursor-main {
    width: 20px;
    height: 20px;
}

.cursor-clicking .cursor-follower {
    width: 50px;
    height: 50px;
}

/* Click ripple effect */
.cursor-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    animation: rippleEffect 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Text/Link hover - color shift to deeper red */
.cursor-text .cursor-diamond {
    background: linear-gradient(135deg, #ff3c00 0%, #e91e63 50%, #c62828 100%);
    box-shadow:
        0 0 30px rgba(255, 60, 0, 0.8),
        0 0 60px rgba(233, 30, 99, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.cursor-text .cursor-follower {
    border-color: rgba(255, 60, 0, 0.5);
    background: radial-gradient(circle, rgba(255, 60, 0, 0.15) 0%, transparent 70%);
}

/* Mobile - hide custom cursor */
@media (max-width: 768px),
(hover: none) {
    .custom-cursor {
        display: none !important;
    }
}

html {
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    background: #000000;
    background-attachment: fixed;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding-top: 0;
    touch-action: pan-y;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.2);
}

/* Prevent horizontal scroll on mobile */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Improve touch targets for mobile */
a,
button {
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3);
    touch-action: manipulation;
}

/* ========== GLASS MORPHISM NAVBAR ========== */
.glass-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

@keyframes navSlideDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scale(0.95);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
    }
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: logoRotate 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

@keyframes logoRotate {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.1) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

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

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered animation for menu items */
.navbar-menu li:nth-child(1) {
    animation-delay: 0.3s;
}

.navbar-menu li:nth-child(2) {
    animation-delay: 0.4s;
}

.navbar-menu li:nth-child(3) {
    animation-delay: 0.5s;
}

.navbar-menu li:nth-child(4) {
    animation-delay: 0.6s;
}

.navbar-menu li:nth-child(5) {
    animation-delay: 0.7s;
}

.navbar-menu li:nth-child(6) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.navbar-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.navbar-menu a:hover {
    color: white;
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.navbar-menu a.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.navbar-cta {
    display: flex;
    gap: 10px;
    opacity: 0;
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.nav-btn-outline {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    padding: 10px 14px;
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.navbar-toggle:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.navbar-toggle:active {
    transform: scale(0.95);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    body {
        padding-top: 0;
    }

    .glass-navbar {
        top: 10px;
        width: 95%;
        padding: 12px 20px;
        border-radius: 18px;
    }

    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        animation: fadeInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(20px) scale(0.8);
        }

        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .navbar-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(26, 21, 53, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(139, 92, 246, 0.3);
        border-radius: 18px;
        padding: 20px;
        gap: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.4s ease,
            transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    }

    .navbar-menu.active {
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-menu li {
        opacity: 0;
        transform: translateX(-20px);
        animation: none;
    }

    .navbar-menu.active li {
        animation: slideInLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    /* Staggered mobile menu items */
    .navbar-menu.active li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .navbar-menu.active li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .navbar-menu.active li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .navbar-menu.active li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .navbar-menu.active li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .navbar-menu.active li:nth-child(6) {
        animation-delay: 0.3s;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .navbar-menu a {
        padding: 14px 18px;
        text-align: left;
        font-size: 1rem;
        border-radius: 12px;
        background: rgba(139, 92, 246, 0.05);
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .navbar-menu a:hover {
        background: rgba(139, 92, 246, 0.2);
        border-color: rgba(139, 92, 246, 0.3);
        transform: translateX(5px);
    }

    .navbar-menu a.active {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
        border-color: rgba(139, 92, 246, 0.5);
    }

    .navbar-cta {
        flex-direction: column;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        gap: 10px;
        opacity: 1;
        animation: none;
    }

    .nav-btn {
        text-align: center;
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 12px;
    }
}

/* Animated Background Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
    top: -250px;
    left: -250px;
    animation: floatOrb1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent);
    top: 50%;
    right: -200px;
    animation: floatOrb2 25s ease-in-out infinite;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
    bottom: -300px;
    left: 30%;
    animation: floatOrb3 30s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent);
    top: 20%;
    right: 20%;
    animation: floatOrb4 22s ease-in-out infinite;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 150px) scale(1.2);
    }

    66% {
        transform: translate(-80px, 100px) scale(0.9);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-120px, -100px) scale(1.1);
    }

    66% {
        transform: translate(80px, 120px) scale(0.95);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-150px, -80px) scale(1.15);
    }

    66% {
        transform: translate(100px, -120px) scale(0.9);
    }
}

@keyframes floatOrb4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(90px, 110px) scale(1.25);
    }

    66% {
        transform: translate(-100px, -90px) scale(0.85);
    }
}

/* Animated Grid Lines */
.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

/* Floating Dots */
.floating-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

/* Content */
.content {
    position: relative;
    z-index: 1;
    padding: 150px 50px 100px;
    max-width: 1400px;
    margin: 0 auto;
    color: white;
    width: 100%;
    box-sizing: border-box;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

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

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

.content>p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

/* Hero Label */
.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    color: #8B5CF6;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding: 10px 25px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

/* ========== TEAM SECTIONS ========== */
.team-section {
    position: relative;
    width: 100%;
    margin-bottom: 80px;
    overflow: hidden;
}

/* Leadership Team (Founder, Co-Founder, CEO) */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
    width: 100%;
}

.leadership-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    padding: 50px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.leadership-card:hover::before {
    opacity: 1;
}

.leadership-card:hover {
    transform: translateY(-15px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-photo::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #8B5CF6);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: gradientRotate 3s linear infinite;
    z-index: 1;
}

.profile-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.leadership-card:hover .profile-photo::before {
    animation: gradientRotate 1.5s linear infinite;
    filter: brightness(1.3);
}

.leadership-card:hover .profile-photo::after {
    opacity: 1;
}

.leadership-card:hover .profile-photo {
    transform: scale(1.15);
    box-shadow:
        0 20px 50px rgba(139, 92, 246, 0.6),
        0 0 60px rgba(139, 92, 246, 0.4),
        inset 0 0 40px rgba(139, 92, 246, 0.2);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    transition: all 0.5s ease;
    object-fit: cover;
}

.leadership-card:hover .profile-photo img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.team-role {
    display: inline-block;
    font-size: 0.85rem;
    color: #8B5CF6;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 20px;
}

.team-name {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.team-vision {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.team-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-link {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.15);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #8B5CF6;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.team-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(45%) sepia(79%) saturate(2476%) hue-rotate(238deg) brightness(91%) contrast(95%);
    transition: all 0.3s ease;
}

.team-link:hover {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}

.team-link:hover img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

/* Section Labels */
.section-label {
    text-align: center;
    margin: 80px 0 50px;
}

.section-label h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-label p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Core Team Grid */
.core-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    gap: 35px;
    margin-bottom: 100px;
    width: 100%;
    justify-content: center;
}

.team-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(139, 92, 246, 0.1),
            transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: 0;
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.team-card:hover::before {
    top: -25%;
    left: -25%;
}

.team-card:hover::after {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 25px 50px rgba(139, 92, 246, 0.3),
        0 0 50px rgba(139, 92, 246, 0.2),
        inset 0 0 30px rgba(139, 92, 246, 0.05);
}

.team-card>* {
    position: relative;
    z-index: 1;
}

.team-card .profile-photo {
    width: 140px;
    height: 140px;
    font-size: 3rem;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.5s ease;
}

.team-card:hover .profile-photo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.team-card .team-role {
    font-size: 0.75rem;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.team-card:hover .team-role {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
    border-color: rgba(139, 92, 246, 0.6);
    transform: scale(1.05);
}

.team-card .team-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.team-card:hover .team-name {
    letter-spacing: 1px;
}

.team-card .team-vision {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.team-card .team-links {
    gap: 12px;
}

.team-card .team-link {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.team-card .team-link:hover {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-color: transparent;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Campus Ambassadors */
.ambassadors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.ambassador-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ambassador-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(59, 130, 246, 0.1),
            transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: 0;
}

.ambassador-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.ambassador-card:hover::before {
    top: -25%;
    left: -25%;
}

.ambassador-card:hover::after {
    opacity: 1;
}

.ambassador-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow:
        0 20px 45px rgba(59, 130, 246, 0.3),
        0 0 40px rgba(59, 130, 246, 0.2),
        inset 0 0 25px rgba(59, 130, 246, 0.05);
}

.ambassador-card>* {
    position: relative;
    z-index: 1;
}

.ambassador-card .profile-photo {
    width: 110px;
    height: 110px;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    border: 3px solid rgba(59, 130, 246, 0.3);
    transition: all 0.5s ease;
}

.ambassador-card:hover .profile-photo {
    border-color: rgba(59, 130, 246, 0.6);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.ambassador-card .team-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ambassador-university {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.ambassador-card .team-links {
    gap: 8px;
}

.ambassador-card .team-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-color: rgba(59, 130, 246, 0.4);
    color: #3B82F6;
    cursor: pointer;
    pointer-events: auto;
}

.ambassador-card .team-link:hover {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
}

/* Collaborations Section */
.collaborations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 80px;
    width: 100%;
}

.collaboration-card {
    background: rgba(139, 92, 246, 0.03);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.collaboration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.collaboration-card:hover::before {
    opacity: 1;
}

.collaboration-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 15px 45px rgba(139, 92, 246, 0.2);
}

.collaboration-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.collaboration-card:hover .collaboration-logo {
    transform: scale(1.1);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

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

.collaboration-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.collaboration-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Hide background animations on mobile for performance */
@media (max-width: 968px) {

    .bg-orb {
        opacity: 0.3 !important;
        filter: blur(80px) !important;
        animation-duration: 30s !important;
        display: block !important;
    }
    
    .grid-lines {
        opacity: 0.8 !important;
        background-size: 40px 40px !important;
        animation-duration: 30s !important;
        background-image:
            linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px) !important;
        display: block !important;
    }
    
    .floating-dots {
        opacity: 0.6 !important;
        display: block !important;
    }

    .content {
        padding: 120px 20px 60px;
    }

    .content h1 {
        font-size: 2.5rem !important;
    }

    .content p {
        font-size: 1rem !important;
    }

    .hero-label {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
        padding: 8px 20px !important;
        margin-bottom: 20px !important;
    }

    /* Leadership Cards - Enhanced Mobile View */
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .leadership-card {
        padding: 45px 30px;
        border-radius: 20px;
        text-align: center;
        background: rgba(139, 92, 246, 0.03);
        border: 1.5px solid rgba(139, 92, 246, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .leadership-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
        border-color: rgba(139, 92, 246, 0.4);
    }

    .profile-photo {
        width: 140px;
        height: 140px;
        font-size: 4rem;
        margin: 0 auto 25px;
        border: 3px solid rgba(139, 92, 246, 0.3);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
    }

    .team-role {
        font-size: 0.75rem !important;
        padding: 6px 16px !important;
    }

    .team-name {
        font-size: 1.6rem !important;
        margin-bottom: 8px;
    }

    .team-vision {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 22px;
    }

    .team-link {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.3rem !important;
        background: rgba(139, 92, 246, 0.08) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

    .team-link:hover {
        transform: translateY(-3px) scale(1.05) !important;
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35) !important;
        background: rgba(139, 92, 246, 0.15) !important;
    }

    /* Core Team - Enhanced Mobile View */
    .core-team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-card {
        padding: 35px 25px;
        text-align: center;
        background: rgba(139, 92, 246, 0.03);
        border: 1.5px solid rgba(139, 92, 246, 0.15);
        border-radius: 18px;
        transition: all 0.3s ease;
    }

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.25);
        border-color: rgba(139, 92, 246, 0.35);
        background: rgba(139, 92, 246, 0.05);
    }

    .team-card .profile-photo {
        width: 120px;
        height: 120px;
        font-size: 3.5rem;
        margin: 0 auto 20px;
        border: 2.5px solid rgba(139, 92, 246, 0.25);
    }

    .team-card .team-name {
        font-size: 1.4rem !important;
        margin-bottom: 6px;
    }

    .team-card .team-vision {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 18px;
    }

    /* Ambassadors - Enhanced Mobile View */
    .ambassadors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .ambassador-card {
        padding: 35px 25px;
        text-align: center;
        background: rgba(139, 92, 246, 0.03);
        border: 1.5px solid rgba(139, 92, 246, 0.15);
        border-radius: 18px;
        transition: all 0.3s ease;
    }

    .ambassador-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.25);
        border-color: rgba(139, 92, 246, 0.35);
    }

    .ambassador-card .profile-photo {
        width: 120px;
        height: 120px;
        font-size: 3rem;
        margin: 0 auto 20px;
        border: 2.5px solid rgba(139, 92, 246, 0.25);
    }

    /* Collaborations - Enhanced Mobile View */
    .collaborations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .collaboration-card {
        padding: 35px 25px;
        text-align: center;
        background: rgba(139, 92, 246, 0.03);
        border: 1.5px solid rgba(139, 92, 246, 0.15);
        border-radius: 18px;
        transition: all 0.3s ease;
    }

    .collaboration-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.25);
        border-color: rgba(139, 92, 246, 0.35);
    }

    .collaboration-logo {
        width: 110px;
        height: 110px;
        font-size: 3rem;
        margin: 0 auto 20px;
        border: 2.5px solid rgba(139, 92, 246, 0.25);
    }

    .collaboration-name {
        font-size: 1.4rem !important;
        margin-bottom: 8px;
    }

    .collaboration-description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    /* Section Labels */
    .section-label {
        margin: 60px 0 40px;
        text-align: center;
    }

    .section-label h2 {
        font-size: 2.2rem !important;
    }

    .section-label p {
        font-size: 1rem !important;
    }

    /* Social Links - Touch Friendly */
    .team-links,
    .ambassador-links {
        gap: 10px !important;
        justify-content: center;
    }

    .social-link {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.3rem !important;
        background: rgba(139, 92, 246, 0.08) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
        transition: all 0.3s ease !important;
    }

    .social-link:hover {
        transform: translateY(-3px) scale(1.05) !important;
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35) !important;
        background: rgba(139, 92, 246, 0.15) !important;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem !important;
    }

    .hero-label {
        font-size: 0.7rem !important;
        letter-spacing: 1.5px !important;
        padding: 6px 16px !important;
        margin-bottom: 15px !important;
    }

    /* Leadership Cards - Small Mobile */
    .leadership-grid {
        gap: 25px;
        padding: 0 15px;
    }

    .leadership-card {
        padding: 40px 25px;
    }

    .profile-photo {
        width: 130px;
        height: 130px;
        font-size: 3.5rem;
    }

    .team-name {
        font-size: 1.4rem !important;
    }

    .team-vision {
        font-size: 0.95rem !important;
    }

    .team-link {
        width: 46px !important;
        height: 46px !important;
        font-size: 1.2rem !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

    /* Core Team - Small Mobile */
    .core-team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .team-card {
        padding: 30px 20px;
    }

    .team-card .profile-photo {
        width: 110px;
        height: 110px;
        font-size: 3rem;
    }

    .team-card .team-name {
        font-size: 1.3rem !important;
    }

    .team-card .team-vision {
        font-size: 0.85rem !important;
    }

    /* Ambassadors - Small Mobile */
    .ambassadors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .ambassador-card {
        padding: 30px 20px;
    }

    .ambassador-card .profile-photo {
        width: 110px;
        height: 110px;
        font-size: 2.8rem;
    }

    /* Collaborations - Small Mobile */
    .collaborations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .collaboration-card {
        padding: 30px 20px;
    }

    .collaboration-logo {
        width: 100px;
        height: 100px;
        font-size: 2.8rem;
    }

    .collaboration-name {
        font-size: 1.3rem !important;
    }

    .collaboration-description {
        font-size: 0.85rem !important;
    }

    /* Section Labels */
    .section-label {
        margin: 50px 0 35px;
    }

    .section-label h2 {
        font-size: 1.8rem !important;
    }

    .section-label p {
        font-size: 0.95rem !important;
    }

    /* Social Links - Small Mobile Touch Friendly */
    .social-link {
        width: 46px !important;
        height: 46px !important;
        font-size: 1.2rem !important;
    }

    /* Prevent text overflow on mobile */
    .team-name,
    .collaboration-name,
    .ambassador-university,
    .team-vision,
    .collaboration-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Better spacing for mobile */
    .team-section {
        margin-bottom: 50px !important;
        padding: 40px 15px;
    }
}

/* ========== FOOTER SECTION ========== */
.footer {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #0a0814);
    padding: 80px 50px 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #8B5CF6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #3B82F6);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #8B5CF6;
    transform: translateX(5px);
}

.footer-newsletter {
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-message {
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-message.show {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #8B5CF6;
}

/* Enhanced Footer Mobile Responsive - From index2.html */
@media (max-width: 968px) {
    .footer {
        padding: 60px 25px 30px !important;
        background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #050309);
    }

    .footer-container {
        padding: 0 !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
        margin-bottom: 40px !important;
        padding-bottom: 40px !important;
        border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    }

    .footer-brand {
        max-width: 100% !important;
        text-align: center !important;
        padding: 0 10px;
    }

    .footer-logo {
        font-size: 2.5rem !important;
        text-align: center !important;
        display: block !important;
        margin-bottom: 18px !important;
        background: linear-gradient(135deg, #a78bfa, #60a5fa);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    }

    .footer-brand p {
        font-size: 1rem !important;
        text-align: center !important;
        line-height: 1.8 !important;
        color: rgba(255, 255, 255, 0.75) !important;
        max-width: 500px;
        margin: 0 auto 25px !important;
    }

    .footer-social {
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: wrap;
    }

    .social-link {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.4rem !important;
        background: rgba(139, 92, 246, 0.08) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
        backdrop-filter: blur(10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .social-link:hover {
        transform: translateY(-5px) scale(1.05) !important;
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4) !important;
    }

    .footer-column {
        text-align: center !important;
        padding: 20px 15px;
        background: rgba(139, 92, 246, 0.03);
        border-radius: 16px;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .footer-column h3 {
        font-size: 1.2rem !important;
        text-align: center !important;
        margin-bottom: 22px !important;
        letter-spacing: 0.5px;
    }

    .footer-column h3::after {
        left: 50% !important;
        transform: translateX(-50%);
        width: 50px !important;
        height: 3px !important;
    }

    .footer-links {
        align-items: center !important;
    }

    .footer-links li {
        margin-bottom: 12px !important;
    }

    .footer-links a {
        font-size: 1rem !important;
        padding: 10px 0 !important;
        display: inline-block !important;
        color: rgba(255, 255, 255, 0.75) !important;
        position: relative;
    }

    .footer-links a::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #8B5CF6, #3B82F6);
        transition: width 0.3s ease;
    }

    .footer-links a:hover::after {
        width: 80%;
    }

    .footer-newsletter {
        max-width: 100% !important;
        margin-top: 0 !important;
    }

    .newsletter-input {
        padding: 16px 20px !important;
        font-size: 1rem !important;
        background: rgba(139, 92, 246, 0.08) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
        margin-bottom: 12px !important;
    }

    .newsletter-input:focus {
        background: rgba(139, 92, 246, 0.12) !important;
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
    }

    .newsletter-btn {
        padding: 16px 30px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #8B5CF6, #3B82F6);
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    }

    .newsletter-btn:hover {
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5) !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 18px !important;
        padding-top: 30px !important;
        border-top: 1px solid rgba(139, 92, 246, 0.1);
    }

    .footer-copyright {
        font-size: 0.95rem !important;
        order: 2 !important;
        color: rgba(255, 255, 255, 0.65) !important;
        letter-spacing: 0.3px;
    }

    .footer-links-bottom {
        gap: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        order: 1 !important;
        flex-direction: row !important;
    }

    .footer-links-bottom a {
        font-size: 0.95rem !important;
        padding: 8px 12px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        border-radius: 8px;
        transition: all 0.3s ease !important;
    }

    .footer-links-bottom a:hover {
        color: #8B5CF6 !important;
        background: rgba(139, 92, 246, 0.1);
    }
}

@media (max-width: 480px) {

    /* Enhanced Footer for Small Mobile Devices */
    .footer {
        padding: 50px 20px 25px !important;
    }

    .footer-top {
        gap: 35px !important;
        margin-bottom: 35px !important;
        padding-bottom: 35px !important;
    }

    .footer-brand {
        padding: 0 5px !important;
    }

    .footer-logo {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
        letter-spacing: -0.5px;
    }

    .footer-brand p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        padding: 0 10px;
    }

    .footer-social {
        gap: 10px !important;
    }

    .social-link {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.3rem !important;
    }

    .footer-column {
        padding: 18px 12px !important;
        border-radius: 14px !important;
    }

    .footer-column h3 {
        font-size: 1.1rem !important;
        margin-bottom: 18px !important;
    }

    .footer-column h3::after {
        width: 45px !important;
        height: 2.5px !important;
    }

    .footer-links li {
        margin-bottom: 10px !important;
    }

    .footer-links a {
        font-size: 0.95rem !important;
        padding: 8px 0 !important;
    }

    .newsletter-input {
        padding: 14px 18px !important;
        font-size: 0.95rem !important;
        margin-bottom: 10px !important;
    }

    .newsletter-btn {
        padding: 14px 25px !important;
        font-size: 0.95rem !important;
    }

    .footer-bottom {
        gap: 15px !important;
        padding-top: 25px !important;
    }

    .footer-copyright {
        font-size: 0.9rem !important;
        padding: 0 10px;
        line-height: 1.5;
    }

    .footer-links-bottom {
        gap: 12px !important;
    }

    .footer-links-bottom a {
        font-size: 0.9rem !important;
        padding: 6px 10px !important;
    }
}