/* ============================================================
   PROFESSIONAL PORTFOLIO v2.0 — SHARED STYLES
   Colors: Black background | Orange buttons | White text
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #ff6b00; border-radius: 4px; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    border-bottom: 1px solid #ff6b00;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #ff6b00;
    text-decoration: none;
}

.logo span { color: white; }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #ff6b00;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b00;
    transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: #ff6b00;
    color: #000000;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    border: 1px solid #ff6b00;
    background: transparent;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    color: #ff6b00;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

.btn-small {
    background: #ff6b00;
    color: #000000;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
    border-bottom: 1px solid #1a1a1a;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
    color: #ffffff;
}

.section-title span { color: #ff6b00; }

.section-subtitle {
    text-align: center;
    color: #888888;
    margin-bottom: 60px;
    font-size: 16px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text { flex: 1; }

.hero-badge {
    background: rgba(255, 107, 0, 0.15);
    color: #ff6b00;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.typing-container { margin-bottom: 24px; }

#typed-text {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ff6b00, #ff3333, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 48px;
    background: #ff6b00;
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    margin: 24px 0 32px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #ff6b00;
}

.stat-label { font-size: 13px; color: #888888; }

.hero-photo { flex: 0.5; text-align: center; }

.photo-frame {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff6b00;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.2);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
}

.social-icon:hover {
    background: #ff6b00;
    color: #000000;
    transform: translateY(-3px);
}

/* ===== CARDS ===== */
.card {
    background: #0a0a0a;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
}

.card:hover {
    border-color: #ff6b00;
    transform: translateY(-5px);
}

/* ===== TIMELINE ===== */
.timeline-item {
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 2px solid #ff6b00;
}

.timeline-year { color: #ff6b00; font-weight: 700; margin-bottom: 8px; }
.timeline-title { font-weight: 600; margin-bottom: 4px; }
.timeline-desc { color: #888888; font-size: 14px; }

/* ===== SKILL TAGS ===== */
.skill-tag {
    background: rgba(255, 107, 0, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s;
    display: inline-block;
}

.skill-tag:hover {
    background: #ff6b00;
    color: #000000;
    transform: translateY(-2px);
}

/* ===== PROJECT CARDS ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.project-card {
    background: #0a0a0a;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
    cursor: pointer;
}

.project-card:hover {
    border-color: #ff6b00;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.project-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.project-icon i { font-size: 28px; color: #ff6b00; }
.project-rating {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: #ff6b00;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 16px;
}
.project-card h3 { font-size: 22px; margin-bottom: 12px; }
.project-card p { color: #aaaaaa; margin-bottom: 20px; font-size: 14px; }

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.project-tech span {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: #888888;
}

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    color: white;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== CERTIFICATION BADGES ===== */
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0a0a0a;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
}
.cert-badge:hover { border-color: #ff6b00; }
.cert-badge i { color: #ff6b00; font-size: 24px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: #0a0a0a;
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    border: 1px solid #1a1a1a;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.testimonial-text { font-style: italic; color: #cccccc; margin-bottom: 16px; }
.testimonial-name { color: #ff6b00; font-weight: 700; }
.testimonial-title { font-size: 12px; color: #666; }

/* ===== ACHIEVEMENTS ===== */
.achievement-card {
    text-align: center;
    background: #0a0a0a;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
}
.achievement-card i { font-size: 40px; color: #ff6b00; margin-bottom: 16px; }
.achievement-number { font-size: 32px; font-weight: 800; color: #ff6b00; }

/* ===== FOOTER ===== */
footer {
    background: #000000;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    color: #666666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000000;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #ff6b00;
    }
    .nav-links.active { display: flex; }
    .mobile-menu { display: block; }
    .hero-content { flex-direction: column-reverse; text-align: center; }
    #typed-text { font-size: 28px; }
    .hero-stats, .social-links { justify-content: center; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section-title { font-size: 32px; }
    .photo-frame { width: 220px; height: 220px; }
}
/* ========================================
   PROFESSIONAL LOGO - FUTURE BILLIONAIRE BRAND
   Add this to your existing style.css file
   ======================================== */

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Main Logo Symbol - Choice 1: Rising Phoenix / Ascension */
.logo-symbol {
    width: 45px;
    height: 45px;
    position: relative;
    background: linear-gradient(135deg, #ff6b00, #ffcc00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.logo-symbol:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.6);
}

/* Inner Icon - Rising Arrow / Growth */
.logo-icon {
    font-size: 24px;
    color: #000000;
    font-weight: 900;
}

/* Text beside logo */
.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff6b00, #ffcc00, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Alternative Logo Styles - Choose ONE */

/* OPTION A: Crown (Royalty / Power / Legacy) */
.logo-crown {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* OPTION B: Diamond (Wealth / Permanence / Value) */
.logo-diamond {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-diamond i {
    transform: rotate(-45deg);
    font-size: 18px;
    color: white;
}

/* OPTION C: Infinity (Limitless / Eternal / Vision) */
.logo-infinity {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ff6b00;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

/* OPTION D: Rising Sun (New Dawn / Power / Energy) */
.logo-sun {
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, #ffcc00, #ff6b00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-sun 2s infinite;
}

@keyframes pulse-sun {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 0, 0.4); }
    50% { box-shadow: 0 0 25px rgba(255, 107, 0, 0.8); }
}

.logo-sun i {
    font-size: 20px;
    color: #000000;
}

/* OPTION E: N Letter Monogram (Personal Brand) */
.logo-monogram {
    width: 45px;
    height: 45px;
    background: #000000;
    border: 2px solid #ff6b00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #ff6b00;
    transition: all 0.3s;
}

.logo-monogram:hover {
    background: #ff6b00;
    color: #000000;
    border-color: #ffffff;
}

/* OPTION F: Star (Excellence / Goal / Greatness) */
.logo-star {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RICH$ Text Styling */
.rich-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ff6b00, #ffcc00, #ff6b00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 8px;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Gold Coin Effect */
.logo-coin {
    width: 45px;
    height: 45px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #000000;
    font-size: 20px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
