* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}
p {
    margin-bottom: 1rem;
    color: #94A3B8;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.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, 255, 255, 0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    }
.nav-link {
    color: #94A3B8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #FFFFFF;
  transition: 0.3s;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    }
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}
.hero-greeting {
    display: block;
    font-size: 0.6em;
    color: #94A3B8;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.hero-name {
    display: block;
    background: linear-gradient(135deg, #2563EB, #7C3AED, #10B981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}
.hero-subtitle {
    display: block;
    font-size: 0.4em;
    color: #94A3B8;
    font-weight: 300;
    margin-top: 0.5rem;
    font-family: 'Fira Code', monospace;
}
.typewriter {
    overflow: hidden;
    border-right: 3px solid #2563EB;
    white-space: nowrap;
    animation: typewriter 3s steps(30, end), blink-cursor 0.8s infinite;
}
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes blink-cursor {
    from, to { border-color: transparent; }
    50% { border-color: #2563EB; }
}
@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}
.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
       border-radius: 50%;
}
.profile-image-placeholder {
    width: 270px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E293B, #334155);
    border: 4px solid rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0891B2, #3B82F6);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}
.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981, #059669);
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}
.shape-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0891B2, #06B6D4);
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
section {
    padding: 6rem 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #c5c2e9, #e5e3e9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle {
    font-size: 1.125rem;
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto;
}
.about {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2563EB, transparent);
}
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about-story h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.about-story p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}
.skills-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}
.skill-category h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tag {
    background: rgba(37, 99, 235, 0.2);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-family: 'Fira Code', monospace;
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}
.tag:hover {
    background: rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}
.profile-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 2rem;
}
.profile-avatar {
    text-align: center;
    margin-bottom: 2rem;
}
.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 auto;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
.fun-facts h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-align: center;
}
.fun-facts ul {
    list-style: none;
    space-y: 0.75rem;
}
.fun-facts li {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.5rem 0;
}
.projects {
    background: #0F172A;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.project-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1E293B, #334155);
}
.project-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(37, 99, 235, 0.5);
}
.project-image {
    height: 200px;
    background: linear-gradient(135deg, #1E293B, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.img-project{
    height: auto;
    width: 100%;
}
.project-content {
    padding: 2rem;
}
.project-category {
    color: #2563EB;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Fira Code', monospace;
}.project-title {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin: 0.5rem 0 1rem;
}
.project-description {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.tech-tag {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.project-links {
    display: flex;
    gap: 1rem;
}
.project-link {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}
.project-link:hover {
    color: #7C3AED;
    transform: translateX(5px);
}
.experience {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    position: relative;
}
.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2563EB, transparent);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2563EB, #7C3AED);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}
.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    border-radius: 50%;
    border: 4px solid #0F172A;
    top: 0;
}
.timeline-item:nth-child(odd) .timeline-marker {
    right: -13px;
}
.timeline-item:nth-child(even) .timeline-marker {
    left: -13px;
}
.timeline-content {
    background: rgba(15, 23, 42, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(37, 99, 235, 0.4);
}
.timeline-date {
    color: #10B981;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Fira Code', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.timeline-title {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin: 0.5rem 0 1rem;
}
.timeline-description {
    color: #94A3B8;
    line-height: 1.7;
    margin: 0;
}
.certificates {
    background: #0F172A;
    position: relative;
}
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.certificate-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}
.certificate-image {
    height: 200px;
    background: linear-gradient(135deg, #1E293B, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
}
.certificate-placeholder {
    text-align: center;
}
.certificate-img{
    height: auto;
    width: 100%;
}
.certificate-content {
    padding: 2rem;
}
.certificate-title {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.certificate-issuer {
    color: #10B981;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.certificate-description {
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
}
.contact {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2563EB, transparent);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-text h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.contact-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.contact-method:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateX(10px);
}
.method-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}
.method-details h4 {
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}
.method-details p {
    color: #94A3B8;
    margin: 0;
    font-size: 0.9rem;
}
.contact-form-container {
    background: rgba(15, 23, 42, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #FFFFFF;
    font-family: inherit;
    transition: all 0.3s ease;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: rgba(30, 41, 59, 0.8);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748B;
}
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    width: 100%;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
.footer {
    background: #0F172A;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-text p {
    color: #64748B;
    margin: 0;
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
     .hamburger {
        display: flex;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-visual {
        order: -1;
        height: 300px;
    }
    .profile-image-placeholder {
        width: 250px;
        height: 250px;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 0 !important;
    }
    .timeline-marker {
        left: 12px !important;
        right: auto !important;
    }
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
.nav-link:focus,
.btn:focus,
input:focus,
textarea:focus {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}