/*=========================================
Tanvina Portfolio
Version : 2.0
Author : ChatGPT
==========================================*/

/*=========================
Google Font
==========================*/

:root{

    --primary:#B76E4D;
    --primary-dark:#9d5c3f;

    --dark:#1D1D1F;
    --heading:#111111;

    --text:#666666;

    --bg:#F8F6F3;

    --white:#ffffff;

    --border:#E8E4DF;

    --shadow:0 20px 60px rgba(0,0,0,.08);

    --radius:20px;

    --transition:.35s ease;

}

/*=========================
Reset
==========================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

section{

    padding:100px 0;

}

.container{

    max-width:1240px;

}

/*=========================
Typography
==========================*/

h1,h2,h3,h4,h5{

    font-family:'Manrope',sans-serif;
    color:var(--heading);

}

p{

    line-height:1.9;

}

/*=========================
Navbar
==========================*/

.custom-navbar{

    padding:22px 0;
    transition:.35s;
    z-index:999;

}

.custom-navbar.scrolled{

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(16px);

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    padding:14px 0;

}

.navbar-brand{

    font-size:34px;

    font-weight:800;

    font-family:'Manrope';

    color:var(--dark)!important;

}

.navbar-brand span{

    color:var(--primary);

}

.nav-link{

    color:#444!important;

    margin:0 16px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    bottom:-6px;

    left:0;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}

.resume-btn{

    padding:14px 28px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.resume-btn:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 20px 40px rgba(183,110,77,.25);

}

.navbar-toggler{

    font-size:30px;

}

/*=========================
Hero
==========================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:rgba(183,110,77,.08);

    border-radius:50%;

    right:-200px;

    top:-200px;

    filter:blur(30px);

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    padding:10px 18px;

    border-radius:50px;

    box-shadow:var(--shadow);

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h5{

    font-size:22px;

    color:var(--primary);

    margin-bottom:12px;

}

.hero h1{

    font-size:76px;

    font-weight:800;

    line-height:1.05;

}

.hero h1 span{

    color:var(--primary);

}

.hero h2{

    font-size:34px;

    margin-top:18px;

    margin-bottom:22px;

    color:#444;

}

.hero p{

    max-width:540px;

    font-size:18px;

    margin-bottom:40px;

}

/*=================================
ABOUT
=================================*/

.about-section{

padding:120px 0;

background:#fff;

}

.section-tag{

display:inline-block;

letter-spacing:2px;

font-size:13px;

font-weight:700;

color:var(--primary);

margin-bottom:12px;

}

.section-title{

font-size:48px;

margin-bottom:25px;

}

.about-text{

font-size:17px;

margin-bottom:18px;

max-width:680px;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:28px;

box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.experience-badge{

position:absolute;

left:-25px;

bottom:40px;

background:#fff;

padding:22px;

border-radius:18px;

box-shadow:var(--shadow);

text-align:center;

}

.experience-badge h3{

font-size:42px;

margin:0;

color:var(--primary);

}

.experience-badge span{

font-size:13px;

font-weight:600;

display:block;

margin-top:4px;

}

.info-card{

display:flex;

align-items:center;

gap:18px;

padding:22px;

border-radius:18px;

background:#fafafa;

transition:.35s;

border:1px solid var(--border);

}

.info-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow);

}

.info-card i{

width:60px;

height:60px;

background:rgba(183,110,77,.1);

border-radius:16px;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

color:var(--primary);

}

.info-card h5{

margin-bottom:4px;

font-size:18px;

}

.info-card span{

font-size:14px;

}

.personal-info{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.info-item{

display:flex;

align-items:center;

gap:12px;

font-weight:500;

}

.info-item i{

color:var(--primary);

font-size:20px;

}

@media(max-width:991px){

.section-title{

font-size:36px;

}

.personal-info{

grid-template-columns:1fr;

}

.experience-badge{

left:15px;

bottom:15px;

}

}

/*=========================
Buttons
==========================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-main{

    background:var(--primary);

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-main:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*=========================
Social
==========================*/

.social-icons{

    display:flex;

    gap:16px;

    margin-top:45px;

}

.social-icons a{

    width:52px;

    height:52px;

    background:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-size:20px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.social-icons a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-6px);

}

/*=========================
Hero Image
==========================*/

.hero-image{

    position:relative;

    text-align:center;

}

.image-bg{

    position:absolute;

    width:480px;

    height:480px;

    background:linear-gradient(135deg,#EEDFD8,#F8F6F3);

    border-radius:50%;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

}

.hero-image img{

    position:relative;

    z-index:2;

    width:460px;

    height:620px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:0 40px 80px rgba(0,0,0,.15);

}

/*=========================
Floating Card
==========================*/

.experience-card{

    position:absolute;

    right:20px;

    bottom:40px;

    background:#fff;

    padding:20px 30px;

    border-radius:20px;

    box-shadow:var(--shadow);

    z-index:3;

    animation:float 3s ease-in-out infinite;

}

.experience-card h3{

    font-size:42px;

    color:var(--primary);

    margin-bottom:4px;

}

.experience-card p{

    margin:0;

    font-size:14px;

    font-weight:600;

}

/*=========================
Animation
==========================*/

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=========================
Responsive
==========================*/

@media(max-width:991px){

.hero{

padding-top:140px;

text-align:center;

}

.hero h1{

font-size:58px;

}

.hero h2{

font-size:28px;

}

.hero p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.social-icons{

justify-content:center;

}

.hero-image{

margin-top:70px;

}

.hero-image img{

width:340px;

height:470px;

}

.image-bg{

width:360px;

height:360px;

}

}

@media(max-width:576px){

.hero h1{

font-size:44px;

}

.hero h2{

font-size:24px;

}

.hero-image img{

width:300px;

height:400px;

}

.image-bg{

width:300px;

height:300px;

}

.resume-btn{

display:none;

}

}

/*==================================
CAREER JOURNEY
==================================*/

.journey-section{

padding:120px 0;

background:#f8f6f3;

}

.timeline{

position:relative;

max-width:1100px;

margin:auto;

padding:50px 0;

}

.timeline::before{

content:"";

position:absolute;

left:50%;

top:0;

transform:translateX(-50%);

width:3px;

height:100%;

background:#ddd;

}

.timeline-item{

width:50%;

padding:25px 50px;

position:relative;

}

.timeline-item.left{

left:0;

text-align:right;

}

.timeline-item.right{

left:50%;

}

.timeline-item::before{

content:"";

position:absolute;

top:45px;

width:18px;

height:18px;

background:var(--primary);

border-radius:50%;

border:5px solid #fff;

box-shadow:0 0 0 5px rgba(183,110,77,.15);

z-index:2;

}

.timeline-item.left::before{

right:-9px;

}

.timeline-item.right::before{

left:-9px;

}

.timeline-content{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:var(--shadow);

transition:.35s;

}

.timeline-content:hover{

transform:translateY(-8px);

}

.timeline-date{

display:inline-block;

margin-bottom:12px;

font-size:13px;

font-weight:700;

letter-spacing:1px;

color:var(--primary);

}

.timeline-content h4{

margin-bottom:6px;

}

.timeline-content h6{

margin-bottom:16px;

color:#777;

font-weight:600;

}

.timeline-content p{

margin:0;

}

@media(max-width:991px){

.timeline::before{

left:20px;

}

.timeline-item{

width:100%;

padding-left:60px;

padding-right:0;

text-align:left!important;

left:0!important;

margin-bottom:30px;

}

.timeline-item::before{

left:11px!important;

right:auto;

}

}

/*=========================
Statistics
==========================*/

.stats-section{

padding:80px 0;

background:#fff;

}

.stat-card{

background:#fff;

padding:45px 20px;

border-radius:24px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

height:100%;

}

.stat-card:hover{

transform:translateY(-10px);

}

.stat-card h2{

font-size:58px;

color:var(--primary);

font-weight:800;

margin-bottom:12px;

}

.stat-card span{

font-size:17px;

font-weight:500;

color:#666;

}

/*=================================
SKILLS
=================================*/

.skills-section{

padding:120px 0;

background:#F8F6F3;

}

.section-subtitle{

max-width:650px;

margin:20px auto 0;

font-size:17px;

}

.skill-card{

background:#fff;

padding:40px 30px;

border-radius:24px;

height:100%;

transition:.4s;

border:1px solid var(--border);

position:relative;

overflow:hidden;

}

.skill-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:0;

height:4px;

background:var(--primary);

transition:.35s;

}

.skill-card:hover::before{

width:100%;

}

.skill-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.skill-icon{

width:75px;

height:75px;

background:rgba(183,110,77,.1);

border-radius:22px;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

color:var(--primary);

margin-bottom:28px;

transition:.35s;

}

.skill-card:hover .skill-icon{

background:var(--primary);

color:#fff;

transform:rotate(-8deg);

}

.skill-card h4{

margin-bottom:20px;

font-size:24px;

}

.skill-card ul{

padding-left:18px;

margin:0;

}

.skill-card li{

margin-bottom:12px;

color:#666;

}

/*=================================
EDUCATION
=================================*/

.education-section{

padding:120px 0;

background:#fff;

}

.education-card{

display:flex;

gap:25px;

padding:30px;

background:#fff;

border:1px solid var(--border);

border-radius:24px;

margin-bottom:25px;

transition:.35s;

}

.education-card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow);

}

.edu-year{

width:80px;

height:80px;

background:rgba(183,110,77,.1);

display:flex;

align-items:center;

justify-content:center;

border-radius:18px;

font-weight:700;

color:var(--primary);

font-size:22px;

flex-shrink:0;

}

.edu-content h4{

font-size:24px;

margin-bottom:8px;

}

.edu-content h6{

color:#666;

margin-bottom:12px;

}

.edu-grade{

display:inline-block;

margin-top:12px;

padding:8px 14px;

background:#F8F6F3;

border-radius:50px;

font-size:14px;

font-weight:600;

color:var(--primary);

}

/*========================*/

.certificate-card{

background:#fff;

border:1px solid var(--border);

padding:35px 25px;

border-radius:22px;

text-align:center;

height:100%;

transition:.35s;

}

.certificate-card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow);

}

.certificate-card i{

font-size:42px;

color:var(--primary);

margin-bottom:20px;

display:block;

}

.certificate-card h5{

margin-bottom:10px;

}

.certificate-card p{

margin:0;

font-size:15px;

}

@media(max-width:991px){

.education-card{

flex-direction:column;

}

}

/*=================================
BLOG
=================================*/

.blog-section{

padding:120px 0;

background:#F8F6F3;

}

.blog-card{

background:#fff;

border-radius:24px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.35s;

height:100%;

}

.blog-card:hover{

transform:translateY(-10px);

}

.blog-image{

position:relative;

overflow:hidden;

}

.blog-image img{

height:260px;

object-fit:cover;

transition:.45s;

}

.blog-card:hover img{

transform:scale(1.08);

}

.blog-category{

position:absolute;

top:20px;

left:20px;

background:var(--primary);

color:#fff;

padding:8px 16px;

border-radius:50px;

font-size:13px;

font-weight:600;

}

.blog-content{

padding:30px;

}

.blog-meta{

display:flex;

gap:20px;

font-size:14px;

color:#777;

margin-bottom:18px;

}

.blog-meta i{

margin-right:6px;

color:var(--primary);

}

.blog-content h4{

margin-bottom:18px;

line-height:1.4;

}

.blog-content p{

margin-bottom:25px;

}

.read-more{

display:inline-flex;

align-items:center;

gap:10px;

color:var(--primary);

font-weight:600;

}

.read-more i{

transition:.3s;

}

.read-more:hover i{

transform:translateX(6px);

}

/*=================================
CONTACT
=================================*/

.contact-section{

padding:120px 0;

background:#fff;

}

.contact-info{

display:flex;

flex-direction:column;

gap:25px;

}

.contact-item{

display:flex;

align-items:center;

gap:20px;

padding:25px;

background:#fff;

border-radius:22px;

box-shadow:var(--shadow);

transition:.35s;

}

.contact-item:hover{

transform:translateX(10px);

}

.contact-icon{

width:65px;

height:65px;

display:flex;

justify-content:center;

align-items:center;

background:rgba(183,110,77,.12);

border-radius:18px;

font-size:24px;

color:var(--primary);

}

.contact-item h5{

margin-bottom:5px;

}

.contact-item p{

margin:0;

}

.contact-form{

background:#fff;

padding:45px;

border-radius:28px;

box-shadow:var(--shadow);

}

.form-control{

padding:16px 20px;

border-radius:14px;

border:1px solid var(--border);

box-shadow:none!important;

}

.form-control:focus{

border-color:var(--primary);

}

/*=================================
FOOTER
=================================*/

.footer{

padding:70px 0;

background:#161616;

color:#ddd;

}

.footer-logo{

color:#fff;

margin-bottom:10px;

}

.footer-logo span{

color:var(--primary);

}

.footer-social{

display:flex;

justify-content:flex-end;

gap:15px;

margin-bottom:20px;

}

.footer-social a{

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

background:#222;

border-radius:50%;

color:#fff;

transition:.35s;

}

.footer-social a:hover{

background:var(--primary);

}

@media(max-width:991px){

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

margin-top:30px;

}

.contact-form{

padding:30px;

}

}