*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:linear-gradient(-45deg,#0f2027,#203a43,#2c5364,#1f1c2c);
    background-size:400% 400%;
    animation:gradientBG 12s ease infinite;
    color:white;
    scroll-behavior:smooth;
}

@keyframes gradientBG{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

header{
    position:fixed;
    width:100%;
    top:0;
    height:70px;
    padding:0 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    backdrop-filter:blur(10px);
    background:rgba(0,0,0,0.4);
    z-index:1000;
}

/* Logo */
.logo{
    display:flex;
    align-items:center;
    font-weight:700;
    font-size:24px;
    text-decoration:none;
    color:white; 
}

.logo-img{
    width:35px;         
    height:35px;
    border-radius:50%;
    object-fit:cover;
    margin-right:10px;
    border:2px solid #00f7ff;
}

.logo-text{
    text-decoration: none;
    color:white;
}
    
.split-section{
    display:grid;
    grid-template-columns:30% 40% 30%;
    gap:30px;
    padding:120px 40px 60px;
    height: auto;
}

/* Common Box Style */
.split{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(12px);
    border-radius:20px;
    padding:40px 25px;
    display:flex;
    flex-direction:column;
    align-items:center;
    transition: 0.4s;
}
.split:hover{
    transform:translateY(-10px);
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
}

/* Left Section */
.left{
    justify-content:flex-start;
}

.left img{
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #00f7ff;
    margin-bottom:20px;
}

.description{
    text-align:center;
    font-size:16px;
    line-height:1.7;
    margin-top:10px;
}
.highlight{
    color:#00f7ff;
    font-weight:600;
}

.highlight-soft{
    color:#7ffbff;
}

/* Middle */
.middle{
    justify-content:center;
}

.video-box{
    width:100%;
    max-width:400px;
    height:230px;
    background:#111;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#aaa;
}

/* Right */
.right{
    justify-content:flex-start;
    text-align:left;
}

.right h3{
    margin-bottom:15px;
}
.social-icons{
    margin-top:20px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.social-icons a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-size:16px;
    transition:0.3s ease;
}

.social-icons a:hover{
    background:#00f7ff;
    color:#000;
    transform:translateY(-4px);
}

/* ===== Responsive ===== */

/* Large Tablet */
@media(max-width:1200px){
    .split-section{
        grid-template-columns:35% 65%;
    }
    .right{
        grid-column:1 / -1;
    }
}

/* Tablet */
@media(max-width:900px){
    .split-section{
        grid-template-columns:1fr;
    }
}

/* Mobile */
@media(max-width:600px){
    .split-section{
        padding:100px 20px 40px;
    }

    .left img{
        width:130px;
        height:130px;
    }

    .description{
        font-size:15px;
    }
}
    
/* Desktop Nav */
nav{
    display:flex;
    align-items:center;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:15px;
    padding:8px 22px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.3);
    transition:0.3s;
    font-weight:500;
}

nav a:hover{
    background:#00f7ff;
    color:#000;
    border-color:#00f7ff;
}

/* Hamburger */
.menu-toggle{
    display:none;
    width:28px;
    height:22px;
    position:relative;
    cursor:pointer;
}

.menu-toggle span{
    position:absolute;
    width:100%;
    height:3px;
    background:white;
    left:0;
    transition:0.3s;
}

.menu-toggle span:nth-child(1){ top:0; }
.menu-toggle span:nth-child(2){ top:9px; }
.menu-toggle span:nth-child(3){ bottom:0; }

/* X animation */
.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg);
    top:9px;
}
.menu-toggle.active span:nth-child(2){
    opacity:0;
}
.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg);
    bottom:10px;
}

/* Mobile */
@media(max-width:768px){

    nav{
        position:absolute;
        top:70px;
        right:10px;              
        width:180px;             
        background:#000;
        border-radius:12px;
        padding:10px 0;         
        display:flex;
        flex-direction:column;

        transform:translateY(-10px);
        opacity:0;
        pointer-events:none;
        transition:0.3s ease;
    }

    nav.active{
        transform:translateY(0);
        opacity:1;
        pointer-events:auto;
    }

    nav a{
        display:block;
        width:100%;
        padding:14px 15px;      
        text-align:center;
        margin:0;
        color:white;

        border:none !important;
        border-radius:0 !important;
        background:none !important;

        position:relative;
    }

    /* 🔥 Full Width Divider */
    nav a::after{
        content:"";
        position:absolute;
        left:0;
        bottom:0;
        width:100%;
        height:1px;
        background:white;
        opacity:0.5;
    }

    nav a:last-child::after{
        display:none;  
    }

    nav a:hover{
        color:#00f7ff;
    }

    .menu-toggle{
        display:block;
    }
}

section{
    padding:120px 20px;
    max-width:1100px;
    margin:auto;
}

.glass{
    background:rgba(255,255,255,0.08);
    padding:30px;
    border-radius:20px;
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.2);
    transition:0.4s;
}

.glass:hover{
    transform:translateY(-10px);
    border-color:#00f7ff;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);

}

.about-text{
    font-size:16px;
    line-height:1.8;
    max-width:700px;
    margin:auto;
    text-align:left;
    color:#eafcff;
}
.subheadingg{
    color:#00f7ff;
    text-align:left;
    padding-left:15px;
    margin-bottom:25px;
    border-left:4px solid #00f7ff;
    font-size:20px;
}
    
.skills-section{
    padding:100px 60px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    margin-bottom:50px;
    border-radius:20px;
}
.skills-title{
    width:100%;
    text-align:center;
    font-size:30px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:60px;
    position:relative;
    color:#00f7ff;
    text-shadow:
        0 0 6px rgba(0,247,255,0.5),
        0 0 12px rgba(0,247,255,0.3);
}

/* Soft Full Width Underline */
.skills-title::after{
    content:"";
    display:block;
    width:100%;
    height:2px;
    margin-top:12px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,247,255,0.7),
        transparent
    );
}
.skills-category{
    margin-bottom:50px;
}
.subheading{
    color:#00f7ff;
    text-align:left;
    padding-left:15px;
    margin-bottom:25px;
    border-left:4px solid #00f7ff;
    font-size:20px;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s ease;
}
.subheading.show {
    opacity: 1;
    transform: translateX(0);
}
.skills-grid{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-left:15px;
    margin-top:10px;
}

.skill-box{
    display:inline-block;
    padding:6px 14px;
    font-size:13px;
    border-radius:20px;
    background:rgba(0,247,255,0.15);   
    color:#eafcff;           
    border:none;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s ease;
}
.skill-box.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
    
/* Website Section */
.website-section{
    padding:100px 60px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    margin-bottom:50px;
    border-radius:20px;
}
.website-title{
    width:100%;
    text-align:center;
    font-size:30px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:60px;
    position:relative;
    color:#00f7ff;
    text-shadow:
        0 0 6px rgba(0,247,255,0.5),
        0 0 12px rgba(0,247,255,0.3);
}

/* Soft Full Width Underline */
.website-title::after{
    content:"";
    display:block;
    width:100%;
    height:2px;
    margin-top:12px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,247,255,0.7),
        transparent
    );
}
.website-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}
.website-card{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:25px;
    border:1px solid rgba(255,255,255,0.15);
    transition:0.3s ease;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    height:100%;
}
.website-card:hover{
    transform:translateY(-8px);
    border-color:#00f7ff;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
}
.status{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:5px 30px;
    font-size:16px;
    border-radius:20px;
    font-weight:500;
    margin-bottom:12px;
}

/* Dot base */
.status::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
}

/* 🔴 Live with Pulse */
.status.live{
    color:#ff4d4d;
    border:1px solid #ff4d4d;
    background:rgba(255,0,0,0.08);
}

.status.live::before{
    background:#ff0000;
    animation:pulse 1.5s infinite;
}

/* 🟢 Progress (No animation) */
.status.progress{
    color:#00ff88;
    border:1px solid #00ff88;
    background:rgba(0,255,100,0.1);
}

.status.progress::before{
    background:#00ff88;
}

/* Pulse Animation */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(255,0,0,0.7);
    }
    70%{
        box-shadow:0 0 0 8px rgba(255,0,0,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(255,0,0,0);
    }
}
.website-card h3{
    margin-bottom:10px;
    font-size:20px;
}
.website-desc{
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
    color:#d9f9ff;
}
.tech{
    margin-bottom:15px;
}
.tech span{
    display:inline-block;
    padding:5px 10px;
    font-size:12px;
    border-radius:15px;
    background:rgba(0,247,255,0.15);
    margin:4px 4px 0 0;
}
.features{
    margin-bottom:15px;
    padding-left:18px;
    font-size:13px;
    line-height:1.6;
}
.btn-group{
    margin-top:auto;
}
.btn{
    display:inline-block;
    padding:8px 18px;
    border-radius:25px;
    background:#00f7ff;
    color:#000;
    text-decoration:none;
    font-size:13px;
    transition:0.3s;
}
.btn:hover{
    background:#fff;
    color:#000;
}
    
/* Section */
.apps-section{
    padding:100px 60px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    margin-bottom:50px;
    border-radius:20px;
}

/* Title */
.apps-title{
    width:100%;
    text-align:center;
    font-size:30px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:60px;
    position:relative;
    color:#00f7ff;
    text-shadow:
        0 0 6px rgba(0,247,255,0.5),
        0 0 12px rgba(0,247,255,0.3);
}

/* Soft Full Width Underline */
.apps-title::after{
    content:"";
    display:block;
    width:100%;
    height:2px;
    margin-top:12px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,247,255,0.7),
        transparent
    );
}

/* Grid */
.apps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* Card */
.app-card{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:25px;
    border:1px solid rgba(255,255,255,0.15);
    transition:0.3s ease;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    height:100%;
}

.app-card:hover{
    transform:translateY(-6px);
    border-color:#00f7ff;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
}

/* Description */
.app-desc{
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
    color:#d9f9ff;
}
    
.projects-section{
    padding:100px 60px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    margin-bottom:50px;
    border-radius:20px;
}
.projects-title{
    width:100%;
    text-align:center;
    font-size:30px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:60px;
    position:relative;
    color:#00f7ff;
    text-shadow:
        0 0 6px rgba(0,247,255,0.5),
        0 0 12px rgba(0,247,255,0.3);
}
/* Soft Full Width Underline */
.projects-title::after{
    content:"";
    display:block;
    width:100%;
    height:2px;
    margin-top:12px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,247,255,0.7),
        transparent
    );
}
.projects-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.project-box{
    width:280px;
    height:110px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.3);
    background:rgba(255,255,255,0.05);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
    font-size:16px;
    transition:0.3s ease;
}

.project-box:hover{
    background:#00f7ff;
    color:#000;
    transform:translateY(-6px);
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
}
  
/* Section */
.tutorials-section{
    padding:100px 60px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    margin-bottom:50px;
    border-radius:20px;
}

/* Title */
.tutorials-title{
    width:100%;
    text-align:center;
    font-size:30px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:60px;
    position:relative;

    color:#00f7ff;

    /* ✨ Subtle Glow */
    text-shadow:
        0 0 6px rgba(0,247,255,0.5),
        0 0 12px rgba(0,247,255,0.3);
}

/* Soft Full Width Underline */
.tutorials-title::after{
    content:"";
    display:block;
    width:100%;
    height:2px;
    margin-top:12px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,247,255,0.7),
        transparent
    );
}

/* Grid */
.tutorials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* Card */
.tutorials-card{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:25px;
    border:1px solid rgba(255,255,255,0.15);
    transition:0.3s ease;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    height:100%;
}

.tutorials-card:hover{
    transform:translateY(-6px);
    border-color:#00f7ff;
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
}

/* Card Heading */
.tutorials-card h3{
    margin-bottom:10px;
    font-size:18px;
}

/* Description */
.tutorials-card p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
    color:#d9f9ff;
}  

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero img{
    width:150px;
    height:150px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:3px solid rgba(255,255,255,0.4);
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:40px;
}

footer{
    text-align:center;
    padding:20px;
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,0.05);
}
    
/* ===== ENTRY ANIMATION ===== */

.reveal-card{
    opacity:0;
    transform:translateY(40px);
    transition: all 0.6s ease;
}

.reveal-card.active{
    opacity:1;
    transform:translateY(0);
}