
body{
    background: linear-gradient(135deg,#eef2ff,#f8fafc,#f1f5f9);
    font-family:'Segoe UI',sans-serif;
    color:#1e293b;
}

/* Navbar */

.navbar{
    background: rgba(255,255,255,0.75)!important;
    backdrop-filter: blur(14px);
    border-bottom:1px solid rgba(255,255,255,0.2);
}

.navbar-brand{
    font-weight:600;
    font-size:1.4rem;
}

/* Profile */

.profile-card{
    border:none;
    border-radius:24px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    overflow:hidden;
    transition:0.4s;
}

.profile-card:hover{
    transform:translateY(-5px);
}

.profile-img{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    padding:4px;
    background:linear-gradient(135deg,#3b82f6,#9333ea,#ec4899);
}

/* Buttons */

.btn-modern{
    border-radius:50px;
    padding:10px 22px;
    font-weight:600;
    transition:0.3s;
}

.btn-modern:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,0.15);
}

/* Project Cards */

.project-card{
    background:white;
    border-radius:24px;
    padding:28px;
    height:100%;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    border:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.project-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:28px;
    margin-bottom:20px;
}

.project-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.project-card p{
    color:#64748b;
    min-height:80px;
}

/* Experience */

.experience-card{
    border:none;
    border-radius:22px;
    overflow:hidden;
    transition:0.3s;
}

.experience-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,0.08);
}

/* Gallery */

.gallery-title{
    font-weight:700;
    margin:40px 0 20px;
}

.post-card{
    border:none;
    border-radius:22px;
    overflow:hidden;
    background:white;
    transition:0.4s;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
}

.post-card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

.post-img{
    height:260px;
    object-fit:cover;
}

.caption{
    font-size:0.9rem;
    color:#555;
}

/* Skills */

.skills-badge{
    margin:3px;
    font-size:0.85rem;
    padding:8px 12px;
    border-radius:30px;
}

/* Sections */

.section-title{
    font-weight:700;
    margin-bottom:15px;
}

.company-title,
.institution-title{
    font-weight:700;
    font-size:1.1rem;
}

.role-title{
    color:#64748b;
    font-size:0.95rem;
}

/* Modal */

.modal-content{
    border:none;
    border-radius:20px;
    overflow:hidden;
}
/* Youtube Section */

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.video-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.video-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.video-card iframe{
    width:100%;
    height:240px;
    border:none;
}

.video-content{
    padding:18px;
}

.video-title{
    font-size:16px;
    font-weight:700;
    line-height:1.5;
    color:#1e293b;
}

.video-date{
    color:#64748b;
    font-size:14px;
    margin-top:10px;
}

/* Blog Section */

.blog-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    height:100%;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.blog-image{
    width:100%;
    height:220px;
    object-fit:cover;
}

.blog-content{
    padding:22px;
}

.blog-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
    color:#0f172a;
}

.blog-description{
    color:#64748b;
    font-size:15px;
    line-height:1.7;
    margin-bottom:20px;
}

.blog-meta{
    font-size:14px;
    color:#94a3b8;
    margin-bottom:15px;
}

.read-more-btn{
    border-radius:50px;
    padding:10px 18px;
    font-weight:600;
}

/* Responsive */

@media(max-width:1024px){

    .video-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .video-grid{
        grid-template-columns:1fr;
    }

    .video-card iframe{
        height:220px;
    }

    .post-img{
        height:200px;
    }

    .profile-img{
        width:90px;
        height:90px;
    }

    .project-card{
        padding:20px;
    }

}

/*body{*/
/*    background:#f5f7fb;*/
/*    font-family:'Segoe UI',sans-serif;*/
/*}*/

/*.navbar{*/
/*    backdrop-filter: blur(10px);*/
/*}*/

/*.navbar-brand{*/
/*    font-weight:600;*/
/*    font-size:1.4rem;*/
/*}*/

/*.profile-card{*/
/*    border-radius:15px;*/
/*    transition:0.3s;*/
/*}*/

/*.profile-card:hover{*/
/*    transform:translateY(-3px);*/
/*}*/

/*.profile-img{*/
/*    width:110px;*/
/*    height:110px;*/
/*    object-fit:cover;*/
/*    border:4px solid #fff;*/
/*    box-shadow:0 4px 12px rgba(0,0,0,0.1);*/
/*}*/

/*.post-card{*/
/*    border:none;*/
/*    border-radius:12px;*/
/*    overflow:hidden;*/
/*    transition:0.3s;*/
/*}*/

/*.post-card:hover{*/
/*    transform:translateY(-6px);*/
/*    box-shadow:0 10px 25px rgba(0,0,0,0.08);*/
/*}*/

/*.post-img{*/
/*    height:260px;*/
/*    object-fit:cover;*/
/*}*/

/*.caption{*/
/*    font-size:0.9rem;*/
/*    color:#555;*/
/*}*/

/*.section-title{*/
/*    font-weight:600;*/
/*}*/

/*.skills-badge{*/
/*    margin:3px;*/
/*    font-size:0.85rem;*/
/*}*/

/*.btn-modern{*/
/*    border-radius:50px;*/
/*    padding:8px 18px;*/
/*}*/

/*.gallery-title{*/
/*    font-weight:600;*/
/*    margin:40px 0 20px;*/
/*}*/

/*@media(max-width:768px){*/

/*    .post-img{*/
/*        height:200px;*/
/*    }*/

/*    .profile-img{*/
/*        width:90px;*/
/*        height:90px;*/
/*    }*/

/*}*/