/*==================================================
        GOWTHAMI PORTFOLIO
        VERSION 2.0
==================================================*/

/*================ GOOGLE FONT ================*/

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

/*================ ROOT VARIABLES ================*/

html{
    scroll-behavior:smooth;
}
:root{

    --primary:#E11D48;
    --primary-light:#ff4d73;

    --black:#0A0A0A;
    --card:#151515;
    --card2:#1E1E1E;

    --white:#FFFFFF;
    --gray:#B8B8B8;

    --border:#2C2C2C;

    --radius:20px;

    --shadow:0 18px 45px rgba(0,0,0,.45);

    --transition:.35s ease;

}

/*================ RESET ================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--black);
    color:var(--white);

    line-height:1.7;

    overflow-x:hidden;

}

/*================ GLOBAL =================*/

img{

    width:100%;
    display:block;

}

a{

    color:inherit;
    text-decoration:none;

}

ul{

    list-style:none;

}

section{

    width:100%;
    padding:100px 8%;

}

.section-heading{

    text-align:center;
    margin-bottom:70px;

}

.section-heading span{

    color:var(--primary);

    font-weight:600;

    letter-spacing:2px;

    font-size:.95rem;

}

.section-heading h2{

    font-size:2.8rem;

    margin-top:10px;

}

/*================ SCROLLBAR ================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-light);

}

/*================ SELECTION ================*/

::selection{

    background:var(--primary);
    color:#fff;

}

/*================ BUTTONS ================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;

}

.primary-btn{

    background:var(--primary);

    color:#fff;

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(225,29,72,.35);

}

.secondary-btn{

    border:2px solid var(--primary);

    color:#fff;

}

.secondary-btn:hover{

    background:var(--primary);

}

/*================ COMMON CARDS ================*/

.dashboard-card,
.project-card,
.education-card,
.certificate-card,
.about-content,
.contact-info,
.contact-form,
.timeline-content{

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    box-shadow:var(--shadow);

}

/*================ LOADER ================*/

.loader{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#000;

    z-index:9999;

}

.loader span{

    width:60px;
    height:60px;

    border-radius:50%;

    border:5px solid #333;

    border-top:5px solid var(--primary);

    animation:spin 1s linear infinite;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/*================ PROGRESS BAR ================*/

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:var(--primary);

    z-index:9999;

}

/*================ BACK TO TOP ================*/

#topBtn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    display:none;

    transition:.3s;

    z-index:500;

}

#topBtn:hover{

    transform:translateY(-5px);

}

/*==================================================
                HEADER
==================================================*/

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:.35s ease;

    background:rgba(10,10,10,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar{

    max-width:1400px;

    margin:auto;

    padding:18px 7%;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/*================ LOGO ================*/

.logo{

    font-size:1.9rem;

    font-weight:800;

    color:#fff;

    cursor:pointer;

    letter-spacing:.5px;

    transition:.3s;

}

.logo span{

    color:var(--primary);

}

.logo:hover{

    transform:scale(1.03);

}

/*================ NAVIGATION ================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-links li{

    list-style:none;

}

.nav-links li a{

    position:relative;

    color:#fff;

    font-size:1rem;

    font-weight:500;

    transition:.3s;

    padding-bottom:5px;

}

.nav-links li a:hover{

    color:var(--primary);

}

.nav-links li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-links li a:hover::after{

    width:100%;

}

/*================ MENU BUTTON ================*/

.menu-btn{

    display:none;

    color:#fff;

    font-size:2rem;

    cursor:pointer;

    transition:.3s;

}

.menu-btn:hover{

    color:var(--primary);

    transform:rotate(90deg);

}

/*================ STICKY HEADER ================*/

header.sticky{

    background:rgba(8,8,8,.97);

    box-shadow:0 10px 30px rgba(0,0,0,.45);

}

/*================ ACTIVE LINK ================*/

.nav-links a.active{

    color:var(--primary);

}

.nav-links a.active::after{

    width:100%;

}

/*================ MOBILE MENU ================*/

@media(max-width:768px){

.navbar{

    padding:18px 20px;

}

.logo{

    font-size:1.55rem;

}

.menu-btn{

    display:block;

    z-index:1002;

}

.nav-links{

    position:fixed;

    top:78px;

    right:-100%;

    width:260px;

    height:calc(100vh - 78px);

    background:#111;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    padding-top:45px;

    gap:30px;

    transition:.35s;

    border-left:1px solid rgba(255,255,255,.08);

}

.nav-links.active{

    right:0;

}

.nav-links li a{

    font-size:1.1rem;

}

}

/*==================================================
                HERO SECTION
==================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    padding:140px 8% 80px;

}

.hero-content{

    flex:1;

    max-width:650px;

}

.hero-tag{

    display:inline-block;

    color:var(--primary);

    font-size:1rem;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:15px;

}

.hero h1{

    font-size:4.2rem;

    line-height:1.15;

    margin-bottom:15px;

    font-weight:800;

}

.hero h1 span{

    color:var(--primary);

}

.hero h3{

    font-size:2rem;

    font-weight:600;

    color:#ddd;

    margin-bottom:25px;

    min-height:55px;

}

.typing-text{

    color:var(--primary);

    white-space:normal;

    word-wrap:break-word;

    overflow-wrap:break-word;

    line-height:1.5;

}

.hero-text{

    color:var(--gray);

    font-size:1.05rem;

    line-height:1.9;

    margin-bottom:35px;

    max-width:600px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    min-width:210px;

    height:55px;

    font-size:1rem;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.profile-card{

    width:380px;

    height:470px;

    border-radius:28px;

    overflow:hidden;

    border:2px solid rgba(255,255,255,.08);

    background:linear-gradient(145deg,#171717,#0d0d0d);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

    transition:.4s ease;

}

.profile-card:hover{

    transform:translateY(-8px);

    box-shadow:0 35px 70px rgba(225,29,72,.25);

}

.profile-card img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(225,29,72,.08);

    filter:blur(120px);

    right:0;

    top:100px;

    z-index:-1;

}

.hero::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(255,255,255,.03);

    filter:blur(100px);

    left:-80px;

    bottom:50px;

    z-index:-1;

}
/*==================================================
            HERO RESPONSIVE
==================================================*/

/* Laptop */

@media(max-width:1200px){

.hero{

    gap:50px;

}

.hero h1{

    font-size:3.6rem;

}

.profile-card{

    width:330px;

    height:430px;

}

}

/* Tablet */

@media(max-width:992px){

.hero{

    flex-direction:column-reverse;

    justify-content:center;

    text-align:center;

    gap:40px;

    padding:130px 6% 70px;

}

.hero-content{

    max-width:100%;

}

.hero-text{

    margin:auto auto 35px;

}

.hero-buttons{

    justify-content:center;

}

.profile-card{

    width:320px;

    height:410px;

}

}

/* Mobile */

@media(max-width:768px){

.hero{

    min-height:auto;

    flex-direction:column-reverse;

    gap:30px;

    padding:100px 20px 50px;

}

.hero-content{

    width:100%;

    max-width:100%;

}

.hero h1{

    font-size:2.7rem;

    line-height:1.2;

}

.hero h3{

    font-size:1.4rem;

    min-height:50px;

}

.typing-text{

    white-space:normal;

    word-break:break-word;

    overflow-wrap:anywhere;

}

.hero-text{

    font-size:1rem;

    line-height:1.8;

}

.hero-buttons{

    flex-direction:column;

    align-items:center;

    width:100%;

}

.hero-buttons .btn{

    width:230px;

}

.profile-card{

    width:270px;

    height:350px;

}

}

/* 430px */

@media(max-width:430px){

.hero{

    padding-top:90px;

}

.hero h1{

    font-size:2.4rem;

}

.hero h3{

    font-size:1.25rem;

}

.profile-card{

    width:245px;

    height:320px;

}

}

/* 393px */

@media(max-width:393px){

.hero{

    padding-top:85px;

}

.hero h1{

    font-size:2.2rem;

}

.hero h3{

    font-size:1.15rem;

}

.hero-text{

    font-size:.95rem;

}

.hero-buttons .btn{

    width:210px;

}

.profile-card{

    width:230px;

    height:300px;

}

}

/* 360px */

@media(max-width:360px){

.hero h1{

    font-size:2rem;

}

.hero h3{

    font-size:1.05rem;

}

.hero-text{

    font-size:.9rem;

}

.profile-card{

    width:215px;

    height:285px;

}

.hero-buttons .btn{

    width:200px;

}

}

/* 320px */

@media(max-width:320px){

.hero h1{

    font-size:1.8rem;

}

.hero h3{

    font-size:1rem;

}

.profile-card{

    width:190px;

    height:255px;

}

.hero-buttons .btn{

    width:180px;

}

}

/*==================================================
                DASHBOARD
==================================================*/

.dashboard{

    padding:80px 8%;

}

.dashboard-title{

    text-align:center;

    margin-bottom:55px;

}

.dashboard-title h2{

    font-size:2.4rem;

    font-weight:700;

    color:#fff;

}

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.dashboard-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:30px 20px;

    text-align:center;

    transition:.35s;

    backdrop-filter:blur(15px);

    min-height:190px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.dashboard-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(225,29,72,.20);

}

.dashboard-card i{

    font-size:2.4rem;

    color:var(--primary);

    margin-bottom:18px;

}

.dashboard-card h2{

    font-size:2rem;

    color:#fff;

    margin-bottom:10px;

    font-weight:700;

    word-break:break-word;

}

.dashboard-card p{

    color:var(--gray);

    font-size:.95rem;

    line-height:1.6;

}

/*================ Laptop ================*/

@media(max-width:1200px){

.dashboard-grid{

    gap:20px;

}

}

/*================ Tablet ================*/

@media (max-width:992px){

    .dashboard-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/*================ Mobile ================*/

@media (max-width:768px){

    .dashboard{
        padding:70px 20px;
    }

    .dashboard-title h2{
        font-size:2rem;
    }

    .dashboard-grid{
    grid-template-columns:repeat(2,minmax(165px,1fr));
    gap:16px;
}

    .dashboard-card{
        min-height:170px;
        padding:20px 12px;
    }

    .dashboard-card i{
        font-size:2rem;
    }

    .dashboard-card h2{

    font-size:1.5rem;
    line-height:1.25;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

}

    .dashboard-card p{
        font-size:.9rem;
    }

}

/*================ 430px ================*/

@media (max-width:430px){

    .dashboard-grid{
        gap:12px;
    }

    .dashboard-card{
        min-height:165px;
    }

    .dashboard-card h2{
        font-size:1.55rem;
    }

}

/*================ 393px ================*/

@media (max-width:393px){

    .dashboard-card{
        padding:18px 10px;
        min-height:160px;
    }

    .dashboard-card h2{
        font-size:1.45rem;
    }

    .dashboard-card p{
        font-size:.82rem;
    }

}

/*================ 360px ================*/

@media (max-width:360px){

    .dashboard-grid{
        gap:10px;
    }

    .dashboard-card{
        min-height:155px;
        padding:16px 8px;
    }

    .dashboard-card i{
        font-size:1.8rem;
    }

    .dashboard-card h2{
        font-size:1.3rem;
    }

    .dashboard-card p{
        font-size:.78rem;
    }

}

/*================ 320px ================*/

@media (max-width:320px){

    .dashboard-grid{
        grid-template-columns:1fr;
    }

    .dashboard-card{
        min-height:150px;
    }

}
/*==================================================
                ABOUT
==================================================*/

.about{

    padding:100px 8%;

}

.about-container{

    display:grid;

    grid-template-columns:340px 1fr;

    gap:60px;

    align-items:center;

}

.about-image{

    display:flex;

    justify-content:center;

}

.image-card{

    width:320px;

    height:420px;

    overflow:hidden;

    border-radius:25px;

    border:2px solid rgba(255,255,255,.08);

    background:#181818;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

    transition:.35s;

}

.image-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(225,29,72,.20);

}

.image-card img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.about-content{

    padding:35px;

}

.about-content h3{

    font-size:2rem;

    margin-bottom:20px;

    line-height:1.4;

}

.about-content h3 span{

    color:var(--primary);

}

.about-content p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:20px;

    text-align:justify;

}

.about-details{

    margin-top:35px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.detail-box{

    background:rgba(255,255,255,.04);

    padding:18px;

    border-radius:15px;

    border:1px solid rgba(255,255,255,.06);

    transition:.3s;

}

.detail-box:hover{

    border-color:var(--primary);

    transform:translateY(-4px);

}

.detail-box h4{

    color:var(--primary);

    margin-bottom:8px;

    font-size:1rem;

}

.detail-box p{

    margin:0;

    color:#fff;

    word-break:break-word;

}

/*============== Tablet ==============*/

@media(max-width:992px){

.about-container{

    grid-template-columns:1fr;

    text-align:center;

}

.about-image{

    margin-bottom:25px;

}

.about-content{

    padding:30px;

}

.about-details{

    grid-template-columns:repeat(2,1fr);

}

}

/*============== Mobile ==============*/

@media(max-width:768px){

.about{

    padding:80px 20px;

}

.about-content{

    padding:25px;

}

.about-content h3{

    font-size:1.7rem;

}

.about-content p{

    text-align:left;

}

.image-card{

    width:270px;

    height:350px;

}

.about-details{

    grid-template-columns:1fr;

}

}

/*============== 393px ==============*/

@media(max-width:393px){

.image-card{

    width:240px;

    height:310px;

}

.about-content{

    padding:20px;

}

.about-content h3{

    font-size:1.5rem;

}

}

/*============== 360px ==============*/

@media(max-width:360px){

.image-card{

    width:220px;

    height:290px;

}

.about-content{

    padding:18px;

}

.about-content h3{

    font-size:1.4rem;

}

}

/*==================================================
                EXPERIENCE
==================================================*/

.experience{

    padding:100px 8%;

    position:relative;

}

.experience-container{

    max-width:1000px;

    margin:auto;

}

.experience-card{

    display:grid;

    grid-template-columns:220px 1fr;

    gap:40px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:38px;

    transition:.35s ease;

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.experience-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(225,29,72,.20);

}

.experience-year{

    display:flex;

    justify-content:center;

    align-items:flex-start;

}

.experience-year span{

    background:linear-gradient(135deg,var(--primary),#ff5c82);

    color:#fff;

    padding:12px 22px;

    border-radius:40px;

    font-size:.95rem;

    font-weight:600;

    letter-spacing:.5px;

}

.experience-content h3{

    font-size:1.8rem;

    margin-bottom:8px;

    color:#fff;

    line-height:1.4;

}

.experience-content h4{

    color:var(--primary);

    margin-bottom:18px;

    font-size:1.1rem;

    font-weight:600;

}

.experience-content p{

    color:#c7c7c7;

    line-height:1.9;

    font-size:1rem;

}

.experience-tags{

    margin-top:25px;

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.experience-tags span{

    background:rgba(225,29,72,.12);

    color:var(--primary);

    padding:9px 18px;

    border-radius:30px;

    font-size:.88rem;

    font-weight:500;

    transition:.3s;

}

.experience-tags span:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

/*============== Tablet ==============*/

@media(max-width:992px){

.experience{

    padding:90px 6%;

}

.experience-card{

    grid-template-columns:1fr;

    text-align:center;

    gap:28px;

}

.experience-year{

    justify-content:center;

}

.experience-tags{

    justify-content:center;

}

}

/*============== Mobile ==============*/

@media(max-width:768px){

.experience{

    padding:80px 20px;

}

.experience-card{

    padding:28px 22px;

}

.experience-content h3{

    font-size:1.5rem;

}

.experience-content h4{

    font-size:1rem;

}

.experience-content p{

    font-size:.95rem;

}

}

/*============== 393px ==============*/

@media(max-width:393px){

.experience-card{

    padding:24px 18px;

}

.experience-content h3{

    font-size:1.35rem;

}

.experience-content p{

    font-size:.9rem;

}

.experience-tags span{

    font-size:.8rem;

    padding:8px 14px;

}

}

/*============== 360px ==============*/

@media(max-width:360px){

.experience{

    padding:70px 16px;

}

.experience-card{

    padding:20px 16px;

}

.experience-content h3{

    font-size:1.2rem;

}

.experience-content h4{

    font-size:.95rem;

}

.experience-content p{

    font-size:.88rem;

    line-height:1.7;

}

.experience-year span{

    font-size:.82rem;

    padding:10px 18px;

}

}
/*=========== Mobile ===========*/

@media(max-width:768px){

.experience{

    padding:80px 20px;

}

.experience-card{

    padding:25px;

}

.experience-content h3{

    font-size:1.6rem;

}

.experience-content h4{

    font-size:1rem;

}

.experience-content p{

    font-size:.95rem;

}

}

/*=========== 393px ===========*/

@media(max-width:393px){

.experience-card{

    padding:20px;

}

.experience-year span{

    font-size:.9rem;

}

.experience-content h3{

    font-size:1.45rem;

}

}

/*=========== 360px ===========*/

@media(max-width:360px){

.experience-content h3{

    font-size:1.3rem;

}

.experience-content p{

    font-size:.9rem;

}

.experience-tags span{

    font-size:.8rem;

    padding:8px 14px;

}

}

/*==================================================
            EDUCATION
==================================================*/

.education-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.education-card{

    text-align:center;

    padding:40px 30px;

    transition:.35s;

}

.education-card:hover{

    transform:translateY(-10px);

    border:1px solid var(--primary);

}

.education-card i{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:20px;

}

.education-card h3{

    margin-bottom:15px;

    font-size:1.4rem;

}

.education-card h4{

    color:var(--gray);

    margin-bottom:15px;

}

.education-card p{

    color:var(--gray);

    margin-bottom:10px;

}

.education-card h2{

    font-size:2.5rem;

    color:var(--primary);

}

/*==================================================
                SKILLS
==================================================*/

.skills{

    padding:100px 8%;

}

.skills-container{

    max-width:900px;

    margin:auto;

}

.skill{

    margin-bottom:30px;

}

.skill-info{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:10px;

}

.skill-info span{

    color:#fff;

    font-size:1rem;

    font-weight:600;

}

.progress-bar{

    width:100%;

    height:14px;

    background:#202020;

    border-radius:30px;

    overflow:hidden;

}

.progress{

    height:100%;

    border-radius:30px;

    background:linear-gradient(90deg,var(--primary),#ff6b8a);

    animation:progressAnimation 2s ease forwards;

}

.powerbi{

    width:95%;

}

.sql{

    width:90%;

}

.excel{

    width:95%;

}

.dax{

    width:90%;

}

.query{

    width:88%;

}

.flutter{

    width:80%;

}

.html{

    width:85%;

}

.cpp{

    width:75%;

}

@keyframes progressAnimation{

    from{

        width:0;

    }

}

/*============= Tablet =============*/

@media(max-width:992px){

.skills{

    padding:90px 6%;

}

}

/*============= Mobile =============*/

@media(max-width:768px){

.skills{

    padding:80px 20px;

}

.skill{

    margin-bottom:25px;

}

.skill-info span{

    font-size:.95rem;

}

.progress-bar{

    height:12px;

}

}

/*============= 393px =============*/

@media(max-width:393px){

.skill-info span{

    font-size:.9rem;

}

}

/*============= 360px =============*/

@media(max-width:360px){

.skill-info span{

    font-size:.85rem;

}

.progress-bar{

    height:10px;

}

}
/*==================================================
                EXPERTISE
==================================================*/

.services{
    padding:100px 8%;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.service-card{

    background:rgba(255,255,255,.04);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px 28px;

    transition:.35s ease;

    box-shadow:0 18px 40px rgba(0,0,0,.25);

    min-height:280px;

    display:flex;
    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(225,29,72,.20);

}

.service-card i{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:20px;

}

.service-card h3{

    font-size:1.45rem;

    margin-bottom:18px;

    color:#fff;

}

.service-card p{

    color:#c6c6c6;

    line-height:1.8;

    flex:1;

}

/*================ Tablet ================*/

@media(max-width:992px){

.services-container{

grid-template-columns:repeat(2,1fr);

}

}

/*================ Mobile ================*/

@media(max-width:768px){

.services{

padding:80px 20px;

}

.services-container{

grid-template-columns:1fr;

gap:22px;

}

.service-card{

padding:28px 22px;

min-height:auto;

}

.service-card h3{

font-size:1.3rem;

}

}

/*================ 393px ================*/

@media(max-width:393px){

.service-card{

padding:24px 18px;

}

.service-card i{

font-size:2.5rem;

}

.service-card h3{

font-size:1.2rem;

}

.service-card p{

font-size:.92rem;

}

}

/*================ 360px ================*/

@media(max-width:360px){

.service-card{

padding:22px 16px;

}

.service-card h3{

font-size:1.1rem;

}

.service-card p{

font-size:.88rem;

line-height:1.7;

}

}
/*==================================================
                PROJECTS
==================================================*/

.projects{

    padding:100px 8%;

}

.project-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:35px;

}

.project-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    overflow:hidden;

    transition:.35s ease;

    display:flex;

    flex-direction:column;

    height:100%;

    box-shadow:0 18px 45px rgba(0,0,0,.30);

}

.project-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 22px 50px rgba(225,29,72,.20);

}

.project-card img{

    width:100%;

    height:230px;

    object-fit:cover;

    transition:.35s;

}

.project-card:hover img{

    transform:scale(1.05);

}

.project-content{

    padding:28px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.project-number{

    color:var(--primary);

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:12px;

}

.project-content h3{

    font-size:1.5rem;

    margin-bottom:15px;

    line-height:1.4;

}

.project-content p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:22px;

    flex:1;

}

.tech-stack{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:22px;

}

.tech-stack span{

    padding:8px 16px;

    border-radius:30px;

    background:#1d1d1d;

    color:#fff;

    font-size:.85rem;

    transition:.3s;

}

.tech-stack span:hover{

    background:var(--primary);

}

.project-links{

    margin-top:auto;

}

.project-links a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 20px;

    border-radius:30px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.project-links a:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(225,29,72,.35);

}
/*==================================================
        PROJECT RESPONSIVE
==================================================*/

.trip-gallery{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:10px;

    padding:15px;

}

.trip-gallery img{

    width:100%;

    height:170px;

    object-fit:cover;

    border-radius:12px;

    transition:.35s ease;

}

.trip-gallery img:hover{

    transform:scale(1.05);

}

.trip-card .project-content{

    padding:25px;

}

/*=========== Laptop ===========*/

@media(max-width:1200px){

.project-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/*================ Tablet =================*/

@media(max-width:992px){

.project-grid{

    grid-template-columns:1fr;

    gap:35px;

}

.project-card{

    max-width:750px;

    margin:auto;

}

}

/*================ Mobile =================*/

@media(max-width:768px){

.projects{

    padding:80px 20px;

}

.project-grid{

    grid-template-columns:1fr;

    gap:30px;

}

.project-card{

    width:100%;

    border-radius:20px;

}

.project-card img{

    height:240px;

    object-fit:cover;

}

.project-content{

    padding:24px;

}

.project-content h3{

    font-size:1.45rem;

}

.project-content p{

    font-size:1rem;

    line-height:1.8;

}

.tech-stack{

    gap:10px;

}

.tech-stack span{

    font-size:.85rem;

    padding:8px 14px;

}

.project-links{

    margin-top:20px;

}

.project-links a{

    width:100%;

    justify-content:center;

    padding:14px;

    font-size:1rem;

}

.trip-gallery{

    grid-template-columns:repeat(2,1fr);

    gap:10px;

}

.trip-gallery img{

    height:150px;

}

}

/*================ 430px =================*/

@media(max-width:430px){

.project-card img{

    height:220px;

}

.trip-gallery img{

    height:135px;

}

}

/*================ 393px =================*/

@media(max-width:393px){

.project-card img{

    height:210px;

}

.project-content{

    padding:20px;

}

.project-content h3{

    font-size:1.3rem;

}

.project-content p{

    font-size:.95rem;

}

.trip-gallery img{

    height:125px;

}

}

/*================ 360px =================*/

@media(max-width:360px){

.project-card img{

    height:200px;

}

.project-content{

    padding:18px;

}

.project-content h3{

    font-size:1.2rem;

}

.project-content p{

    font-size:.9rem;

}

.trip-gallery{

    grid-template-columns:repeat(2,1fr);

}

.trip-gallery img{

    height:115px;

}

}

/*================ 320px =================*/

@media(max-width:320px){

.project-card img{

    height:180px;

}

.project-content{

    padding:16px;

}

.project-content h3{

    font-size:1.1rem;

}

.project-content p{

    font-size:.85rem;

}

.trip-gallery{

    grid-template-columns:1fr;

}

.trip-gallery img{

    height:170px;

}

}

/*==================================================
                CERTIFICATES
==================================================*/

.certificates{

    padding:100px 8%;

}

.certificate-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.certificate-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    min-height:260px;

}

.certificate-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(225,29,72,.18);

}

.certificate-card a{

    color:#fff;

    text-decoration:none;

    width:100%;

}

.certificate-card i{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:18px;

}

.certificate-card h3{

    line-height:1.5;

    margin-bottom:10px;

    font-size:1.1rem;

}

.certificate-year{

    display:inline-block;

    margin-top:15px;

    background:var(--primary);

    padding:8px 18px;

    border-radius:25px;

    color:#fff;

    font-size:.9rem;

    transition:.3s;

}

.certificate-card:hover .certificate-year{

    transform:scale(1.05);

}

/* Tablet */

@media(max-width:992px){

.certificate-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.certificates{

    padding:80px 20px;

}

.certificate-grid{

    grid-template-columns:1fr;

}

.certificate-card{

    min-height:220px;

    padding:30px 20px;

}

}

@media(max-width:393px){

.certificate-card{

    padding:25px 18px;

}

.certificate-card h3{

    font-size:1rem;

}

}
/*==================================================
                CONTACT
==================================================*/

.contact{

    padding:100px 8%;

}

.contact-container{

    display:flex;

    justify-content:center;

}

.contact-info{

    width:100%;

    max-width:700px;

    text-align:center;

    padding:45px;

}

.contact-info h3{

    font-size:2rem;

    margin-bottom:18px;

}

.contact-info p{

    color:var(--gray);

    line-height:1.8;

}

.info{

    margin:35px 0;

}

.info p{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

}

.info i{

    color:var(--primary);

    font-size:1.3rem;

}

.social-links{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:30px;

}

.social-links a{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#1d1d1d;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:1.4rem;

    transition:.3s;

}

.social-links a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

@media(max-width:768px){

.contact{

    padding:80px 20px;

}

.contact-info{

    padding:30px;

}

}
/*==================================================
                FOOTER
==================================================*/

footer{

    padding:50px 20px;

    text-align:center;

    background:#0b0b0b;

    border-top:1px solid rgba(255,255,255,.08);

}

footer h1{

    font: size 0.5em;rem;

    color:#fff;

    margin-bottom:10px;

}

footer h2 span{

    color:var(--primary);

}

footer p{

    color:#bdbdbd;

    margin:8px 0;

    line-height:1.7;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:25px 0;

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#1d1d1d;

    color:#fff;

    font-size:1.3rem;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

.copyright{

    margin-top:20px;

    font-size:.9rem;

    color:#888;

}

@media(max-width:768px){

footer{

    padding:40px 20px;

}

footer h2{

    font-size:1.6rem;

}

.footer-social{

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

}

}


#typing{
    color:var(--primary);
    border-right:3px solid var(--primary);
    padding-right:5px;
    animation:blink .7s infinite;
}

@keyframes blink{
    50%{
        border-color:transparent;
    }
}

