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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile first approach - reduced padding */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Advanced Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(1deg) scale(1.05); }
    66% { transform: rotate(-1deg) scale(0.95); }
}

/* Animated Grid Background */
.animated-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 15s linear infinite;
    z-index: -1;
}

/* Mobile grid adjustment */
@media (max-width: 768px) {
    .animated-grid {
        background-size: 30px 30px;
    }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -2px;
    transition: all 0.4s ease;
    position: relative;
    white-space: nowrap;
    flex-direction: row-reverse;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFEB3B, #FFF176);
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: block;
}

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

/* FIXED: Hamburger Menu with Cursor */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    cursor: pointer;
}

.hamburger.active {
    background: rgba(255, 235, 59, 0.1);
    border-color: rgba(255, 235, 59, 0.3);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #FFEB3B;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #FFEB3B;
}

/* Mobile navigation styles - FIXED */
@media (max-width: 768px) {
    .logo {
        font-size: 28px;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
    }
    
    .hamburger {
        display: flex !important; /* Force display on mobile */
        cursor: pointer;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 30px;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 15px 0;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .nav-links a:hover {
        color: #FFEB3B;
        transform: translateY(-2px);
    }
    
    .nav-cta {
        margin-top: 20px;
        padding: 15px 30px;
        font-size: 16px;
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .hamburger {
        display: flex !important;
        cursor: pointer;
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
        cursor: pointer;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

/* Ensure hamburger is always clickable */
.hamburger * {
    cursor: pointer;
}

/* Fix for touch devices */
@media (hover: none) {
    .hamburger {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hamburger:active {
        background: rgba(255, 255, 255, 0.15);
    }
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 8px;
}

.nav-links a:hover::before {
    width: 120%;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-cta {
    background: linear-gradient(135deg, #FFEB3B 0%, #FFF176 100%);
    color: #000000 !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 235, 59, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
    display: inline-block;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 235, 59, 0.5);
    color: #000000;
    text-decoration: none;
}

/* About Header - COMPLETELY FIXED */
.about-header {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-header {
        padding: 120px 0 80px;
    }
}

@media (max-width: 480px) {
    .about-header {
        padding: 100px 0 60px;
    }
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 1) 70%);
}

.header-content {
    position: relative;
    z-index: 2;
    animation: headerSlideIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: badgeFloat 3s ease-in-out infinite, badgeGlow 2s ease-in-out infinite alternate;
    backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
}

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

@keyframes badgeGlow {
    from { box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); }
    to { box-shadow: 0 0 25px rgba(255, 255, 255, 0.2); }
}

/* COMPLETELY FIXED: "Revolutionizing Business Through AI" */
.about-header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
        line-height: 1.1;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .about-header h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
        line-height: 1.1;
        margin-bottom: 20px;
        padding: 0 5px;
        word-break: break-word;
    }
}

@media (max-width: 375px) {
    .about-header h1 {
        font-size: 1.9rem;
        letter-spacing: 0;
        padding: 0;
    }
}

@media (max-width: 320px) {
    .about-header h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }
}

.about-header p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-header p {
        font-size: 1rem;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .about-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Mission & Vision Section - PERFECTLY FIXED FOR MOBILE */
.mission-vision {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 768px) {
    .mission-vision {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .mission-vision {
        padding: 60px 0;
    }
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

/* Section Title */
.mission-vision-title {
    text-align: center;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .mission-vision-title {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .mission-vision-title {
        margin-bottom: 40px;
    }
}

.mission-vision-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .mission-vision-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .mission-vision-title h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
}

.mission-vision-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

/* Mobile: Stack one after another in perfect squares */
@media (max-width: 768px) {
    .mission-vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .mission-vision-content {
        gap: 30px;
        max-width: 350px;
        padding: 0 15px;
    }
}

@media (max-width: 375px) {
    .mission-vision-content {
        max-width: 320px;
        padding: 0 10px;
    }
}

@media (max-width: 320px) {
    .mission-vision-content {
        max-width: 300px;
        padding: 0 5px;
    }
}

/* PERFECT SQUARE CARDS - Fixed aspect ratio for all devices */
.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: missionSlideIn 1s ease-out both;
    
    /* Perfect square dimensions */
    aspect-ratio: 1/1;
    height: auto;
    min-height: 450px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

/* Perfect squares for mobile */
@media (max-width: 768px) {
    .mission-card,
    .vision-card {
        aspect-ratio: 1/1;
        height: 400px;
        width: 400px;
        max-width: 100%;
        margin: 0 auto;
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .mission-card,
    .vision-card {
        height: 350px;
        width: 350px;
        max-width: 100%;
        padding: 28px;
        border-radius: 20px;
    }
}

@media (max-width: 375px) {
    .mission-card,
    .vision-card {
        height: 320px;
        width: 320px;
        max-width: 100%;
        padding: 24px;
    }
}

@media (max-width: 320px) {
    .mission-card,
    .vision-card {
        height: 300px;
        width: 300px;
        max-width: 100%;
        padding: 20px;
    }
}

.mission-card {
    animation-delay: 0.2s;
}

.vision-card {
    animation-delay: 0.4s;
}

@keyframes missionSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.8s;
}

.mission-card:hover::before,
.vision-card:hover::before {
    left: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .mission-card:hover,
    .vision-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFEB3B;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 375px) {
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    background: rgba(255, 235, 59, 0.1);
    border-color: rgba(255, 235, 59, 0.3);
    transform: rotate(5deg) scale(1.1);
}

.card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .card-title {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .card-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
        line-height: 1.1;
    }
}

@media (max-width: 375px) {
    .card-title {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }
}

.card-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .card-description {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .card-description {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 5px;
    }
}

@media (max-width: 375px) {
    .card-description {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0;
    }
}

/* Values Section */
.values {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 768px) {
    .values {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .values {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 1rem;
        max-width: 95%;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        gap: 20px;
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: valueSlideIn 0.8s ease-out both;
}

@media (max-width: 768px) {
    .value-card {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 24px 20px;
        border-radius: 18px;
    }
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.3s; }
.value-card:nth-child(3) { animation-delay: 0.5s; }
.value-card:nth-child(4) { animation-delay: 0.7s; }
.value-card:nth-child(5) { animation-delay: 0.9s; }
.value-card:nth-child(6) { animation-delay: 1.1s; }

@keyframes valueSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 235, 59, 0.05), transparent);
    transition: left 0.8s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .value-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 235, 59, 0.1);
    border: 1px solid rgba(255, 235, 59, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFEB3B;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
}

.value-card:hover .value-icon {
    background: rgba(255, 235, 59, 0.2);
    border-color: rgba(255, 235, 59, 0.5);
    transform: scale(1.1) rotate(10deg);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .value-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
}

.value-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .value-description {
        font-size: 0.9rem;
    }
}

/* Team Section */
.team {
    padding: 120px 0;
    background: rgba(0, 0, 0, 1);
    position: relative;
}

@media (max-width: 768px) {
    .team {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .team {
        padding: 60px 0;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        gap: 20px;
        margin-top: 40px;
    }
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: teamSlideIn 0.8s ease-out both;
}

@media (max-width: 768px) {
    .team-card {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .team-card {
        padding: 24px 20px;
        border-radius: 18px;
    }
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.3s; }
.team-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes teamSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.8s;
}

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

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .team-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFEB3B 0%, #FFF176 100%);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .team-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(255, 235, 59, 0.3);
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

@media (max-width: 480px) {
    .member-name {
        font-size: 1.2rem;
    }
}

.member-role {
    color: #FFEB3B;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .member-role {
        font-size: 0.9rem;
    }
}

.member-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .member-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* CTA Section */
.cta-section {
    padding: 140px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.98) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 28px;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .cta-section h2 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
}

.cta-section p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-section p {
        font-size: 1.1rem;
        max-width: 90%;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

.btn {
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .btn {
        padding: 16px 32px;
        font-size: 16px;
        gap: 8px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FFEB3B 0%, #FFF176 100%);
    color: #000000;
    box-shadow: 0 8px 30px rgba(255, 235, 59, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 235, 59, 0.5);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 1);
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
    }
}

.footer-brand .logo {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 480px) {
    .footer-brand .logo {
        font-size: 1.8rem;
        justify-content: center;
    }
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

@media (max-width: 480px) {
    .footer-brand p {
        font-size: 1rem;
    }
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 28px;
    font-size: 1.2rem;
    font-weight: 700;
}

@media (max-width: 480px) {
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

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

.footer-section ul li {
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .footer-section ul li {
        margin-bottom: 12px;
    }
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.4s ease;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .footer-section ul li a {
        font-size: 0.9rem;
    }
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    justify-content: center;
}

@media (max-width: 768px) {
    .social-icons {
        gap: 15px;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 12px;
    }
}

.social-icons a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .social-icons a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.social-icons a:hover::before {
    left: 100%;
}

.social-icons a:hover {
    background: rgba(255, 235, 59, 0.1);
    border-color: rgba(255, 235, 59, 0.3);
    color: #ffeb3b;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #cccccc;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.9rem;
    }
}

/* COMPLETE MODAL STYLES */
.getstarted-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 3000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow-y: auto;
    padding: 20px 0;
}

.getstarted-overlay.active {
    display: flex;
}

.getstarted-modal {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    max-width: 550px;
    width: 90vw;
    max-height: none;
    min-height: auto;
    overflow-y: visible;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 235, 59, 0.1);
    padding: 40px 32px 32px;
    text-align: left;
    position: relative;
    animation: fadeInUpModal 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(30px);
    margin: auto;
}

@media (min-width: 1024px) {
    .getstarted-modal {
        max-width: 600px;
        width: 50vw;
        padding: 48px 40px 40px;
    }
    
    .getstarted-overlay {
        align-items: center;
        padding: 40px 0;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .getstarted-modal {
        max-width: 480px;
        width: 85vw;
        padding: 36px 28px 28px;
        border-radius: 28px;
    }
    
    .getstarted-overlay {
        align-items: flex-start;
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .getstarted-overlay {
        align-items: flex-start;
        justify-content: center;
        padding: 20px 0 40px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .getstarted-modal {
        width: 95vw;
        max-width: 95vw;
        margin: 20px auto;
        padding: 32px 20px 24px;
        border-radius: 20px;
        max-height: none;
        min-height: auto;
        overflow: visible;
        position: relative;
    }
}

@media (max-width: 375px) {
    .getstarted-modal {
        width: 96vw;
        margin: 15px auto;
        padding: 28px 16px 20px;
        border-radius: 16px;
    }
    
    .getstarted-overlay {
        padding: 15px 0 30px;
    }
}

.getstarted-modal::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 235, 59, 0.1), transparent);
    z-index: -1;
    border-radius: 32px;
    opacity: 0.8;
}

@keyframes fadeInUpModal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.getstarted-modal h2 {
    margin: 0 0 24px;
    font-weight: 900;
    font-size: 2rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.2;
}

@media (max-width: 480px) {
    .getstarted-modal h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

.getstarted-modal p {
    color: #cccccc;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .getstarted-modal p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}

.getstarted-modal form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    margin-top: 20px;
    font-size: 1rem;
}

@media (max-width: 480px) {
    .getstarted-modal form label {
        margin-top: 16px;
        font-size: 0.9rem;
    }
}

.getstarted-modal form label:first-of-type {
    margin-top: 0;
}

.getstarted-modal input,
.getstarted-modal textarea,
.getstarted-modal select {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
    .getstarted-modal input,
    .getstarted-modal textarea,
    .getstarted-modal select {
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 8px;
        margin-bottom: 12px;
    }
}

/* FIXED: Mobile Select Cursor Visibility */
.getstarted-modal select {
    background: rgba(0, 0, 0, 0.9) !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23ffffff%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    color: #ffffff !important;
    cursor: pointer;
}

.getstarted-modal select option {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 12px;
}

/* Ensure cursor is visible on mobile */
@media (max-width: 480px) {
    .getstarted-modal select {
        -webkit-text-fill-color: #ffffff;
        background-color: rgba(0, 0, 0, 0.9) !important;
        cursor: pointer;
    }
    
    .getstarted-modal select:focus {
        -webkit-text-fill-color: #ffffff;
    }
}

.getstarted-modal textarea {
    min-height: 100px;
    resize: vertical;
}

@media (max-width: 480px) {
    .getstarted-modal textarea {
        min-height: 80px;
    }
}

.getstarted-modal input:focus,
.getstarted-modal select:focus,
.getstarted-modal textarea:focus {
    outline: none;
    border: 1px solid rgba(255, 235, 59, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.1);
    transform: translateY(-1px);
}

.getstarted-modal input::placeholder,
.getstarted-modal textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.getstarted-modal .btn-primary {
    background: linear-gradient(135deg, #FFEB3B 0%, #FFF176 100%);
    color: #000000;
    border: none;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 12px;
    margin-top: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 480px) {
    .getstarted-modal .btn-primary {
        padding: 14px 24px;
        font-size: 16px;
        margin-top: 16px;
    }
}

.getstarted-modal .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.getstarted-modal .btn-primary:hover::before {
    left: 100%;
}

.getstarted-modal .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 235, 59, 0.4);
}

.getstarted-modal .btn-primary:disabled,
.getstarted-modal .btn-primary.loading {
    background: rgba(255, 235, 59, 0.5);
    color: rgba(0, 0, 0, 0.5);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    pointer-events: none;
    opacity: 0.7;
}

.getstarted-modal .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .getstarted-modal .close-modal {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

.getstarted-modal .close-modal:hover {
    color: #FFEB3B;
    background: rgba(255, 235, 59, 0.1);
    border-color: rgba(255, 235, 59, 0.3);
    transform: scale(1.1);
}

.getstarted-success {
    text-align: center;
    color: #000000;
    font-weight: 700;
    border-radius: 24px;
    background: linear-gradient(135deg, #FFEB3B 0%, #FFF176 100%);
    padding: 40px 24px;
    font-size: 1.2rem;
    margin: -40px -32px -32px;
    box-shadow: 0 15px 40px rgba(255, 235, 59, 0.4);
    animation: successSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 480px) {
    .getstarted-success {
        margin: -32px -20px -24px;
        padding: 32px 20px;
        font-size: 1.1rem;
    }
}

.getstarted-success i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
    animation: checkBounce 0.6s ease-out;
}

.success-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.success-message {
    font-size: 1rem;
    font-weight: 500;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkBounce {
    0% { transform: scale(0.5); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

button, .btn, .nav-cta, .social-icons a {
    min-height: 44px;
    min-width: 44px;
}

/* Particles animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 235, 59, 0.5);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-10vh) rotate(180deg);
    }
}

.modal-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.modal-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 235, 59, 0.3);
    border-radius: 50%;
    animation: modalFloat 4s ease-in-out infinite;
}

.modal-particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.modal-particle:nth-child(2) { left: 40%; animation-delay: 1s; }
.modal-particle:nth-child(3) { left: 60%; animation-delay: 2s; }
.modal-particle:nth-child(4) { left: 80%; animation-delay: 3s; }

@keyframes modalFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px);
        opacity: 0.8;
    }
}
