/*==================================================
    DR. HEMANT WANJARE PORTFOLIO
    Professional Academic Theme
==================================================*/


/*==============================
Google Fonts
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==============================
Reset
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:#444;

    background:#f5f7fb;

    line-height:1.7;

}


/*==============================
Theme Colors
==============================*/

:root{

    --primary:#163A63;

    --secondary:#1E4E79;

    --gold:#C9A227;

    --light:#F8F9FC;

    --dark:#13243D;

    --text:#555;

}


/*==============================
Links
==============================*/

a{

    text-decoration:none;

    transition:.3s;

}

/* ==========================================
   NAVBAR
========================================== */

.custom-navbar{
    background: linear-gradient(135deg, #16375B 0%, #1E3A5F 50%, #27496D 100%);
    padding: 14px 0;
}

.navbar-brand{
    font-family:'Poppins',sans-serif;
    font-size:1.5rem;
    font-weight:700;
}

.nav-link{
    color:#ffffff !important;
    margin-left:12px;
    font-weight:500;
    transition:all .3s ease;
}

.nav-link:hover,
.nav-link.active{
    color:#C9A227 !important;
}


/*==============================
Banner
==============================*/

.summary-section{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:#fff;

    padding:90px 0;

}

.summary-section h1{

    font-size:46px;

    font-weight:700;

    margin-bottom:15px;

}

.summary-section p{

    font-size:20px;

    color:#e8e8e8;

}


/*==============================
Common Sections
==============================*/

.hero-section{

    padding:80px 0;

}

.section-title{

    font-size:38px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:15px;

}

.section-subtitle{

    color:#777;

    max-width:800px;

    margin:auto;

}


/*==============================
Profile Image
==============================*/

.profile-image{

    width:320px;

    height:380px;

    object-fit:cover;

    border-radius:20px;

    border:6px solid var(--gold);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}


/*==============================
Buttons
==============================*/

.btn-gold{

    background:var(--gold);

    color:#fff;

    padding:12px 28px;

    border-radius:10px;

    font-weight:600;

}

.btn-gold:hover{

    background:#b58f18;

    color:#fff;

}

.btn-linkedin{

    border:2px solid #fff;

    color:#fff;

    padding:12px 28px;

    border-radius:10px;

    margin-left:15px;

}

.btn-linkedin:hover{

    background:#0A66C2;

    border-color:#0A66C2;

    color:#fff;

}


/*==============================
Summary Box
==============================*/

.summary-box{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    margin-bottom:40px;

}

.summary-box h2{

    color:var(--primary);

    margin-bottom:20px;

    font-weight:700;

}
/*==========================================
   FOOTER
========================================== */

.footer{
    background: linear-gradient(135deg, #16375B 0%, #1E3A5F 50%, #27496D 100%);
    color:#ffffff;
    padding:50px 0 25px;
    margin-top:0;
}

.footer h5{
    color:#ffffff;
    font-weight:700;
    margin-bottom:15px;
}

.footer p{
    color:#e5e7eb;
    margin-bottom:10px;
}

.footer a{
    color:#C9A227;
    text-decoration:none;
}

.footer a:hover{
    color:#ffffff;
}

.footer hr{
    border-color:rgba(255,255,255,.25);
    width:70%;
    margin:25px auto;
}
/*==================================================
                HERO SECTION
==================================================*/

.hero-section{
    padding:80px 0;
    background:#f8fafc;
}

.hero-content h1{
    color:#1E3A5F;
    font-weight:700;
    font-size:3rem;
    margin-bottom:15px;
}

.hero-content h4{
    color:#C9A227;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content p{
    color:#555;
    font-size:18px;
    line-height:1.8;


}

/*==================================================
            ACADEMIC SNAPSHOT
==================================================*/

.academic-snapshot{
    background:#ffffff;
}

.snapshot-card{

    background:#fff;

    padding:35px 25px;

    border-radius:18px;

    text-align:center;

    height:100%;

    border-top:4px solid #C9A227;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:all .35s ease;

}

.snapshot-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.snapshot-card i{

    font-size:42px;

    color:#163A63;

    margin-bottom:20px;

}

.snapshot-card h5{

    font-weight:700;

    color:#163A63;

    margin-bottom:15px;

}

.snapshot-card p{

    color:#666;

    font-size:15px;

    line-height:1.7;

}
/*==================================================
                PROFILE IMAGE
==================================================*/

.profile-image{

    width:320px;
    height:380px;

    object-fit:cover;

    border-radius:20px;

    border:6px solid #C9A227;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

    transition:all .35s ease;
}

.profile-image:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 50px rgba(0,0,0,.22);
}

/*==================================================
                BUTTONS
==================================================*/

.btn-gold{

    background:#C9A227;

    color:#fff;

    border:none;

    padding:12px 30px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

    text-decoration:none;
}

.btn-gold:hover{

    background:#B88E1C;

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.18);
}


/* LinkedIn Button */

.btn-linkedin{

    background:transparent;

    color:#1E3A5F;

    border:2px solid #1E3A5F;

    padding:12px 30px;

    border-radius:10px;

    font-weight:600;

    margin-left:12px;

    transition:.35s;

    text-decoration:none;
}

.btn-linkedin:hover{

    background:#0A66C2;

    border-color:#0A66C2;

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.btn-linkedin i{

    margin-right:8px;
}