/* ==========================================
   EXACT MATCH 3D PORTFOLIO CARD
   ========================================== */

body {
    background-color: #07090f; /* Dark Navy Background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center; /* Vertical centering */
    min-height: calc(100vh - 90px); /* Navbar ki height hata kar bachi hui poori screen */
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    perspective: 1500px;
}

.card-wrapper {
    width: 100%;
    max-width: 950px; /* Exact size matching the image */
    perspective: 1500px; /* 3D depth ke liye */
}

/* The Main Card */
.founder-card {
    background: #141a24;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    gap: 45px;
    
    transform: rotateX(0deg) rotateY(0deg); 
    transform-style: preserve-3d;
    
    /* 🔥 THE MAGIC GLOW (Box Shadow) 🔥 */
    /* Pehli line: Card ko 3D depth dene ke liye dark shadow */
    /* Doosri line: Card ke piche bada, soft Cyan color ka glow */
    box-shadow: 
        0 40px 80px #00000099, 
        0 0 120px #0a8fbba9; /* Yehi wo background glow hai */
        
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}
/* --- LEFT: IMAGE SECTION WITH CYAN GLOW --- */
.image-section {
    position: relative;
    width: 300px; /* Badi photo */
    height: 380px;
    flex-shrink: 0;
    
    /* 3D Pop Out Effect */
    transform: translateZ(50px);
    transform-style: preserve-3d;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    
    /* The Exact Cyan Glow Border */
    border: 3px solid #22d3ee;
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.5), inset 0 0 15px rgba(34, 211, 238, 0.3);
}

/* The 'FOUNDER' Badge */
.founder-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) translateZ(30px);
    background: linear-gradient(135deg, #22d3ee, #c084fc); /* Cyan to Purple */
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.4);
}

/* --- RIGHT: TEXT CONTENT --- */
.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateZ(30px); /* Text bhi hawa me rahega */
}

.visionary-tag {
    align-self: flex-start;
    color: #22d3ee;
    border: 1px solid rgba(34, 211, 238, 0.4);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.content-section h1 { color: #ffffff; font-size: 36px; margin: 0 0 8px 0; font-weight: 800; }
.role-text { color: #22d3ee; font-size: 15px; margin: 0 0 25px 0; font-weight: 600; }

.content-section p { color: #9ca3af; font-size: 14px; line-height: 1.7; margin: 0 0 15px 0; }
.text-highlight { color: #ffffff; font-weight: 600; }

/* --- SKILL PILLS --- */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.skill-tag {
    color: #9ca3af;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}


/*___________________________
   optional: Pro toch
   ___________________________ */

 .card-wrapper:hover .founder-card {
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.7), 
        0 0 150px rgba(34, 211, 238, 0.25); /* Glow thoda aur bright ho jayega */
}

