body {
    font-family: "Google Sans Text", Roboto, Arial, Helvetica, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

header {
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
}

.tagline {
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

#heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

h4 {
    font-weight: 400;
    color: #6c757d;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #212529;
}

.divider {
    width: 80px;
    margin: 15px auto 40px;
    height: 3px;
    background-color: #4285f4;
    opacity: 1;
    border: none;
}

.skill-card {
    border: none;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.skill-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.skill-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-text-body {
    padding: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.edu-text {
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.prakhar-box {
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.prakhar-cell {
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.prakhar-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    padding: 5px;
    background: #f8f9fa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.project-card {
    background: #fff;
    border-left: 5px solid #4285f4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
    padding: 0;
}

.large-project-card .col-md-8 {
    padding: 25px;
}

.project-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0 12px 12px 0;
}

.project-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.project-title a,
.project-title-small a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-title a:hover,
.project-title-small a:hover {
    color: #4285f4;
}

.project-duration {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 500;
}

.project-abstract {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.project-members {
    font-size: 0.9rem;
    color: #495057;
    border-top: 1px dashed #eee;
    padding-top: 10px;
    margin-top: 15px;
}

.project-card.project-small {
    padding: 20px;
    border-left: 3px solid #34a853;
}

.project-title-small {
    font-size: 1.25rem;
    font-weight: 600;
}

.project-duration-small,
.project-abstract-small,
.project-members-small {
    font-size: 0.95rem;
    line-height: 1.5;
}


.contact-section {
    background: #f7f7f7;
}

.contact-box {
    padding: 25px 15px;
    border: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-icon {
    font-size: 2rem;
}

.contact-box a {
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

footer {
    font-size: 0.9rem;
}

.blue {
    color: #4285f4;
}

.green {
    color: #34a853;
}

.yellow {
    color: #f9ab00;
}

.red {
    color: #ea4335;
}

.pro {
    color: #ea4335;
    text-decoration: underline;
}

.certification-card {
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.certification-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.cert-badge {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.cert-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
}

.cert-issuer {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 5px;
}

.cert-date {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.25rem;
        line-height: 1.6;
    }

    #heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .edu-text {
        font-size: 1rem;
        margin-top: 20px;
        text-align: center;
    }

    .prakhar-logo {
        margin: 0 auto;
    }

    .row.align-items-center .col-md-6.order-md-2 {
        order: 1;
    }

    .row.align-items-center .col-md-6.order-md-1 {
        order: 2;
    }

    .large-project-card .row {
        flex-direction: column-reverse;
    }

    .large-project-card .col-md-8,
    .large-project-card .col-md-4 {
        width: 100%;
    }

    .large-project-card .col-md-4 {
        padding: 0;
    }

    .large-project-card .project-img {
        border-radius: 0 12px 0 0;
        height: 200px;
    }

    .large-project-card .col-md-8 {
        padding: 15px;
        border-left: none;
        border-top: 3px solid #4285f4;
    }
}