/* =========================================
   JOE GREYSON STYLE REPLICA (CLEAN THEME)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #7c3aed; /* Purple like reference */
    --primary-hover: #6d28d9;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-color: #f9fafb; /* Very light grey */
    --white: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- 1. HEADER (Clean & Simple) --- */
.navbar {
    padding: 20px 0;
    background: transparent; /* Transparent background like image */
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #000;
}

.navbar-brand span { color: var(--primary-color); }

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 15px;
    font-size: 1rem;
}
.nav-link:hover { color: var(--primary-color) !important; }

.btn-talk {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 8px; /* Thoda square round */
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
    transition: 0.3s;
}
.btn-talk:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* --- 2. HERO SECTION (Split Layout) --- */
.hero-section {
    min-height: 90vh; /* Full screen height */
    display: flex;
    align-items: center;
    padding-bottom: 50px;
}

/* Left Side Typography */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.hero-title {
    font-size: 3.5rem; /* Bada Font */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-title span { color: var(--primary-color); }

.hero-role {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
}

.hero-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 20px 0 30px 0;
    max-width: 500px;
}

/* Action Buttons */
.btn-hire {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--primary-color);
    transition: 0.3s;
}

.btn-projects {
    background-color: transparent;
    color: var(--text-dark);
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #e5e7eb;
    margin-left: 15px;
    transition: 0.3s;
}
.btn-projects:hover { border-color: var(--primary-color); color: var(--primary-color); }

/* Social Icons */
.social-icons { margin-top: 40px; }
.social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}
.social-link:hover { transform: translateY(-3px); background: var(--primary-hover); }

/* Right Side Image */
.hero-img-box {
    text-align: right;
    position: relative;
}
.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    border-radius: 0 0 20px 20px; /* Neeche se round */
    /* Agar background wali photo nahi hai to ye drop-shadow kaam karega */
    filter: drop-shadow(20px 20px 0px rgba(124, 58, 237, 0.1)); 
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .navbar { background: white; }
    .hero-section { flex-direction: column-reverse; text-align: center; padding-top: 20px; }
    .hero-img-box { text-align: center; margin-bottom: 40px; }
    .hero-img { max-height: 350px; }
    .hero-desc { margin: 20px auto; }
    .hero-title { font-size: 2.5rem; }
    .btn-projects { margin-left: 0; margin-top: 15px; display: block; width: 100%; }
    .btn-hire { display: block; width: 100%; }
}
