/* ============================================
   GLOBAL STYLES
   ============================================ */

/* Reset default browser styles and set base font */
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
}

/* Smooth scrolling for anchor links */
html{
    scroll-behavior: smooth;
}

/* Body styles - dark background and hide horizontal overflow */
body{
    overflow-x: hidden;
    background: #222;
}

/* ============================================
   HERO HEADER SECTION
   ============================================ */

/* Full-screen hero header with dark background */
.hero-header{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #222;
}

/* Container to center content and set max width */
.wrapper{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   NAVIGATION & HEADER
   ============================================ */

/* Header layout: logo on left, nav on right */
header{
    padding: 40px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Logo container with icon and text */
.logo{
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

/* Logo hover effect - subtle lift */
.logo:hover{
    transform: translateY(-2px);
}

/* Logo icon - diamond badge with letter */
.logo i{
    height: 60px;
    width: 60px;
    background: linear-gradient(135deg, rgba(0, 124, 237, 0.1), rgba(0, 212, 255, 0.1));
    border: 3px solid #007ced;
    color: #007ced;
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 124, 237, 0.2);
}

/* Counter-rotate the letter to keep it upright */
.logo i::before{
    transform: rotate(-45deg);
    display: block;
}

/* Logo icon hover effect */
.logo:hover i{
    background: linear-gradient(135deg, #007ced, #00d4ff);
    color: white;
    border-color: #00d4ff;
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Logo text styling */
.logo .logo-text{
    font-size: 26px;
    font-weight: 800;
    color: white;
    z-index: 5;
    transition: color 0.3s ease;
}

/* Logo text hover effect */
.logo:hover .logo-text{
    color: #007ced;
}

/* Mobile hamburger menu button - hidden by default on desktop */
nav .togglebtn{
    width: 35px;
    height: 35px;
    position: absolute;
    top: 45px;
    right: 3%;
    z-index: 5;
    display: none; /* Hidden on desktop, shown on mobile */
    cursor: pointer;
}

/* Hamburger menu lines (3 horizontal bars) */
nav .togglebtn span{
    display: block;
    width: 100%;
    height: 3px;
    background: #007ced;
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Navigation links container */
nav .navlinks{
    list-style-type: none;
}

/* Navigation list items - displayed inline on desktop */
nav .navlinks li{
    color: white;
    display: inline-block;
    position: relative;
}

/* Navigation link styling with smooth transitions */
nav .navlinks li a{
    color: white;
    margin-right: 2.5rem;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline animation effect */
nav .navlinks li a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #007ced;
    transition: width 0.3s ease;
}

/* Hover effect - change color and show underline */
nav .navlinks li a:hover{
    color: #007ced;
}

nav .navlinks li a:hover::after{
    width: 100%;
}

/* Active page indicator */
nav .navlinks li a.active{
    color: #007ced;
}

nav .navlinks li a.active::after{
    width: 100%;
}

/* ============================================
   HERO CONTENT SECTION
   ============================================ */

/* Main content container - profile pic on left, content on right */
.container{
    display: flex;
    align-items: center;
    gap: 25rem;
    padding-top: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Profile picture container - circular with border */
.container .hero-pic {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid #ada9e6;
    box-shadow: 5px 7px 25px rgba(0, 0, 0, 0.5);
}

/* Profile image - covers full container */
.hero-pic img{
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

/* Zoom effect on hover */
.hero-pic img:hover{
    transform: scale(1.1);
}

/* Hero text content - introduction and description */
.hero-text{
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgb(235, 232, 232);
}

/* Subtitle text */
.hero-text h5{
    color: #e5e5e5;
    font-size: 14px;
}

/* Highlighted text (used with Typed.js for dynamic typing effect) */
.hero-text h5 span{
    color: #007ced;
    font-size: 16px;
}

/* Main heading - name */
.hero-text h1{
    color: #007ced;
    font-size: 3rem;
}

/* Description paragraph */
.hero-text p{
    color: #e5e5e5;
    line-height: 1.3;
}

/* ============================================
   BUTTONS & SOCIAL LINKS
   ============================================ */

/* Button group container */
.btn-group{
    display: flex;
    gap: 1rem;
    margin: 20px 0;
}

/* Button styling with hover effects */
.btn-group .btn{
    padding: 12px 25px;
    border: 2px solid #9ea9b4;
    color: #d5d5d5;
    background: #333;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
}

/* Active/primary button state */
.btn.active{
    background: #007ced;
    border: 2px solid #007ced;
}

/* Social media icons container */
.social{
    display: flex;
    gap: 1.5rem;
    margin-top: 20px;
}

/* Individual social media icon styling */
.social a{
    font-size: 24px;
    color: #788ea3;
    transition: all 0.3s ease;
}

/* Hover effect for social icons */
.social a:hover{
    color: #0099ff;
    transform: translateY(-3px);
}


.hero-unique{
    max-width: 1400px;
    margin: 20px auto;
    padding: 40px 40px 20px;
}

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

/* Left Side - Text Content */
.hero-intro{
    animation: fadeInUp 0.8s ease-out;
}

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

.greeting{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #b0b0b0;
}
/* Animated waving hand that loops */
.wave{
    font-size: 28px;
    animation: wave 2s ease-in-out infinite;
    transform-origin: 70% 70%;
    display: inline-block;
}

@keyframes wave{
    0%, 100%{ transform: rotate(0deg); }
    10%, 30%{ transform: rotate(14deg); }
    20%{ transform: rotate(-8deg); }
    40%{ transform: rotate(-4deg); }
    50%{ transform: rotate(10deg); }
}

.hero-name{
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.highlight-name{
    background: linear-gradient(135deg, #007ced, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-role{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 22px;
}

.role-label{
    color: #e5e5e5;
    font-weight: 500;
}

.hero-text-highlight{
    color: #00d4ff;
    font-weight: 600;
}

.typing-cursor::after{
    content: '|';
    animation: blink 1s infinite;
    margin-left: 5px;
    color: #00d4ff;
}

@keyframes blink{
    0%, 50%{ opacity: 1; }
    51%, 100%{ opacity: 0; }
}

.hero-description{
    color: #b0b0b0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-description strong{
    color: #007ced;
    font-weight: 600;
}

/* Hero Highlight - Internship announcement */
.hero-highlight{
    color: #e5e5e5;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 124, 237, 0.15));
    border-left: 4px solid #00d4ff;
    border-radius: 8px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-highlight strong{
    color: #00d4ff;
    font-weight: 700;
}

/* Fun Fact Badge */
.fun-fact-badge{
    display: flex;
    align-items: center;
    width: 60%;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 124, 237, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    transition: all 0.3s ease;
}

.fun-fact-badge:hover{
    transform: translateX(5px);
    border-color: #00d4ff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.fun-emoji{
    font-size: 32px;
    animation: bounce 2s infinite;
}

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

.fun-text{
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    gap: 3px;
}

.fun-title{
    color: #007ced;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.fun-text strong{
    color: #e5e5e5;
    font-size: 15px;
    font-weight: 600;
}

.fun-subtitle{
    color: #00d4ff;
    font-size: 20px;
    font-weight: 500;
}

/* Quick Stats */
.quick-stats{
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.stat-item{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number{
    font-size: 32px;
    font-weight: 700;
    color: #007ced;
}

.stat-label{
    font-size: 14px;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Buttons */
.hero-cta{
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary{
    background: linear-gradient(135deg, #007ced, #0099ff);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 124, 237, 0.3);
}

.cta-primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 124, 237, 0.4);
}

.cta-primary i{
    transition: transform 0.3s ease;
}

.cta-primary:hover i{
    transform: translateX(5px);
}

.cta-secondary{
    background: transparent;
    color: #e5e5e5;
    border: 2px solid #444;
}

.cta-secondary:hover{
    border-color: #007ced;
    color: #007ced;
    transform: translateY(-3px);
}

/* Hero Social */
.hero-social{
    display: flex;
    gap: 15px;
}

.hero-social a{
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 20px;
    transition: all 0.3s ease;
}

.hero-social a:hover{
    background: #007ced;
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

/* Right Side - Visual Element */
.hero-visual{
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
.profile-container{
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.profile-decoration{
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007ced22, #00d4ff22);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 3s ease-in-out infinite;
}

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

.profile-image{
    position: relative;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #007ced;
    box-shadow: 0 20px 60px rgba(0, 124, 237, 0.3);
    aspect-ratio: 1 / 1;
}

.profile-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% 20%;
    display: block;
}

/* Floating Badges */
.floating-badge{
    position: absolute;
    background: #1a1a1a;
    border: 2px solid #007ced;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.floating-badge i{
    font-size: 18px;
    color: #007ced;
}

.badge-1{
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.badge-2{
    top: 30%;
    right: -10%;
    animation-delay: 0.5s;
}

.badge-3{
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.badge-4{
    bottom: 10%;
    right: -5%;
    animation-delay: 1.5s;
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE (≤768px)
   ============================================ */

@media (max-width: 768px){
    /* Show hamburger menu button on mobile */
    nav .togglebtn{
        display: block;
    }
    
    /* Navigation menu - slide in from right when active */
    nav .navlinks{
        position: absolute;
        top: 80px;
        right: -100%; /* Hidden off-screen by default */
        bottom: 0;
        width: 60%;
        height: 100vh;
        background: #222;
        z-index: 3;
        box-shadow: 5px 13px 15px rgba(0, 0, 0, 0.3);
        transition: right 0.5s; /* Smooth slide animation */
    }
    
    /* When menu is active, slide it into view */
    nav .navlinks.active{
        right: 0;
    }
    
    /* Stack navigation items vertically on mobile */
    nav .navlinks li{
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid #444;
        width: 100%;
        text-align: center;
    }
    
    /* Mobile navigation link styling */
    nav .navlinks li a{
        margin: 0;
        font-size: 18px;
        display: block;
    }
    
    /* Hamburger to X animation - first line rotates down */
    nav .togglebtn.click span:first-child{
        transform: rotate(-45deg);
        position: relative;
        top: 9px;
    }
    
    /* Middle line fades out */
    nav .togglebtn.click span:nth-child(2){
        opacity: 0;
    }
    
    /* Last line rotates up to form X */
    nav .togglebtn.click span:last-child{
        transform: rotate(45deg);
        position: relative;
        top: -9px;
    }
    
    /* Stack hero content vertically on mobile */
    .container{
        flex-direction: column;
        gap: 2rem;
    }
    
    /* New Hero Section - Mobile Responsive */
    .hero-unique{
        padding: 40px 20px;
    }
    
    .hero-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-name{
        font-size: 2.5rem;
    }
    
    .hero-role{
        font-size: 18px;
        flex-wrap: wrap;
    }
    
    .hero-highlight{
        font-size: 14px;
        padding: 12px 15px;
        margin-bottom: 25px;
    }
    
    .quick-stats{
        gap: 20px;
    }
    
    .stat-number{
        font-size: 24px;
    }
    
    .hero-cta{
        flex-direction: column;
    }
    
    .cta-primary, .cta-secondary{
        width: 100%;
        justify-content: center;
    }
    
    .profile-container{
        max-width: 300px;
    }
    
    .floating-badge{
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .floating-badge i{
        font-size: 14px;
    }
    
    /* Fun Fact Badge - Mobile */
    .fun-fact-badge{
        padding: 12px 15px;
        margin-bottom: 25px;
    }
    
    .fun-emoji{
        font-size: 26px;
    }
    
    .fun-text strong{
        font-size: 14px;
    }
    
    .fun-subtitle{
        font-size: 12px;
    }
}

/* ================================
   PROJECT PAGE
   ================================ */


.projects-elegant {
    padding: 60px 10%;
}

.elegant-title {
    color: #007ced;
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.elegant-subtitle {
    color: #dfd4d4;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.elegant-project-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* One elegant project block */
.project-item {
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    transition: transform .25s ease, border-color .25s ease;
}

.project-item:hover {
    transform: translateY(-4px);
    border-color: #214f7a;
}

.project-item h2 {
    color: #579cea;
    font-size: 1.6rem;
    margin-bottom: .5rem;
}

.project-item p {
    color: #dfd4d4;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Tech tags */
.tags span {
    background: #333;
    color: #eee;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
    margin-right: 8px;
}

.view-link {
    margin-top: 1rem;
    display: inline-block;
    color: #117df8;
    font-size: 0.9rem;
    transition: 0.2s;
}

.view-link i {
    margin-right: 6px;
}

.view-link:hover {
    color: #cdcfe1;
    transform: translateX(4px);
}

/* ============================================
   CS PAGE
   ============================================ */

.cs-elegant {
    padding: 60px 10%;
}

.cs-title {
    color: #007ced;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cs-subtitle {
    color: #e9e9e9; /* readable */
    max-width: 720px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* Section container */
.cs-section {
    margin-bottom: 45px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cs-section:last-child {
    border-bottom: none;
}

.cs-section h2 {
    color: #9ecbff;
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.cs-section h2 i {
    margin-right: 8px;
    color: #007ced;
}

.cs-section p {
    color: #e6e6e6;
    line-height: 1.6;
    max-width: 650px;
}

/* Sub-headings */
.cs-section h3 {
    color: #cfe4ff;
    margin-top: 18px;
    margin-bottom: 8px;
}

/* Skill badges */
.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-badges span {
    background: rgba(255,255,255,0.05);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    color: #e9e9e9;
    font-size: 0.85rem;
    transition: 0.25s;
}

.skill-badges span:hover {
    background: #007ced;
    border-color: #007ced;
    color: white;
}

/* ============================================
   CV DOWNLOAD SECTION
   ============================================ */

.cv-section{
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 20px 20px 60px;
    position: relative;
    overflow: hidden;
}

.cv-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 124, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cv-container{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cv-content{
    text-align: center;
    background: #222;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.cv-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #007ced, #00d4ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

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

.cv-title{
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.cv-description{
    color: #b0b0b0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cv-buttons{
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cv-download-btn, .cv-view-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.cv-download-btn{
    background: linear-gradient(135deg, #007ced, #00d4ff);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 124, 237, 0.3);
}

.cv-download-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 124, 237, 0.5);
}

.cv-download-btn i{
    animation: downloadPulse 2s ease-in-out infinite;
}

@keyframes downloadPulse{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(3px); }
}

.cv-view-btn{
    background: transparent;
    color: #e5e5e5;
    border: 2px solid #444;
}

.cv-view-btn:hover{
    border-color: #007ced;
    color: #007ced;
    transform: translateY(-3px);
}

.cv-info{
    display: flex;
    gap: 40px;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
}

.cv-info-item{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
    font-size: 14px;
}

.cv-info-item i{
    color: #007ced;
    font-size: 16px;
}

/* Responsive CV Section */
@media (max-width: 768px){
    .cv-section{
        padding: 60px 20px;
    }
    
    .cv-content{
        padding: 40px 30px;
    }
    
    .cv-title{
        font-size: 2rem;
    }
    
    .cv-buttons{
        flex-direction: column;
    }
    
    .cv-download-btn, .cv-view-btn{
        width: 100%;
        justify-content: center;
    }
    
    .cv-info{
        gap: 20px;
    }
}

/* ============================================
   UPDATES & NEWS SECTION
   ============================================ */

/* Updates section container */
.updates-section{
    background: #222;
    padding: 80px 20px;
    position: relative;
}

.updates-container{
    max-width: 1000px;
    margin: 0 auto;
}

/* Timeline layout */
.updates-timeline{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

/* Vertical line for timeline */
.updates-timeline::before{
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #007ced, #00d4ff, #007ced);
    opacity: 0.3;
}

/* Individual update item */
.update-item{
    display: flex;
    gap: 25px;
    position: relative;
    padding-left: 10px;
    animation: fadeInUp 0.6s ease-out both;
}

.update-item:nth-child(1){
    animation-delay: 0.1s;
}

.update-item:nth-child(2){
    animation-delay: 0.2s;
}

.update-item:nth-child(3){
    animation-delay: 0.3s;
}

/* Update icon */
.update-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #007ced, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.update-icon i{
    font-size: 24px;
    color: white;
}

/* Update content */
.update-content{
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px 30px;
    transition: all 0.3s ease;
}

.update-content:hover{
    border-color: #007ced;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 124, 237, 0.2);
}

/* Update date */
.update-date{
    display: inline-block;
    color: #00d4ff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Update title */
.update-title{
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

/* Update description */
.update-description{
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

/* Update tags */
.update-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.update-tag{
    display: inline-block;
    background: rgba(0, 124, 237, 0.15);
    border: 1px solid rgba(0, 124, 237, 0.3);
    color: #007ced;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.update-tag:hover{
    background: rgba(0, 124, 237, 0.25);
    border-color: #007ced;
    transform: translateY(-2px);
}

/* Responsive Updates Section */
@media (max-width: 768px){
    .updates-section{
        padding: 60px 20px;
    }
    
    .updates-timeline::before{
        left: 20px;
    }
    
    .update-item{
        flex-direction: column;
        gap: 15px;
        padding-left: 0;
    }
    
    .update-icon{
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .update-icon i{
        font-size: 20px;
    }
    
    .update-content{
        padding: 20px;
    }
    
    .update-title{
        font-size: 18px;
    }
    
    .update-description{
        font-size: 14px;
    }
}

/* ============================================
   TECH STACK SECTION
   ============================================ */

.tech-stack-section{
    background: #1a1a1a;
    padding: 80px 20px;
    position: relative;
}

.tech-stack-container{
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header{
    text-align: center;
    margin-bottom: 60px;
}

.section-title{
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle{
    color: #b0b0b0;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* Tech Categories Grid */
.tech-categories{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-category{
    background: #222;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.tech-category:hover{
    transform: translateY(-5px);
    border-color: #007ced;
    box-shadow: 0 10px 30px rgba(0, 124, 237, 0.2);
}

/* Category Header */
.category-header{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}

.category-header i{
    font-size: 24px;
    color: #007ced;
}

.category-header h3{
    font-size: 20px;
    color: white;
    font-weight: 600;
}

/* Tech Items Grid */
.tech-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tech-item{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #2a2a2a;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-item:hover{
    background: #333;
    border-color: #007ced;
    transform: translateX(5px);
}

.tech-item i{
    font-size: 20px;
    color: #007ced;
    min-width: 20px;
}

.tech-item span{
    color: #e5e5e5;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Tech Stack */
@media (max-width: 768px){
    .tech-stack-section{
        padding: 60px 20px;
    }
    
    .section-title{
        font-size: 2rem;
    }
    
    .tech-categories{
        grid-template-columns: 1fr;
    }
    
    .tech-grid{
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CERTIFICATES SECTION
   ============================================ */

/* Certificates section container */
.certificates-section{
    background: #1a1a1a;
    padding: 80px 20px;
}

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

/* Certificates grid layout */
.certificates-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Individual certificate card */
.certificate-card{
    background: #222;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certificate-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007ced, #00d4ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.certificate-card:hover{
    transform: translateY(-5px);
    border-color: #007ced;
    box-shadow: 0 10px 30px rgba(0, 124, 237, 0.2);
}

.certificate-card:hover::before{
    transform: scaleX(1);
}

/* Certificate icon */
.certificate-icon{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007ced, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.certificate-icon i{
    font-size: 28px;
    color: white;
}

/* Certificate content */
.certificate-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.certificate-title{
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.certificate-issuer{
    font-size: 14px;
    color: #007ced;
    font-weight: 500;
    margin: 0;
}

.certificate-date{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
    margin: 5px 0;
}

.certificate-date i{
    font-size: 12px;
}

/* Certificate link */
.certificate-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.certificate-link:hover{
    color: #007ced;
    gap: 12px;
}

.certificate-link i{
    font-size: 12px;
}

/* Responsive Certificates */
@media (max-width: 768px){
    .certificates-section{
        padding: 60px 20px;
    }
    
    .certificates-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certificate-card{
        padding: 25px;
    }
}

/* ============================================
   EDUCATION SECTION
   ============================================ */

/* Education section container */
.education-section{
    background: #222;
    padding: 80px 20px;
}

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

/* Education content layout */
.education-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* Education card */
.education-card{
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.education-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007ced, #00d4ff);
}

.education-card:hover{
    transform: translateY(-5px);
    border-color: #007ced;
    box-shadow: 0 10px 30px rgba(0, 124, 237, 0.2);
}

/* Education icon */
.education-icon{
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #007ced, #00d4ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-icon i{
    font-size: 32px;
    color: white;
}

/* Education info */
.education-info{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.education-degree{
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.education-school{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #007ced;
    font-weight: 500;
    margin: 0;
}

.education-school i{
    font-size: 14px;
}

.education-date{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #999;
    margin: 0;
}

.education-date i{
    font-size: 13px;
}

/* Currently Learning card */
.learning-card{
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.learning-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #007ced);
}

.learning-card:hover{
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

/* Learning header */
.learning-header{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.learning-icon{
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #00d4ff, #007ced);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-icon i{
    font-size: 24px;
    color: white;
}

.learning-title{
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Learning description */
.learning-description{
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
    margin: 0 0 20px 0;
}

.learning-description strong{
    color: #00d4ff;
    font-weight: 600;
}

/* Learning tags */
.learning-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.learning-tag{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2a2a2a;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #e5e5e5;
    font-weight: 500;
    transition: all 0.3s ease;
}

.learning-tag i{
    font-size: 14px;
    color: #00d4ff;
}

.learning-tag:hover{
    background: #333;
    border-color: #00d4ff;
    transform: translateY(-2px);
}

/* Responsive Education */
@media (max-width: 768px){
    .education-section{
        padding: 60px 20px;
    }
    
    .education-content{
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .education-card{
        flex-direction: column;
        padding: 30px;
    }
    
    .learning-card{
        padding: 30px;
    }
    
    .learning-tags{
        gap: 10px;
    }
    
    .learning-tag{
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

/* Footer container with dark background */
.footer{
    background: #1a1a1a;
    color: #e5e5e5;
    padding: 60px 0 20px;
    margin-top: 80px;
}

/* Footer content grid layout */
.footer-content{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Individual footer section */
.footer-section h3{
    color: #007ced;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p{
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 14px;
}

/* Footer links list */
.footer-links{
    list-style: none;
    padding: 0;
}

.footer-links li{
    margin-bottom: 12px;
}

.footer-links li a{
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links li a:hover{
    color: #007ced;
}

/* Footer social icons */
.footer-social{
    display: flex;
    gap: 15px;
}

.footer-social a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover{
    background: #007ced;
    color: white;
    transform: translateY(-3px);
}

/* Footer bottom section */
.footer-bottom{
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p{
    color: #b0b0b0;
    font-size: 14px;
}

/* Responsive footer for mobile */
@media (max-width: 768px){
    .footer{
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content{
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

