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

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

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

:root{

    --primary:#00d4ff;
    --primary-dark:#0099cc;

    --background:#070b16;
    --background2:#101827;

    --card:#111827;

    --white:#ffffff;
    --gray:#b8c0cc;

    --shadow:0 10px 35px rgba(0,212,255,.18);

    --radius:18px;

}

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--background);

    color:white;

    overflow-x:hidden;

}

/*========================================
    PARTICLES
========================================*/

#particles-js{

    position:fixed;

    inset:0;

    width:100%;

    height:100%;

    z-index:-1;

}

/*========================================
    NAVBAR
========================================*/

.navbar{

    padding:16px 0;

    transition:.4s;

    backdrop-filter:blur(16px);

    background:rgba(10,15,25,.25);

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

}

.navbar.scrolled{

    background:#0d1322;

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

}

.navbar-brand{

    color:white;

    font-weight:700;

    font-size:22px;

}

.navbar-brand i{

    color:var(--primary);

    margin-right:8px;

}

.navbar-brand:hover{

    color:white;

}

.nav-link{

    color:#d6d6d6;

    margin-left:18px;

    font-size:15px;

    position:relative;

    transition:.3s;

}

.nav-link:hover{

    color:white;

}

.nav-link.active{

    color:var(--primary);

}

.nav-link::after{

    content:"";

    position:absolute;

    bottom:-4px;

    left:0;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-link:hover::after{

    width:100%;

}

.navbar-toggler{

    border:none;

    color:white;

}

.navbar-toggler:focus{

    box-shadow:none;

}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

}

.hero-subtitle{

    display:inline-block;

    color:var(--primary);

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:14px;

    margin-bottom:20px;

}

.hero h1{

    font-size:68px;

    font-weight:800;

    line-height:1.1;

}

.hero h1 span{

    color:var(--primary);

}

.hero h3{

    margin-top:18px;

    font-size:32px;

    color:#cfd7e4;

}

.hero p{

    margin-top:30px;

    color:#b8c0cc;

    line-height:1.9;

    max-width:600px;

}

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

.hero-buttons{

    margin-top:35px;

    display:flex;

    gap:18px;

}

.btn{

    border-radius:40px;

    padding:14px 34px;

    font-weight:600;

}

.btn-primary{

    background:var(--primary);

    border:none;

    color:black;

}

.btn-primary:hover{

    background:#00b8df;

    transform:translateY(-4px);

    box-shadow:var(--shadow);

}

.btn-outline-light{

    border:2px solid white;

}

.btn-outline-light:hover{

    background:white;

    color:black;

}

/*========================================
    SOCIAL
========================================*/

.social-icons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.social-icons a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#151f32;

    color:white;

    text-decoration:none;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--primary);

    color:black;

    transform:translateY(-8px);

}

/*========================================
    PROFILE
========================================*/

.profile-card{

    width:450px;

    height:450px;

    margin:auto;

    position:relative;

}

.circle{

    position:absolute;

    width:100%;

    height:100%;

    border-radius:50%;

    background:linear-gradient(135deg,#00d4ff22,#008cff22);

    filter:blur(8px);

}

.profile-img{

    width:90%;

    border-radius:50%;

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    border:8px solid rgba(255,255,255,.05);

    box-shadow:0 30px 80px rgba(0,0,0,.4);

}

/*========================================
    SCROLL ICON
========================================*/

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

}

.scroll-down a{

    color:white;

    font-size:28px;

    animation:float 2s infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*========================================
    RESPONSIVE
========================================*/

@media(max-width:991px){

.hero{

padding-top:120px;

text-align:center;

}

.hero h1{

font-size:48px;

}

.hero h3{

font-size:24px;

}

.profile-card{

width:340px;

height:340px;

margin-top:50px;

}

.hero-buttons{

justify-content:center;

}

.social-icons{

justify-content:center;

}

.navbar-collapse{

background:#111827;

padding:20px;

margin-top:15px;

border-radius:12px;

}

.nav-link{

margin:10px 0;

}

}

@media(max-width:576px){

.hero h1{

font-size:38px;

}

.profile-card{

width:280px;

height:280px;

}

.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

}

}

/*==================================================
                COMMON SECTION
==================================================*/

section{

    padding:110px 0;
    position:relative;

}

.section-title{

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

}

.section-title h2{

    font-size:42px;
    font-weight:700;
    color:white;

}

.section-title span{

    color:var(--primary);

}

.section-title p{

    margin-top:15px;
    color:var(--gray);
    max-width:650px;
    margin-left:auto;
    margin-right:auto;

}

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

.about-section{

    background:#050c16;

}

.overview-card{

    background:#08131f;

    border:1px solid rgba(0,180,255,.15);

    border-radius:22px;

    padding:45px;

    height:100%;

}

.overview-title{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:35px;

}

.icon-box{

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#0b2136;

    border-radius:18px;

    color:#00cfff;

    font-size:24px;

}

.overview-text{

    color:#9fb3c8;

    line-height:1.9;

    font-size:19px;

}

.overview-text strong{

    color:white;

}

.expertise-list{

    list-style:none;

    padding:0;

}

.expertise-list li{

    margin:18px 0;

    color:#95abc1;

    position:relative;

    padding-left:24px;

}

.expertise-list li::before{

    content:"•";

    color:#00cfff;

    position:absolute;

    left:0;

}

.stat-box{

    background:#08131f;

    border:1px solid rgba(0,180,255,.12);

    border-radius:22px;

    padding:32px;

    height:100%;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:0 0 30px rgba(0,180,255,.15);

}

.stat-box i{

    color:#00cfff;

    font-size:22px;

    margin-bottom:20px;

}

.stat-box h2{

    color:#00cfff;

    font-size:42px;

    font-weight:700;

}

.stat-box p{

    color:#89a2bb;

    margin-top:10px;

}

/*==================================================
                STATISTICS
==================================================*/

.stats{

    margin-top:60px;

}

.stat-card{

    background:var(--card);

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.35s;

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

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.stat-card h2{

    color:var(--primary);

    font-size:40px;

    font-weight:700;

}

.stat-card p{

    color:var(--gray);

    margin-top:10px;

}

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

.skills-section{

    background:#071019;

    padding:120px 0;

}

.skills-section .section-title h2{

    font-size:58px;

    font-weight:800;

}

.skills-section .section-title span{

    color:#00cfff;

}

.skills-section .section-title p{

    color:#8fa4bb;

    max-width:650px;

    margin:auto;

}

.skill-panel{

    background:#08141f;

    border:1px solid rgba(0,190,255,.15);

    border-radius:22px;

    padding:35px;

    height:100%;

}

.skill-panel h4{

    color:white;

    margin-bottom:35px;

    font-weight:700;

}

.dot{

    width:12px;

    height:12px;

    background:#00cfff;

    display:inline-block;

    border-radius:50%;

    margin-right:10px;

}

.skill{

    margin-bottom:25px;

}

.skill-header{

    display:flex;

    justify-content:space-between;

    margin-bottom:8px;

}

.skill-header span:first-child{

    color:white;

}

.skill-header span:last-child{

    color:#00cfff;

    font-weight:600;

}

.skill-bar{

    height:7px;

    background:#0f2434;

    border-radius:20px;

    overflow:hidden;

}

.skill-bar div{

    height:100%;

    background:#10d4f4;

    border-radius:20px;

    transition:width 1.5s;

}

.skill-panel:hover{

    box-shadow:0 0 35px rgba(0,212,255,.12);

}

@media(max-width:768px){

.skills-section .section-title h2{

font-size:40px;

}

.skill-panel{

margin-bottom:30px;

}

}

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

.progress-box{

    margin-bottom:25px;

}

.progress-box h6{

    display:flex;

    justify-content:space-between;

    color:white;

    margin-bottom:10px;

}

.progress{

    height:9px;

    background:#1d2a40;

    border-radius:30px;

    overflow:hidden;

}

.progress-bar{

    background:linear-gradient(90deg,#00d4ff,#007cff);

    border-radius:30px;

}

/*==================================================
                TECHNOLOGY GRID
==================================================*/

.tech-grid{

    display:grid;

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

    gap:20px;

    margin-top:40px;

}

.tech-box{

    background:var(--card);

    border-radius:16px;

    padding:25px;

    text-align:center;

    transition:.35s;

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

}

.tech-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.tech-box i{

    font-size:40px;

    color:var(--primary);

    margin-bottom:15px;

}

.tech-box h6{

    color:white;

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:992px){

.about-content{

margin-top:40px;

}

.section-title h2{

font-size:34px;

}

}

@media(max-width:576px){

.section-title h2{

font-size:28px;

}

.about-content h3{

font-size:28px;

}

.stat-card{

padding:25px;

}

.skill-card{

padding:22px;

}

}

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

.experience-section{

    background:#050c16;

    padding:120px 0;

}

.section-badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:30px;

    background:#0c1d2f;

    color:#00cfff;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.timeline{

    position:relative;

    max-width:1100px;

    margin:auto;

    margin-top:70px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:3px;

    height:100%;

    background:#12364d;

    transform:translateX(-50%);

}

.timeline-item{

    width:50%;

    position:relative;

    padding:30px;

}

.timeline-item.left{

    left:0;

    text-align:right;

}

.timeline-item.right{

    left:50%;

}

.timeline-item::before{

    content:"";

    position:absolute;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#00cfff;

    top:45px;

    border:6px solid #08131f;

    box-shadow:0 0 15px rgba(0,212,255,.4);

}

.timeline-item.left::before{

    right:-13px;

}

.timeline-item.right::before{

    left:-11px;

}

.timeline-content{

    background:#08131f;

    border:1px solid rgba(0,200,255,.15);

    border-radius:18px;

    padding:30px;

    transition:.35s;

}

.timeline-content:hover{

    transform:translateY(-6px);

    box-shadow:0 0 30px rgba(0,212,255,.12);

}

.job-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:20px;

}

.job-header h4{

    color:white;

    margin-bottom:4px;

}

.job-header h5{

    color:#00cfff;

    font-size:17px;

}

.duration{

    background:#112233;

    color:#8bcfff;

    padding:6px 14px;

    border-radius:20px;

    font-size:13px;

}

.location{

    color:#8da6bc;

    margin-bottom:18px;

}

.timeline-content ul{

    padding-left:18px;

    color:#9fb4c9;

}

.timeline-content li{

    margin-bottom:10px;

}

.achievement{

    margin-top:20px;

    padding:12px 18px;

    border-radius:12px;

    background:#0d2030;

    color:#00cfff;

    font-size:14px;

}

@media(max-width:992px){

.timeline::before{

left:20px;

}

.timeline-item{

width:100%;

left:0!important;

padding-left:60px;

padding-right:0;

text-align:left;

}

.timeline-item::before{

left:10px!important;

}

.job-header{

flex-direction:column;

gap:10px;

}

}

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

.education-section{

    background:#050c16;

    padding:120px 0;

}

.education-card{

    display:flex;

    gap:30px;

    background:#08131f;

    border:1px solid rgba(0,200,255,.15);

    border-top:4px solid #00cfff;

    border-radius:22px;

    padding:35px;

    margin-bottom:35px;

    transition:.35s;

}

.education-card:hover{

    transform:translateY(-8px);

    box-shadow:0 0 30px rgba(0,212,255,.12);

}

.education-icon{

    min-width:60px;

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    background:#0d2030;

    color:#00cfff;

    font-size:28px;

}

.education-content{

    width:100%;

}

.education-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:15px;

}

.education-type{

    background:#0d2030;

    color:#00cfff;

    padding:6px 14px;

    border-radius:20px;

    font-size:13px;

    font-weight:600;

}

.education-year{

    color:#8ea5bb;

    font-weight:600;

}

.education-year i{

    margin-right:6px;

}

.education-content h3{

    color:white;

    font-size:34px;

    margin-bottom:10px;

}

.education-content h5{

    color:#00cfff;

    margin-bottom:25px;

}

.education-content ul{

    padding-left:20px;

    color:#8fa4bb;

}

.education-content li{

    margin-bottom:12px;

    line-height:1.8;

}

@media(max-width:768px){

.education-card{

flex-direction:column;

}

.education-top{

flex-direction:column;

align-items:flex-start;

gap:12px;

}

.education-content h3{

font-size:28px;

}

}

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

.projects-section{

    background:#050c16;

    padding:120px 0;

}

.project-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-top:40px;

}

.project-filter button{

    background:#08131f;

    color:#8ea5bb;

    border:1px solid rgba(0,190,255,.15);

    padding:12px 22px;

    border-radius:30px;

    transition:.35s;

}

.project-filter button.active{

    background:#00cfff;

    color:#041018;

    font-weight:600;

}

.project-card{

    position:relative;

    background:#08131f;

    border-radius:18px;

    border:1px solid rgba(0,200,255,.15);

    padding:28px;

    overflow:hidden;

    height:100%;

    transition:.35s;

}

.project-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#00cfff;

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 0 35px rgba(0,212,255,.12);

}

.project-type{

    color:#00cfff;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:15px;

}

.project-location{

    position:absolute;

    top:25px;

    right:25px;

    background:#0d2030;

    color:#88b3d2;

    padding:5px 12px;

    border-radius:20px;

    font-size:12px;

}

.project-card h4{

    color:white;

    margin:18px 0;

    font-size:24px;

}

.project-card p{

    color:#8da5bb;

    line-height:1.8;

}

.tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:25px;

}

.tags span{

    padding:6px 14px;

    background:#0d2030;

    border-radius:20px;

    color:#8ab9d9;

    font-size:13px;

}

@media(max-width:768px){

.project-filter{

flex-direction:column;

align-items:center;

}

.project-filter button{

width:260px;

}

}

/*=========================
    CERTIFICATIONS
==========================*/

.certifications-section{

    background:#050c16;

    padding:120px 0;

}

.certificate-panel{

    background:#08131f;

    border:1px solid rgba(0,200,255,.15);

    border-radius:22px;

    padding:28px;

    height:100%;

}

.panel-header{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:30px;

}

.panel-icon{

    width:52px;

    height:52px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:#0d2030;

    color:#00cfff;

    font-size:22px;

}

.panel-header h4{

    color:white;

    margin-bottom:2px;

}

.panel-header p{

    color:#7e97af;

    margin:0;

}

.certificate-card{

    display:flex;

    align-items:center;

    gap:18px;

    background:#0d1d2a;

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

    border-radius:16px;

    padding:18px;

    margin-bottom:18px;

    transition:.35s;

}

.certificate-card:hover{

    transform:translateY(-5px);

    box-shadow:0 0 25px rgba(0,212,255,.12);

}

.certificate-card i{

    color:#00cfff;

    font-size:24px;

}

.certificate-card h5{

    color:white;

    margin:0;

}

.certificate-card span{

    color:#7f98af;

    font-size:14px;

}

.training-card{

    background:#0d1d2a;

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

    border-radius:16px;

    padding:18px 24px;

    color:white;

    margin-bottom:16px;

    transition:.35s;

    position:relative;

    padding-left:36px;

}

.training-card::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#00cfff;

    position:absolute;

    left:18px;

    top:24px;

}

.training-card:hover{

    transform:translateX(8px);

    box-shadow:0 0 20px rgba(0,212,255,.12);

}

@media(max-width:991px){

.certificate-panel{

margin-bottom:30px;

}

}

/*=========================
      ACHIEVEMENTS
==========================*/

.achievements-section{

    background:#050c16;

    padding:120px 0;

}

.achievement-card{

    background:#08131f;

    border:1px solid rgba(0,200,255,.15);

    border-top:4px solid #00cfff;

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.achievement-card:hover{

    transform:translateY(-10px);

    box-shadow:0 0 30px rgba(0,212,255,.15);

}

.achievement-icon{

    width:68px;

    height:68px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:linear-gradient(135deg,#00d4ff,#4f7cff);

    color:white;

    font-size:28px;

}

.achievement-card h2{

    color:white;

    font-size:48px;

    font-weight:700;

    margin-bottom:10px;

}

.achievement-card h5{

    color:white;

    margin-bottom:8px;

    font-size:22px;

}

.achievement-card p{

    color:#8da5bb;

    margin:0;

    font-size:15px;

    line-height:1.7;

}

/* Different top border colors */

.achievement-card:nth-child(2){

    border-top-color:#4f7cff;

}

.achievement-card:nth-child(3){

    border-top-color:#00bfff;

}

.achievement-card:nth-child(4){

    border-top-color:#6c63ff;

}

.achievement-card:nth-child(5){

    border-top-color:#00d4c6;

}

.achievement-card:nth-child(6){

    border-top-color:#13c6d6;

}

@media(max-width:768px){

.achievement-card{

padding:35px 20px;

}

.achievement-card h2{

font-size:38px;

}

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px){

.timeline::before{
    left:15px;
}

.timeline-item{
    width:100%;
    left:0!important;
    text-align:left!important;
    padding-left:55px;
    padding-right:0;
}

.timeline-dot{
    left:5px!important;
}

}

@media(max-width:576px){

.project-card img{
    height:180px;
}

.timeline-content{
    padding:20px;
}

.education-card,
.achievement-card,
.certificate-card{
    padding:25px;
}

}

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

/*=============================
        CONTACT SECTION
==============================*/

.contact-section{

    background:#050c16;

    padding:120px 0;

}

.contact-wrapper{

    max-width:900px;

    margin:auto;

    margin-top:70px;

}

.contact-card{

    display:flex;

    align-items:center;

    gap:20px;

    background:#08131f;

    border:1px solid rgba(0,200,255,.12);

    border-radius:18px;

    padding:20px 25px;

    margin-bottom:20px;

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-5px);

    box-shadow:0 0 30px rgba(0,212,255,.12);

}

.contact-icon{

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    background:#0d2030;

    color:#00cfff;

    font-size:22px;

}

.contact-card small{

    color:#7f96ad;

    letter-spacing:1px;

}

.contact-card h5{

    margin:4px 0 0;

    color:white;

    font-size:20px;

}

.contact-card a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.contact-card a:hover{

    color:#00cfff;

}

/*==========================
      LOCATION BOX
===========================*/

.location-card{

    margin-top:30px;

    background:#08131f;

    border:1px solid rgba(0,200,255,.12);

    border-radius:20px;

    padding:70px 20px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

/* dotted background */

.location-card::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        radial-gradient(rgba(0,200,255,.15) 1px, transparent 1px);

    background-size:22px 22px;

    opacity:.35;

}

.location-card>*{

    position:relative;

    z-index:2;

}

.location-icon{

    width:60px;

    height:60px;

    margin:auto;

    margin-bottom:18px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#00cfff;

    font-size:34px;

}

.location-card h4{

    color:white;

    margin-bottom:6px;

}

.location-card p{

    color:#7d96b0;

}

/*=========================
        HERO INFO
==========================*/

.hero-info{

    display:inline-flex;

    align-items:center;

    gap:18px;

    margin-top:35px;

    padding:12px 20px;

    background:rgba(9,20,32,.9);

    border:1px solid rgba(0,212,255,.15);

    border-radius:50px;

    backdrop-filter:blur(10px);

    flex-wrap:wrap;

}

.hero-location{

    display:flex;

    align-items:center;

    gap:8px;

    color:#8fa5bb;

    font-size:15px;

}

.hero-location i{

    color:#00cfff;

}

.hero-divider{

    width:6px;

    height:6px;

    background:#41566d;

    border-radius:50%;

}

.hero-status{

    display:flex;

    align-items:center;

    gap:8px;

    background:rgba(0,255,140,.08);

    border:1px solid rgba(0,255,140,.25);

    padding:8px 16px;

    border-radius:30px;

    color:#37e27d;

    font-weight:600;

    font-size:14px;

}

.status-dot{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#28ff84;

    animation:pulseStatus 1.8s infinite;

}

@keyframes pulseStatus{

    0%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(40,255,132,.6);

    }

    70%{

        transform:scale(1.2);

        box-shadow:0 0 0 10px rgba(40,255,132,0);

    }

    100%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(40,255,132,0);

    }

}

@media(max-width:768px){

.hero-info{

justify-content:center;

gap:12px;

padding:14px;

}

.hero-divider{

display:none;

}

}

/*==========================
      RESPONSIVE
===========================*/

@media(max-width:768px){

.contact-card{

flex-direction:column;

align-items:flex-start;

}

.contact-icon{

margin-bottom:10px;

}

.location-card{

padding:50px 20px;

}

}

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

.footer{

    background:#040b15;

    padding:80px 0 30px;

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

}

.footer-brand{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

}

.footer-logo{

    width:55px;

    height:55px;

    border-radius:15px;

    background:#0d2030;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#00cfff;

    font-size:24px;

}

.footer-brand h4{

    color:white;

    margin:0;

}

.footer-brand span{

    color:#00cfff;

    font-size:13px;

    letter-spacing:1px;

}

.footer-description{

    color:#8fa5bb;

    line-height:1.9;

    margin-bottom:30px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:#0d2030;

    color:#00cfff;

    transition:.35s;

    text-decoration:none;

}

.footer-social a:hover{

    background:#00cfff;

    color:#08131f;

    transform:translateY(-5px);

}

.footer-title{

    color:white;

    margin-bottom:25px;

    text-transform:uppercase;

    font-size:18px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#8fa5bb;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#00cfff;

    padding-left:8px;

}

.footer-contact{

    list-style:none;

    padding:0;

}

.footer-contact li{

    margin-bottom:18px;

    color:#8fa5bb;

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.footer-contact i{

    color:#00cfff;

    margin-top:4px;

}

.footer-contact a{

    color:#8fa5bb;

    text-decoration:none;

}

.footer-contact a:hover{

    color:#00cfff;

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:45px 0 25px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    margin:0;

    color:#6f89a3;

}

@media(max-width:768px){

.footer{

text-align:center;

}

.footer-brand{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.footer-contact li{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

}

}

/*==================================================
                UTILITIES
==================================================*/

.glass{

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

    backdrop-filter:blur(20px);

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

}

.shadow-primary{

    box-shadow:0 0 30px rgba(0,212,255,.25);

}

.text-primary{

    color:var(--primary)!important;

}

.bg-primary-soft{

    background:rgba(0,212,255,.1);

}

.rounded-xl{

    border-radius:20px;

}

/*==================================================
                ANIMATIONS
==================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.8);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

@keyframes rotateGlow{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

.zoom-in{

    animation:zoomIn .7s ease forwards;

}

.rotate{

    animation:rotateGlow 15s linear infinite;

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#09111f;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:#00a6d6;

}

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

::selection{

    background:var(--primary);

    color:black;

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px){

.contact-form{

padding:30px;

}

.contact-card{

flex-direction:column;

text-align:center;

}

.footer-social{

flex-wrap:wrap;

}

}

@media(max-width:576px){

section{

padding:80px 0;

}

.contact-form{

padding:20px;

}

.contact-card{

padding:20px;

}

.hero h1{

font-size:36px;

}

.hero h3{

font-size:22px;

}

.section-title h2{

font-size:30px;

}

}