/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7931E;
    --dark-bg: #0F1419;
    --light-bg: #F8FAFB;
    --text-dark: #1A202C;
    --text-light: #718096;
    --border-color: #E2E8F0;
    --success-color: #48BB78;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}*/

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Why Join Us Section */
.why-join {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.why-join h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background:rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Positions Section */
.positions {
    background: var(--dark-bg);
    padding: 1rem 2rem;
}

.positions h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Founder Section */
.founder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.founder-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.founder-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-content p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.founder-social {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-link {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

.founder-quote {
    background: var(--light-bg);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
    border-radius: 5px;
    font-style: italic;
    color: var(--text-dark);
}

.founder-quote footer {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Application Form Section */
.apply-section {
    background: var(--dark-bg);
    padding: 5rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

option{
    color: black;
}

.apply-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
}

select{
    color: black;
}

.form-subtitle {
    text-align: center;
    color: #B0BAC9;
    margin-bottom: 2rem;
}

.application-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

textarea {
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
}

.checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.success-message {
    background: #F0FDF4;
    color: var(--success-color);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
    margin-top: 1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #B0BAC9;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #B0BAC9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #B0BAC9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .founder-container {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .positions-grid {
        grid-template-columns: 1fr;
    }

    .apply-section {
        padding: 2rem 1rem;
    }

    .application-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .about-text h2,
    .why-join h2 {
        font-size: 1.5rem;
    }

    .position-header {
        flex-direction: column;
    }

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .founder-social {
        flex-direction: column;
    }

    .social-link {
        text-align: center;
    }
} */






/* new one */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg:#0b1020;
    --glass:rgba(255,255,255,0.12);
    --glass-border:rgba(255,255,255,0.18);
    --white:#fff;
    --text:#dfe7ff;
    --muted:#a7b1c7;
    --primary:#7c5cff;
    --secondary:#00d4ff;
}

body{
    font-family:'Inter',sans-serif;
    background:linear-gradient(135deg,#090b16,#121c36);
    color:var(--white);
    overflow-x:hidden;
    min-height:100vh;
}

/* Animated background */
.bg-blur{
    position:fixed;
    width:400px;
    height:400px;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
}

.blur-1{
    background:#7c5cff;
    top:-100px;
    left:-100px;
}

.blur-2{
    background:#00d4ff;
    bottom:-100px;
    right:-100px;
}

/* Glassmorphism */
.glass{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.12);
}

.glass-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(20px);
    border-radius:28px;
    padding:20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* Navbar */
.navbar{
    position:sticky;
    top:20px;
    width:92%;
    margin:auto;
    border-radius:24px;
    z-index:1000;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    padding:1px 5px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:1.6rem;
    font-weight:800;
    letter-spacing:-1px;
}

.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:var(--text);
    transition:.3s;
}

.nav-links a:hover{
    color:#fff;
}

/* Hero */
.hero{
    max-width:1200px;
    margin:auto;
    min-height:90vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
    padding:40px;
}

.hero-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
    color:#fff;
    font-size:.9rem;
}

.hero h1{
    font-size:4.5rem;
    line-height:1;
    margin-bottom:24px;
    letter-spacing:-3px;
}

.hero p{
    color:var(--muted);
    font-size:1.1rem;
    line-height:1.8;
    max-width:550px;
}

.hero-image img{
    width:100%;
    border-radius:30px;
    box-shadow:
        0 20px 50px rgba(0,0,0,.4);
}

/* CTA */
.cta-button,
.submit-button,
.apply-btn,
.modal-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:none;
    cursor:pointer;
    text-decoration:none;
    padding:16px 28px;
    border-radius:18px;
    font-weight:600;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:white;
    transition:.3s;
    margin-top:24px;
}

.cta-button:hover,
.submit-button:hover,
.apply-btn:hover,
.modal-btn:hover{
    transform:translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 30px rgba(124,92,255,.4);
}

/* Sections */
.section{
    max-width:1200px;
    margin:120px auto;
    padding:0 30px;
}

.section-title{
    font-size:3rem;
    margin-bottom:50px;
    text-align:center;
}

/* Stats */
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.stat{
    padding:30px;
    border-radius:24px;
    text-align:center;
}

.stat h3{
    font-size:2rem;
    margin-bottom:8px;
}

/* Positions */
.positions-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.position-card{
    padding:10px;
    border-radius:28px;
    transition:.4s;
}

.position-card:hover{
    transform:translateY(-10px);
}

.position-card h3{
    font-size:1.5rem;
    margin-bottom:15px;
}

.position-card p{
    color:var(--muted);
    line-height:1.8;
}

/* Form */
.form-container{
    max-width:850px;
    margin:auto;
}

.form-container h2{
    font-size:3rem;
    margin-bottom:30px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:24px;
}

label{
    display:block;
    margin-bottom:10px;
    color:#fff;
    font-weight:600;
}

input,
textarea,
select{
    width:100%;
    padding:18px;
    border:none;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    color:white;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.1);
    outline:none;
    transition:.3s;
}

input:focus,
textarea:focus,
select:focus{
    border-color:rgba(255,255,255,.4);
    box-shadow:
        0 0 0 4px rgba(124,92,255,.2);
}

textarea{
    resize:none;
}

input::placeholder,
textarea::placeholder{
    color:#c8d0e5;
}

/* Modal */
.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    backdrop-filter:blur(12px);
}

.modal-content{
    width:90%;
    max-width:420px;
    padding:40px;
    border-radius:30px;
    text-align:center;
    animation:modalPop .4s ease;
}

@keyframes modalPop{
    from{
        opacity:0;
        transform:scale(.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* Loader */
.loader{
    width:70px;
    height:70px;
    border:6px solid rgba(255,255,255,.1);
    border-top:6px solid white;
    border-radius:50%;
    margin:0 auto 24px;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/* Success */
.success-check{
    width:90px;
    height:90px;
    background:linear-gradient(
        135deg,
        #00ff9d,
        #00d4ff
    );
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.2rem;
    margin:0 auto 24px;
    color:white;
    box-shadow:
        0 10px 30px rgba(0,255,157,.35);
}

/* Responsive */
@media(max-width:900px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero h1{
        font-size:3rem;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .form-row{
        grid-template-columns:1fr;
    }
}

@media(max-width:600px){

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .section-title{
        font-size:2rem;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .glass-card{
        padding:10px;
    }
}