/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    letter-spacing: 1px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0056b3;
}

/* Hero Section - Split Layout */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 5%;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
    min-height: 80vh;
}

.hero-text {
    flex: 1.2;
}

.hero-text h1 {
    font-size: 54px;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.1;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Hero Profile Box (Right Side) */
.hero-profile {
    flex: 0.8;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.profile-pic img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid #f4f4f4;
}

.social-connect p {
    font-weight: 600;
    margin-bottom: 15px;
    color: #444;
}

.social-icons a {
    display: inline-block;
    margin: 0 6px;
    padding: 8px 15px;
    background: #f4f4f4;
    text-decoration: none;
    color: #333;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.social-icons a:hover {
    background: #e0e0e0;
}

.know-more {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.pdf-link {
    display: inline-block;
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

.pdf-link:hover {
    text-decoration: underline;
}

/* Ecosystem Grid */
.ventures {
    padding: 80px 5%;
    background: #f4f4f4;
}

.ventures h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #111;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.card {
    padding: 30px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 12px;
    color: #222;
}

/* Floating WhatsApp Widget */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.2s;
}

.floating-wa:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 5%;
    background: #111;
    color: #888;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-text h1 {
        font-size: 40px;
    }
    .hero-profile {
        width: 100%;
    }
    .nav-links {
        display: none; /* Can be updated with a hamburger menu later */
    }
}
