@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif !important;
}

/* Enhancing Portfolio Section */
.portfolio-section {
    background: #f8f9fc;
}

.portfolio-item {
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.02);
    margin-bottom: 30px;
}

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

.portfolio-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Update text holder style in portfolio */
.portfolio-item .content-holder {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item .text-holder {
    padding: 20px;
    text-align: center;
}

.portfolio-item .title {
    font-weight: 600;
    color: #2c3e50 !important;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.portfolio-item .subtitle {
    color: #6c757d !important;
    font-size: 0.95rem;
    margin: 0;
}

/* Card Enhancements for other sections */
.card {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

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

.card-title {
    font-weight: 600;
    color: #2c3e50;
}

/* Button styles */
.btn-primary {
    border-radius: 8px !important;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,123,255,0.2) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,123,255,0.3) !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6, .section-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Ensure images have rounded corners in sections */
img.w-100.shadow-sm {
    border-radius: 12px;
}
