/* 
    ========================================
    MASTER BRANDING: mddilshadamirAI
    THEME: Agentic AI Founder (Dark / Cyan)
    ========================================
*/

/* 1. CORE VARIABLES & RESET */
:root {
    --bg: #030303;
    --accent: #00f7ff;
    --accent-rgb: 0, 247, 255;
    --purple: #7000ff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-card: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --footer-grad: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --quote-grad: linear-gradient(90deg, #00f7ff, #7000ff);
}

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

body { 
    background-color: var(--bg); 
    color: white; 
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. BACKGROUND & NAVIGATION */
#hero-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    opacity: 0.6;
}

nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; position: fixed; width: 100%; z-index: 1000;
    backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
    background: rgba(3, 3, 3, 0.7);
}

.logo-container { display: flex; align-items: center; gap: 12px; }
.main-logo {
    height: 35px; width: auto; border-radius: 6px;
    box-shadow: 0 0 15px var(--accent);
}
.logo-text { font-weight: 800; letter-spacing: 1px; font-size: 1rem; color: #fff; }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { 
    color: rgba(255, 255, 255, 0.7); 
    text-decoration: none; 
    font-size: 0.85rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s; 
}
.nav-links a:hover { color: var(--accent); text-shadow: 0 0 10px var(--accent); }

/* 3. HERO BANNER */
.banner-hero {
    min-height: 100vh; width: 100%; display: flex;
    align-items: center; justify-content: center;
    padding-top: 100px; padding-bottom: 50px;
}

.banner-wrapper {
    position: relative; width: 90%; max-width: 1400px;
    transform-style: preserve-3d;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 25px;
    box-shadow: 0 0 60px rgba(0, 247, 255, 0.1);
}

.banner-wrapper:hover {
    transform: perspective(1000px) rotateX(1deg) translateY(-5px);
    box-shadow: 0 20px 80px rgba(0, 247, 255, 0.2);
}

.master-banner { width: 100%; height: auto; border-radius: 25px; display: block; border: 1px solid var(--border); }

/* 4. SECTIONS & TITLES */
.glass-wrap { padding: 100px 8%; position: relative; }

.section-title {
    font-size: 2.8rem; font-weight: 800; margin-bottom: 15px;
    letter-spacing: -1px; background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.center-title { text-align: center; margin-bottom: 60px; font-size: 2.8rem; font-weight: 800; }

/* 5. QUOTE SECTION */
.hero-quote-section { padding: 120px 10%; display: flex; justify-content: center; }
.quote-container {
    max-width: 1100px; text-align: center; position: relative;
    padding: 80px 60px; background: var(--glass);
    border: 1px solid var(--border); backdrop-filter: blur(20px);
    border-radius: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.quote-icon {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    font-size: 8rem; color: var(--accent); opacity: 0.1;
}
.pro-quote { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 30px; }
.text-gradient { background: var(--quote-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.glow-text { color: var(--accent); text-shadow: 0 0 20px rgba(0, 247, 255, 0.5); }

/* 6. INNOVATIVE WORKS (THE LAB) */
.card-container {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px; margin-top: 20px;
}
.glass-card {
    background: var(--glass-card); border: 1px solid var(--border);
    padding: 40px; border-radius: 25px; backdrop-filter: blur(15px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-card:hover { 
    border-color: var(--accent); transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 247, 255, 0.15);
}
.card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.glass-card h3 { color: var(--accent); margin-bottom: 15px; font-size: 1.5rem; }
.btn-sm {
    display: inline-block; margin-top: 25px; color: var(--accent);
    text-decoration: none; font-weight: 700; font-size: 0.9rem;
    padding: 8px 0; border-bottom: 2px solid transparent; transition: 0.3s;
}
.btn-sm:hover { border-bottom-color: var(--accent); letter-spacing: 1px; }

/* 7. TECHNICAL ARSENAL (SKILLS) */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.skill-item { background: var(--glass); border: 1px solid var(--border); padding: 25px; border-radius: 20px; }
.skill-item span { display: block; margin-bottom: 15px; font-weight: 700; font-size: 0.95rem; color: var(--accent); }
.progress-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
.progress { height: 100%; background: var(--quote-grad); box-shadow: 0 0 15px var(--accent); }

/* 8. 180-DAY ROADMAP (TIMELINE) */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding-left: 40px; border-left: 1px solid var(--border); }
.timeline-event { position: relative; margin-bottom: 60px; }
.timeline-event::before {
    content: ''; position: absolute; left: -49px; top: 8px;
    width: 16px; height: 16px; background: var(--bg);
    border: 2px solid var(--accent); border-radius: 50%; box-shadow: 0 0 15px var(--accent);
}
.event-date { color: var(--accent); font-weight: 800; font-size: 0.8rem; margin-bottom: 10px; display: block; letter-spacing: 2px; }

/* 9. JOURNEY & QUALIFICATIONS (GRID FIX) */
.journey-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.qual-item { margin-bottom: 35px; border-left: 2px solid var(--accent); padding-left: 25px; }
.qual-year { font-weight: 800; color: var(--accent); display: block; font-size: 0.85rem; margin-bottom: 5px; }
.story-content p { margin-bottom: 25px; font-size: 1.15rem; color: rgba(255,255,255,0.8); line-height: 1.8; }

/* 10. CONTACT & FOOTER */
.contact-card {
    background: var(--glass); border: 1px solid var(--border);
    padding: 60px; border-radius: 35px; text-align: center;
    backdrop-filter: blur(20px);
}
.social-btn {
    display: inline-block; padding: 12px 30px; margin: 10px;
    border: 1px solid var(--accent); border-radius: 50px;
    color: white; text-decoration: none; font-weight: 700; transition: 0.3s;
}
.social-btn:hover { background: var(--accent); color: var(--bg); box-shadow: 0 0 20px var(--accent); }

.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 80px 8% 40px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; }
.footer-content h3 { color: var(--accent); font-size: 1.3rem; margin-bottom: 25px; }
.footer-bottom { text-align: center; padding-top: 60px; opacity: 0.4; font-size: 0.8rem; }

/* 11. SUPREME RESPONSIVENESS (MOBILE & TABLET) */

/* Large Tablets */
@media (max-width: 1024px) {
    .journey-container { grid-template-columns: 1fr; }
    .pro-quote { font-size: 2.2rem; }
}

/* Mobile Phones */
@media (max-width: 768px) {
    nav { padding: 15px 5%; }
    .nav-links { display: none; } /* Standard for mobile, unless you want a burger menu */
    
    .glass-wrap { padding: 60px 6%; }
    .section-title, .center-title { font-size: 2rem; text-align: center; }
    
    .banner-hero { padding-top: 120px; }
    .banner-wrapper { width: 95%; transform: none !important; }
    
    .quote-container { padding: 50px 30px; border-radius: 30px; }
    .pro-quote { font-size: 1.6rem; }
    .quote-icon { font-size: 5rem; top: 0; }
    
    /* Force Vertical Stacking on Mobile */
    .card-container, .skills-grid, .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .glass-card, .skill-item, .contact-card { padding: 30px 25px; }
    
    .timeline { padding-left: 25px; }
    .timeline-event::before { left: -34px; }
    
    .story-content p { font-size: 1.05rem; text-align: left; }
    
    .site-footer { text-align: center; padding: 60px 6% 30px; }
}
  .work-card {
    /* The core Glassmorphism properties */
    background: rgba(255, 255, 255, 0.05); /* Very light white transparency */
    backdrop-filter: blur(12px);           /* The "frosted" blur effect */
    -webkit-backdrop-filter: blur(12px);    /* Support for Chrome/Safari */
    
    /* Border and Shadow for depth */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    
    /* Smooth transition for your AOS animations */
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.work-card:hover {
    /* Hover effect to make it feel interactive */
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
