/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

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



.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffc107;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffc107;
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="batSignal" cx="50%" cy="30%" r="40%"><stop offset="0%" stop-color="%23ffc107" stop-opacity="0.1"/><stop offset="100%" stop-color="%23000" stop-opacity="0.8"/></radialGradient></defs><rect width="1200" height="800" fill="url(%23batSignal)"/><path d="M600 200 L550 250 Q600 280 650 250 Z" fill="%23ffc107" opacity="0.05"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="batPattern" width="200" height="200" patternUnits="userSpaceOnUse"><path d="M100 50 L80 70 Q100 85 120 70 Z" fill="%23ffc107" opacity="0.03"/><circle cx="50" cy="150" r="2" fill="%23ffc107" opacity="0.05"/><circle cx="150" cy="150" r="1" fill="%23ffc107" opacity="0.05"/></pattern></defs><rect width="200" height="200" fill="url(%23batPattern)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.greeting {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.name {
    display: block;
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 1s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ffc107;
    color: #0f172a;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    background: #ffeb3b;
}

.btn-secondary {
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.btn-secondary:hover {
    background: #ffc107;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

/* Floating Elements */
.hero-visual {
    position: relative;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><radialGradient id="spotlight" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffc107" stop-opacity="0.1"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23spotlight)"/><path d="M200 120 L160 160 Q200 190 240 160 Z" fill="%23ffc107" opacity="0.1"/></svg>') center/contain no-repeat;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

.tech-icon.react {
    top: 20%;
    left: 10%;
    color: #61dafb;
    animation-delay: 0s;
}

.tech-icon.angular {
    top: 10%;
    right: 20%;
    color: #dd0031;
    animation-delay: 1s;
}

.tech-icon.js {
    bottom: 30%;
    left: 20%;
    color: #f7df1e;
    animation-delay: 2s;
}

.tech-icon.node {
    bottom: 20%;
    right: 10%;
    color: #339933;
    animation-delay: 3s;
}

.tech-icon.aws {
    top: 50%;
    right: 40%;
    color: #ff9900;
    animation-delay: 4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><pattern id="gothamCity" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="10" y="80" width="15" height="20" fill="%23ffc107" opacity="0.02"/><rect x="30" y="70" width="20" height="30" fill="%23ffc107" opacity="0.02"/><rect x="60" y="75" width="12" height="25" fill="%23ffc107" opacity="0.02"/></pattern></defs><rect width="800" height="600" fill="url(%23gothamCity)"/></svg>');
    background-size: cover;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffc107;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ffc107;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #cbd5e1;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><defs><pattern id="techGrid" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffc107" opacity="0.1"/><path d="M25 15 L20 20 Q25 25 30 20 Z" fill="%23ffc107" opacity="0.02"/></pattern></defs><rect width="600" height="400" fill="url(%23techGrid)"/></svg>');
    background-size: cover;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ffc107;
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
}

.skill-item {
    margin-bottom: 25px;
}

.skill-name {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e2e8f0;
}

.skill-bar {
    height: 8px;
    background: #334155;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ffeb3b);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><defs><pattern id="timeline" width="200" height="100" patternUnits="userSpaceOnUse"><line x1="100" y1="0" x2="100" y2="100" stroke="%23ffc107" stroke-width="0.5" opacity="0.1"/><circle cx="100" cy="50" r="2" fill="%23ffc107" opacity="0.05"/></pattern></defs><rect width="1000" height="600" fill="url(%23timeline)"/></svg>');
    background-size: cover;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #ffc107;
    border-radius: 50%;
    border: 3px solid #0f172a;
    box-shadow: 0 0 0 3px #ffc107, 0 0 20px rgba(255, 193, 7, 0.3);
}

.timeline-date {
    flex: 0 0 200px;
    text-align: center;
    font-weight: 600;
    color: #ffc107;
    padding: 20px;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
}

.timeline-content {
    flex: 1;
    background: rgba(15, 23, 42, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin: 0 30px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #ffc107;
}

.timeline-content h4 {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 15px;
    font-weight: 500;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #cbd5e1;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ffc107;
}





/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><radialGradient id="contactSignal" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23ffc107" stop-opacity="0.05"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="400" cy="300" r="200" fill="url(%23contactSignal)"/><path d="M400 200 L360 240 Q400 270 440 240 Z" fill="%23ffc107" opacity="0.03"/></svg>');
    background-size: cover;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.contact-info p {
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.contact-item i {
    width: 20px;
    margin-right: 15px;
    color: #ffc107;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #ffc107;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(30, 41, 59, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #334155;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: rgba(15, 23, 42, 0.8);
    color: #e2e8f0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 50px;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .timeline-item::before {
        left: 20px;
        transform: none;
    }

    .timeline-date {
        text-align: left;
        padding: 0 0 10px 0;
    }

    .timeline-content {
        margin: 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-card {
        margin: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }
}
/* Certifications Section */
.certifications {
    padding: 100px 0;
    background: #f8fafc;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.certification-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.certification-item i {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 20px;
}

.certification-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.certification-item p {
    color: #64748b;
    font-size: 0.9rem;
}
