:root {
    --bg-light: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.65);
    --border-color: rgba(0, 0, 0, 0.08);
    --accent-1: #ff007a;
    --accent-2: #00d2ff;
    --accent-3: #7a00ff;
    --text-main: #1a1a1a;
    --text-muted: #4b5563;
    --glass-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: #fdfdfd;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Premium Mesh Background */
body::before, body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

body::before {
    background: 
        radial-gradient(circle at 15% 50%, rgba(255, 0, 122, 0.08), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 210, 255, 0.12), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(122, 0, 255, 0.08), transparent 50%);
    animation: floatOrbs 20s ease-in-out infinite alternate;
}

body::after {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.04;
    mix-blend-mode: overlay;
}

@keyframes floatOrbs {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(2%, 2%); }
    100% { transform: scale(1) translate(-2%, -2%); }
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: width 0.3s, height 0.3s;
}

/* Typography elements */
.gradient-text {
    color: var(--text-main); /* Fallback for accessibility */
    transition: color 0.3s ease;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
    .gradient-text {
        background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
        background-size: 200% auto;
        animation: gradientTextSync 4s linear infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Glassmorphism Classes */
.glass {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 1.2rem 0;
}

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

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

.nav-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

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

/* Hero Logo */
.hero-logo-box {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.main-logo {
    height: 220px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    animation: float 6s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.cta-link {
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 0;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255,0,122,0.1), rgba(0,210,255,0.1));
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--accent-1);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
    animation: pulseBorder 2s infinite;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

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

.block-btn {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Layout Utilities */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.main-title {
    font-size: 3.5rem;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 1rem;
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

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

.two-cols {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Cards */
.card {
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.interactive {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.interactive:nth-child(1) { animation-delay: 0s; }
.interactive:nth-child(2) { animation-delay: 1s; }
.interactive:nth-child(3) { animation-delay: 2s; }

.interactive:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.2), 0 10px 20px rgba(255, 0, 122, 0.1);
    border-color: rgba(255, 0, 122, 0.3);
    animation-play-state: paused;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(58, 123, 213, 0.1));
    border: 1px solid rgba(0, 210, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-1);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-1);
}

.card h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.agenda {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.agenda strong {
    color: var(--text-main);
}

/* Application specific */
.application-card {
    display: flex;
    flex-direction: column;
}

.application-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.application-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.status-indicator {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
}

.status-indicator.live {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

/* Disclaimer box */
.disclaimer {
    margin-top: 4rem;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border-left: 4px solid var(--accent-1);
}

.info-icon {
    color: var(--accent-1);
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.disclaimer-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-1);
}

.disclaimer-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    border-bottom: none;
    border-left: none;
    border-right: none;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0.1; /* Start slightly visible in case JS fails */
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delays-1 { transition-delay: 0.2s; }
.delays-2 { transition-delay: 0.4s; }
.delays-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links a:not(.cta-link) { display: none; }
    .nav-content { padding: 0 1rem; }
    .section { padding: 4rem 1rem; }
    .card { padding: 1.5rem; }
    .hero h1 { font-size: 2.5rem; }
    .main-title { font-size: 2.5rem; }
    .two-cols { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .disclaimer { flex-direction: column; }
}

/* Removed standard gradientBg since we use the mesh orbs now */

@keyframes gradientTextSync {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

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

@keyframes pulseBorder {
    0% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 210, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

/* Repel Text Effect Settings */
.repel-char {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    pointer-events: none; /* Ensures mousemove isn't blocked by transformed characters */
}

/* About Us Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    padding: 2rem;
    border-radius: 20px;
}

.founders {
    margin-top: 3rem;
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 0.5rem;
}

.founder-img-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(255, 0, 122, 0.1));
    position: relative;
    z-index: 1;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Better for landscape group shots */
}

/* ──────────────────────────────────────────
   Contact / Enquiry Box (Footer)
────────────────────────────────────────── */
.contact-box {
    max-width: 860px;
    margin: 0 auto 1.8rem;
    padding: 2rem 2.4rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3)) 1;
    box-shadow: 0 8px 32px rgba(0, 210, 255, 0.08);
}

.contact-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    text-align: center;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.contact-item:hover {
    background: rgba(0, 210, 255, 0.08);
    color: var(--text-main);
    transform: translateY(-2px);
}

.contact-item strong {
    color: var(--text-main);
}

.contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-copy {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

@media (max-width: 640px) {
    .contact-box {
        padding: 1.4rem 1.2rem;
    }
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }
}
