:root {
    --primary-color: #4e73df;
    --secondary-color: #2e59d9;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --accent-color: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: #f8fbfe;
}

/* Navigation */
.navbar {
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    background-color: white !important;
    padding: 0.75rem 1rem;
}

.navbar-brand {
    font-weight: 600;
    color: var(--primary-color) !important;
    font-size: 1.2rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: #5a5c69 !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active {
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(78, 115, 223, 0.1);
    right: -100px;
    top: -100px;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(78, 115, 223, 0.1);
    left: -50px;
    bottom: -50px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 0.35rem;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1.5rem 0 rgba(58, 59, 69, 0.2);
}

.card-img-top {
    height: 180px;
    object-fit: cover;
}

/* Skills */
.skill-badge {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5em 0.8em;
    margin: 0.2rem;
    border-radius: 50rem;
}

/* Progress bars */
.progress {
    height: 1rem;
    border-radius: 0.35rem;
    background-color: #eaecf4;
}

.progress-bar {
    background-color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 0.35rem;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Form */
.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d3e2;
    border-radius: 0.35rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
}


.social-links1 a {
    color: var(--primary-color);
    background-color: white;
    font-size: 1.25rem;
    margin: 0 0.5rem;
    transition: all 0.3s;
}
.social-links1 a:hover {
    color: white;
    background-color: royalblue;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        min-height: auto;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}
/* Footer */
 .footer {
            background-color: #212529;
            color: white;
            padding: 1.5rem 0;
            margin-top: 2rem;
        }
        .social-links a {
            color: white;
            margin: 0 0.5rem;
            font-size: 1.1rem;
        }