:root {
  --color-bg: #0a0f1c;      
  --color-primary: #FFD700; 
  --color-secondary: #00FFAB;
  --color-accent: #9D4EDD;  
  --color-text: #ffffff;    
  --color-muted: #8892b0;   
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;       
    padding: 0;
    overflow-x: hidden;
}

body{
    background-color: var(--color-bg) !important;
    font-family: 'Exo 2', sans-serif !important;
    color: var(--color-text) !important;
}

/* Header Styles */
.alien-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--color-accent);
    border: none;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
}

.hero-name {
    font-family: 'Orbitron', monospace;
    position: relative;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-text) !important;
    text-decoration: none;
}

.hero-name::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 50%;                  
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.4), transparent);
    animation: shine-line 2s ease-in-out infinite alternate;
}

@keyframes shine-line {
    0% { left: 0%; }
    100% { left: 50%; }
}

.alien-nav {
    display: flex !important;
    gap: 30px !important;
    list-style: none;
    margin: 0;
    padding: 0;
}

.alien-nav li {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding: 10px 20px;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.alien-nav li:hover {
    border-color: var(--color-primary);
    background: rgba(139, 139, 139, 0.1);
    transform: scale(1.1);
}
.navbar-toggler-icon{
    width: 1.2rem !important;
    height: 1.5em !important;
}
.social-link {
    font-size: 1.5rem !important;
    color: var(--color-text) !important;
    transition: all 1s ease !important;
    text-decoration: none;
}

.social-link:hover {
    color: var(--color-secondary);
    transform: scale(1.2) rotate(360deg);
    filter: drop-shadow(0 0 20px var(--color-primary));
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
} 

.profile-container {
    background-image: url('../my-image.jpg');
    background-size: cover;          
    background-repeat: no-repeat;
    background-position: center;    
    position: relative;
    width: 100%;                      
    height: 500px;                 
    border: none;                                 
    overflow: hidden;                 
    mix-blend-mode: lighten;
    border-radius: 20px;
}

.hero-greeting {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    background-clip: text;
    animation: title-pulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

@keyframes title-pulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); }
}

.power-button {
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    color: var(--color-bg);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
   
}

.power-button:hover {
    transform: scale(1.05);
}

/* Tech Powers Section */
.tech-powers {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
}

.powers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.power-orb {
    width: 150px;
    height: 150px;
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: orb-float 3s ease-in-out infinite;
    margin: 0 auto;
}

.power-orb:nth-child(even) {
    animation-delay: 1.5s;
}

.power-orb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px var(--color-accent);
    border-color: var(--color-secondary);
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
}

@keyframes orb-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.power-orb i {
    font-size: 3rem;
    color: var(--color-primary);
    z-index: 2;
    transition: all 0.3s ease;
}

.power-orb:hover i {
    color: var(--color-secondary);
    text-shadow: 0 0 20px var(--color-primary);
}

.power-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    animation: ring-rotate 10s linear infinite;
}

@keyframes ring-rotate {
    0% { transform: rotate(0deg); border-color: var(--color-accent); }
    33% { border-color: var(--color-secondary); }
    66% { border-color: var(--color-accent); }
    100% { transform: rotate(360deg); border-color: var(--color-accent); }
}

/* Education Section */
.quantum-education {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 65, 0.05) 50%, transparent 100%);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-accent), var(--color-primary));
    box-shadow: 0 0 20px var(--color-secondary);
}

.timeline-node {
    position: relative;
    margin: 80px 0;
    opacity: 0;
    animation: node-appear 1s ease forwards;
}

.timeline-node:nth-child(1) { animation-delay: 0.5s; }
.timeline-node:nth-child(2) { animation-delay: 1s; }
.timeline-node:nth-child(3) { animation-delay: 1.5s; }

@keyframes node-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.node-marker {
    position: absolute;
    left: -3px;
    top: 30px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    border: 3px solid var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-secondary);
    z-index: 10;
    animation: marker-pulse 2s ease-in-out infinite;
}

@keyframes marker-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.education-pod {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg) 100%);
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    padding: 40px;
    margin-left: 80px;
    position: relative;
}



.education-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.education-school {
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.education-details {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.achievement-tag {
    background: linear-gradient(45deg, var(--color-primary), var(--color-muted));
    color: var(--color-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVE DESIGN */

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-container,
    .nav-container {
        max-width: 1600px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .powers-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 30px;
    }
    
    .power-orb {
        width: 130px;
        height: 130px;
    }
    
    .power-orb i {
        font-size: 2.5rem;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .hero-name {
        font-size: 1.4rem;
    }
    
    .alien-nav {
        gap: 20px !important;
    }
    
    .alien-nav li {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-section {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-greeting {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .profile-container {
        height: 400px;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .tech-powers {
        padding: 80px 0;
    }
    
    .quantum-education {
        padding: 80px 0;
    }
    
    .education-pod {
        padding: 30px;
        margin-left: 60px;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .node-marker {
        left: 10px;
    }
}

/* Mobile Large */
@media (max-width: 768px)  {
    .navbar-toggler {
        padding: 1px 1px !important;
    }
    
    .hero-name {
        font-size: 1.2rem;
    }
    .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

    .alien-nav {
        flex-direction: column;
        gap: 15px !important;
        text-align: center;
        margin-top: 20px;
    }
    
    .alien-nav li {
        width: 100%;
        text-align: center;
    }
    
    .social-link {
        font-size: 1.3rem !important;
        margin: 15px 0;
        text-align: center;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 120px 0 60px;
    }
    
    .hero-container {
        padding: 0 15px;
        margin-top:10px;
    }
    
    .hero-greeting {
        font-size: 1rem;
        letter-spacing: 2px;
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: left;
        margin-bottom: 30px;
    }
    
    .power-button {
        width: 100%;
        padding: 30px 30px;
        font-size: 1rem;
        letter-spacing: 1px;
        margin-top: 20px;
    }
    
    .profile-container {
        height: 400px;
        margin-top: 40px;
        top: 180px;
        position: absolute;
        left: 120px;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 50px;
    }
    
    .powers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 25px;
        padding: 0 15px;
    }
    
    .power-orb {
        width: 120px;
        height: 120px;
    }
    
    .power-orb i {
        font-size: 2rem;
    }
    
    .tech-powers {
        padding: 60px 0;
    }
    
    .quantum-education {
        padding: 60px 0;
    }
    
    .timeline {
        padding: 0 15px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .node-marker {
        left: -5.5px;
        width: 25px;
        height: 25px;
    }
    
    .education-pod {
        padding: 25px 20px;
        margin-left: 50px;
    }
    
    .education-title {
        font-size: 1.4rem;
    }
    
    .education-school {
        font-size: 1rem;
    }
    
    .achievement-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    .hero-name {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 12px 15px;
    }
    
    .hero-section {
        height: 100vh;
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-greeting {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .power-button {
        width: 150%;
        font-size: 0.9rem;
        padding: 3px 1px;
    }
    
    .profile-container {
        height: 250px;
        margin-top:70px;
    }
    
    .section-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .powers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .power-orb {
        width: 100px;
        height: 100px;
    }
    
    .power-orb i {
        font-size: 1.8rem;
    }
    
    
    .education-pod {
        padding: 20px 15px;
        margin-left: 40px;
    }
    
    .education-title {
        font-size: 1.2rem;
    }
    
    .education-school {
        font-size: 0.9rem;
    }
    
    .education-details {
        font-size: 0.9rem;
    }
    
    .achievement-tags {
        gap: 10px;
    }
    
    .achievement-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .timeline-node {
        margin: 50px 0;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .powers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .power-orb {
        width: 90px;
        height: 90px;
    }
    
    .power-orb i {
        font-size: 1.5rem;
    }
    
    .education-pod {
        margin-left: 35px;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .profile-container {
        height: 200px;
    }
    
    .tech-powers,
    .quantum-education {
        padding: 40px 0;
    }
}
/* Modal Styles */
.power-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: modalFadeIn 0.5s ease;
}

.power-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, var(--color-bg) 0%, rgba(157, 78, 221, 0.1) 100%);
    border: 3px solid var(--color-primary);
    border-radius: 25px;
    animation: modalSlideIn 0.5s ease;
    padding: 0 20px;
}

@keyframes modalSlideIn {
    from { 
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 25px;
    border-bottom: 2px solid var(--color-accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.1);
}

.modal-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-primary);
    margin: 0;
    text-shadow: 0 0 10px var(--color-secondary);
}

.close-btn {
    background: none;
    border: 2px solid var(--color-accent);
    color: var(--color-text);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: var(--color-accent);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px var(--color-accent);
}

.modal-body {
    padding: 30px;
}

.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    margin-left: 10px ;
    gap: 30px;
}

.avatar-container {
    position: relative;
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent,var(--color-primary) 50%,transparent);
    border-radius: 50%;
    animation: avatarGlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes avatarGlow {
    0%, 100% { opacity: 0.7; transform: rotate(0deg); }
    50% { opacity: 1; transform: rotate(180deg); }
}

.modal-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--color-text);
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.warrior-stats h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-primary);
    margin: 0 0 10px 0;
}

.title-glow {
    color: var(--color-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 0 10px var(--color-secondary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--color-accent);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 25px var(--color-accent);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.card-content h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content p {
    color: var(--color-text);
    margin: 0;
    font-weight: 500;
}

.mission-statement {
    background: linear-gradient(45deg, rgba(0, 255, 171, 0.1), rgba(157, 78, 221, 0.1));
    border: 2px solid var(--color-secondary);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.mission-statement h3 {
    font-family: 'Orbitron', monospace;
    color: var(--color-secondary);
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.mission-statement p {
    color: var(--color-text);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-btn, .download-btn {
    text-decoration: none !important;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-btn {
    background: linear-gradient(45deg, var(--color-primary), #FFA500);
    color: var(--color-bg);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.download-btn {
    background: linear-gradient(45deg, var(--color-secondary), #00CCA3);
    color: var(--color-bg);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 171, 0.4);
}


@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .modal-avatar {
        width: 100px;
        height: 100px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn, .download-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .modal-body {
        padding: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .info-card {
       padding: 0px;
    }
    
    .mission-statement {
        padding: 20px;
    }
}
/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 12px;
    margin-top:100px         
}

::-webkit-scrollbar-track {
    background: #0a0f1c; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg,var(--color-primary),var(--color-bg)) ;
    border-radius: 10px;
    border: 3px solid var(--color-bg);  
}
.download-btn {
    -webkit-touch-callout: default;
}
