* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,

* {
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {

    .brand-text{
        display:none;
    }

    .navbar-logo{
        margin-right:0;
    }

    .navbar-brand{
        width:auto;
    }

}

/* Navigation */
.navbar {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.7rem;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    padding: 6rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(120deg, #0f172a, #2d4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary-custom {
    background: #1e3c72;
    border: none;
    border-radius: 40px;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: #0f2b4f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: white;
}

.btn-outline-custom {
    border: 2px solid #1e3c72;
    border-radius: 40px;
    padding: 0.7rem 1.7rem;
    color: #1e3c72;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: #1e3c72;
    color: white;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    border-radius: 4px;
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.project-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.project-card h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.tech-stack {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-stack span {
    background: #eef2ff;
    color: #1e40af;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Skill Categories */
.skill-category {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}

.skill-category i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-items span {
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Form */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.2rem;
}

.info-item h6 {
    margin: 0;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: #64748b;
}

/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .project-card, .skill-category {
        padding: 1.5rem;
    }
}

/* Badge */
.badge-pill {
    background: #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    display: inline-block;
}

/* Add to existing style.css */

/* Navbar Logo */
.navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
    border-radius: 50%;
}

.brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Profile Image */
.profile-image-wrapper {
    position: relative;
}

.profile-image-container {
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.profile-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(102,126,234,0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modern Cards */
.project-card, .skill-category {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.profile-image-container {
    animation: float 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-image-container {
        width: 250px;
        height: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

.project-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.project-card:hover{
    transform:translateY(-6px);
}

.project-image{
    width:100%;
    height:220px;
    overflow:hidden;
    background:#f5f5f5;
    border-radius: 10px;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.project-card:hover .project-image img{
    transform:scale(1.05);
}

.project-content{
    padding:22px;
}

/*==============================

Resume Hero

==============================*/

.resume-hero{

padding:140px 0 80px;

background:linear-gradient(135deg,#f8fbff,#eef4ff);

}

.resume-badge{

display:inline-block;

background:#2563eb;

color:white;

padding:8px 18px;

border-radius:50px;

font-weight:600;

margin-bottom:20px;

}

.resume-title{

font-size:3.3rem;

font-weight:800;

color:#0f172a;

margin-bottom:15px;

}

.resume-subtitle{

font-size:1.4rem;

font-weight:600;

color:#2563eb;

margin-bottom:25px;

}

.resume-description{

font-size:1.08rem;

line-height:1.8;

color:#64748b;

max-width:700px;

}

.resume-buttons{

margin-top:35px;

display:flex;

gap:20px;

flex-wrap:wrap;

}

.resume-image{

width:320px;

height:320px;

margin:auto;

border-radius:50%;

overflow:hidden;

border:6px solid white;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.resume-image img{

width:100%;

height:100%;

object-fit:cover;

}

@media(max-width:992px){

.resume-title{

font-size:2.4rem;

}

.resume-hero{

text-align:center;

}

.resume-buttons{

justify-content:center;

}

.resume-image{

margin-top:40px;

width:260px;

height:260px;

}

}

/*========================

Resume Cards

=========================*/

.resume-details{

padding:80px 0;

}

.resume-section{

padding-bottom:80px;

}

.resume-card{

background:white;

border-radius:20px;

padding:35px;

box-shadow:0 15px 35px rgba(0,0,0,.06);

transition:.35s;

height:100%;

}

.resume-card:hover{

transform:translateY(-6px);

}

.resume-card h3{

margin-bottom:25px;

font-size:28px;

font-weight:700;

color:#1e3c72;

}

.resume-card h3 i{

margin-right:10px;

color:#2563eb;

}

.resume-card p{

line-height:1.9;

color:#64748b;

}

.resume-info{

padding:0;

margin:0;

list-style:none;

}

.resume-info li{

padding:14px 0;

border-bottom:1px solid #eee;

font-size:16px;

}

.resume-info i{

width:35px;

color:#2563eb;

}

.timeline-item h5{

font-weight:700;

margin-bottom:5px;

}

.timeline-item span{

color:#2563eb;

font-weight:600;

display:block;

margin-bottom:15px;

}

.timeline-item ul{

padding-left:18px;

}

.timeline-item li{

margin-bottom:10px;

color:#64748b;

}

/*=========================

Skill Cards

==========================*/

.skill-card{

background:white;

padding:25px;

border-radius:20px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.skill-card:hover{

transform:translateY(-8px);

}

.skill-card h5{

font-weight:700;

margin-bottom:18px;

}

.progress{

height:12px;

border-radius:50px;

background:#e2e8f0;

overflow:hidden;

}

.progress-bar{

height:100%;

border-radius:50px;

background:linear-gradient(90deg,#2563eb,#7c3aed);

animation:grow 2s ease;

}

.python{

width:95%;

}

.ml{

width:90%;

}

.dl{

width:85%;

}

.flask{

width:92%;

}

.powerbi{

width:80%;

}

.docker{

width:75%;

}

.aws{

width:70%;

}

.cpp{

width:60%;

}

.oop{

width:70%;

}

@keyframes grow{

0%{

width:0;

}

}

/* =========================
Featured Projects
========================= */

.project-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.project-content{

    padding:25px;

}

.project-content h4{

    font-weight:700;

    margin-bottom:15px;

}

.project-content p{

    color:#64748b;

    line-height:1.7;

}

.tech-tag{

    display:inline-block;

    background:#eef4ff;

    color:#2563eb;

    padding:6px 12px;

    border-radius:20px;

    font-size:14px;

    margin:5px 5px 0 0;

    font-weight:600;

}

/*=========================
Certificates
==========================*/

.certificate-item{

    padding:18px;

    border-left:5px solid #2563eb;

    background:#f8fbff;

    border-radius:12px;

    margin-top:15px;

}

.certificate-item h5{

    margin-bottom:6px;

    font-weight:700;

}

.certificate-item span{

    color:#64748b;

}

/*=========================
Achievements
==========================*/

.achievement-list{

    padding-left:20px;

}

.achievement-list li{

    margin-bottom:15px;

    color:#64748b;

    line-height:1.7;

}

/*=========================
Resume CTA
==========================*/

.resume-cta{

    background:linear-gradient(135deg,#2563eb,#1e3a8a);

    color:#fff;

    text-align:center;

    padding:90px 20px;

}

.resume-cta h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:20px;

}

.resume-cta p{

    max-width:700px;

    margin:0 auto 35px;

    font-size:18px;

    opacity:.95;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline-light{

    border:2px solid #fff;

    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:#2563eb;

}