@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: #0f172a;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: #38bdf8;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
}

.btn {
    display: inline-block;
    background: #38bdf8;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #0ea5e9;
    transform: translateY(-3px);
}

/* Stats Section Styling */
.stats-section {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-card h3 {
    font-size: 3rem;
    color: #38bdf8;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* Sections Common */
section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

section h2::after {
    content: '';
    background: #38bdf8;
    height: 4px;
    width: 60px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about {
    background: #fff;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Leadership Grid Styling */
.founder-section {
    margin-top: 60px;
    text-align: center;
}

.founder-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #0f172a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.founder-img {
    width: 100px;
    height: 100px;
    background: #e2e8f0;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-img i {
    font-size: 3rem;
    color: #475569;
}

.founder-card h4 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 5px;
}

.founder-card .title {
    color: #38bdf8;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.founder-card .bio {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.founder-social a {
    color: #475569;
    font-size: 1.3rem;
    margin: 0 10px;
    transition: 0.3s;
}

.founder-social a:hover {
    color: #38bdf8;
}

/* Process Section Styling */
.process-section {
    background: #f4f7f6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
    border-top: 4px solid #38bdf8;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(56, 189, 248, 0.2);
    position: absolute;
    top: 15px;
    right: 20px;
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.process-step p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Quote Banner Styling */
.quote-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.quote-icon {
    font-size: 3rem;
    color: #38bdf8;
    margin-bottom: 25px;
    opacity: 0.6;
}

.quote-banner h2 {
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.quote-banner p {
    color: #38bdf8;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* App Section Styling */
.app-section {
    background: #0f172a;
    color: #fff;
    text-align: center;
}

.app-logo-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    margin: 0 auto 20px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

.app-preview-logo {
    font-size: 2.8rem;
    color: #fff;
}

.app-desc {
    max-width: 650px;
    margin: 20px auto 30px;
    font-size: 1.1rem;
    color: #94a3b8;
}

.coming-soon {
    display: inline-block;
    background: #38bdf8;
    color: #0f172a;
    padding: 6px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 1rem;
    color: #94a3b8;
    cursor: not-allowed;
}

.store-btn i {
    margin-right: 8px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: #38bdf8;
    margin-bottom: 20px;
}

/* Careers Section Styling */
.careers-section {
    background: #fff;
}

.careers-intro {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 40px;
    font-size: 1.1rem;
    color: #64748b;
}

.apply-box {
    background: #0f172a;
    color: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.apply-box h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.apply-box p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* FAQ Section Styling */
.faq-section {
    background: #f4f7f6;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #38bdf8;
}

.faq-card h4 {
    font-size: 1.15rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.faq-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-flex {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

/* Footer */
footer {
    background: #0f172a;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar { padding: 20px; }
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .contact-flex { flex-direction: column; }
    .store-buttons { flex-direction: column; align-items: center; }
    .stats-grid { flex-direction: column; gap: 40px; }
}
