/*==================================================
            GOOGLE FONT & RESET
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

:root{

    --primary:#2563eb;
    --secondary:#7c3aed;
    --dark:#081b29;
    --dark2:#102542;
    --white:#ffffff;
    --text:#dbeafe;
    --gray:#94a3b8;
    --card:rgba(255,255,255,.08);

}

body{

    background:linear-gradient(135deg,#081b29,#102542,#0f172a);
    color:var(--white);
    overflow-x:hidden;

}

section{

    padding:100px 10%;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

h1,h2,h3{

    font-weight:700;

}

/*==========================
        COMPANY LOGO
===========================*/

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:70px;
    width:auto;
    object-fit:contain;
    transition:.4s ease;
    border-radius:50%;
    filter:drop-shadow(0 0 10px rgba(56,189,248,.35));
}

.logo img:hover{
    transform:scale(1.08);
    filter:drop-shadow(0 0 20px rgba(56,189,248,.7));
}

/*==================================================
                CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(var(--primary),var(--secondary));
    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#081b29;

}

/*==================================================
                NAVBAR
==================================================*/
/*================ HEADER ================*/

header{

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 8%;

    background: rgba(10,15,35,.92);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255,255,255,.08);

    z-index: 1000;
}

/*================ LOGO ================*/

.logo{

    display: flex;
    align-items: center;

    gap: 15px;

    cursor: pointer;

    animation: logoAnimation 1.2s ease;
}

.logo img{

    width: 70px;
    height: 70px;

    object-fit: cover;

    

    box-shadow:
        0 0 15px rgba(0,132,255,.35),
        0 0 35px rgba(255,185,0,.18);

    transition: .5s;
}

.logo:hover img{

    transform: scale(1.08) rotate(6deg);

    box-shadow:
        0 0 25px #0077ff,
        0 0 50px #ffb400;
}

.logo-text h2{

    color: white;

    font-size: 26px;

    font-weight: 700;

    letter-spacing: .5px;

    margin-bottom: 3px;
}

.logo-text span{

    color: #f0b400;

    font-size: 13px;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/*================ NAV LINKS ================*/

.nav-links{

    display:flex;

    gap:40px;

    list-style:none;
}

.nav-links a{

    color:white;

    text-decoration:none;

    font-size:17px;

    font-weight:500;

    transition:.3s;
}

.nav-links a:hover{

    color:#00aaff;
}

/*================ LOGO ANIMATION ================*/

@keyframes logoAnimation{

    from{

        opacity:0;

        transform:translateX(-70px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/*==================================================
                HERO SECTION
==================================================*/

.hero{

    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;

}

.hero-text{

    flex:1;

}

.hero-text h3{

    color:#38bdf8;
    font-size:26px;
    margin-bottom:10px;

}

.hero-text h1{

    font-size:65px;
    line-height:1.2;
    margin-bottom:15px;
    font-weight:800;

}

.hero-text h2{

    font-size:34px;
    color:#cbd5e1;
    margin-bottom:25px;

}

.hero-text p{

    color:#cbd5e1;
    font-size:18px;
    line-height:1.9;
    max-width:650px;

}

/*==================================================
                BUTTONS
==================================================*/

.buttons{

    display:flex;
    gap:25px;
    margin-top:40px;

}

.btn{

    background:linear-gradient(45deg,#2563eb,#7c3aed);
    color:white;
    padding:16px 35px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 0 25px rgba(37,99,235,.4);

}

.btn:hover{

    transform:translateY(-6px);
    box-shadow:0 0 35px rgba(37,99,235,.7);

}

.btn-outline{

    border:2px solid #38bdf8;
    color:white;
    padding:16px 35px;
    border-radius:50px;
    transition:.4s;
    font-weight:600;

}

.btn-outline:hover{

    background:#38bdf8;
    color:#081b29;
    transform:translateY(-6px);

}

/*==================================================
                HERO IMAGE
==================================================*/

.hero-image{

    flex:1;
    display:flex;
    justify-content:center;

}

.hero-image img{

    width:420px;
    height:420px;
    object-fit:cover;
    border-radius:50%;
    border:8px solid #38bdf8;
    box-shadow:
    0 0 30px #38bdf8,
    0 0 60px rgba(56,189,248,.4);
    animation:floatImage 4s ease-in-out infinite;

}

@keyframes floatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*==================================================
            HERO BACKGROUND CIRCLES
==================================================*/

.hero::before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#2563eb;
    filter:blur(180px);
    left:-120px;
    top:120px;
    opacity:.35;
    z-index:-1;

}

.hero::after{

    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#7c3aed;
    filter:blur(180px);
    right:-120px;
    bottom:60px;
    opacity:.30;
    z-index:-1;

}

/*==================================================
            PROFESSIONAL HEADING
==================================================*/

.hero-text h1 span{

    color:#38bdf8;

}

.hero-text h3{

    text-transform:uppercase;
    letter-spacing:2px;

}

.hero-text p{

    margin-top:15px;

}


/*==================================================
                ABOUT SECTION
==================================================*/

.about{
    background:rgba(255,255,255,.03);
}

.about h2,
.skills h2,
.services h2,
.projects h2{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
    color:#fff;
}

.about p{
    max-width:900px;
    margin:0 auto 50px;
    text-align:center;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.9;
}

.about-boxes{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.box{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    padding:40px 25px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.box:hover{
    transform:translateY(-12px);
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.box h3{
    font-size:42px;
    color:#38bdf8;
    margin-bottom:10px;
}

.box:hover h3{
    color:#fff;
}

.box span{
    font-size:18px;
    color:#dbeafe;
}

/*==================================================
                SKILLS
==================================================*/

.skills{
    padding-top:100px;
}

.skills-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:50px;
}

.skill-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border-radius:20px;
    padding:40px 20px;
    text-align:center;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.skill-card:hover{
    transform:translateY(-12px) scale(1.03);
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.skill-card i{
    font-size:60px;
    color:#38bdf8;
    margin-bottom:20px;
    transition:.4s;
}

.skill-card:hover i{
    color:#fff;
    transform:rotate(8deg) scale(1.1);
}

.skill-card h3{
    font-size:24px;
}

/*==================================================
                SERVICES
==================================================*/

.services{
    background:rgba(255,255,255,.03);
}

.services .skill-card{
    position:relative;
    overflow:hidden;
}

.services .skill-card::before{

    content:"24/7";

    position:absolute;
    top:15px;
    right:-35px;

    background:#22c55e;
    color:#fff;

    width:120px;
    text-align:center;

    transform:rotate(45deg);

    font-size:12px;
    font-weight:700;

    padding:5px;

}

.services .skill-card:hover{

    background:linear-gradient(135deg,#0ea5e9,#2563eb);

}

.services .skill-card h3{

    margin-top:10px;

}

/*==================================================
                PROJECTS
==================================================*/

.projects{

    padding-top:100px;

}

.project-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:35px;
    margin-top:50px;

}

.project-card{

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);

}

.project-card:hover{

    transform:translateY(-15px);
    box-shadow:0 20px 45px rgba(0,0,0,.4);

}

.project-card img{

    height:220px;
    object-fit:cover;
    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-card h3{

    padding:25px 20px 10px;
    font-size:26px;

}

.project-card p{

    padding:0 20px;
    color:#cbd5e1;
    line-height:1.8;

}

.project-card a{

    display:block;
    padding:20px;

}

.project-card button{

    width:100%;
    padding:15px;

    border:none;

    border-radius:50px;

    background:linear-gradient(45deg,#2563eb,#7c3aed);

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.4s;

}

.project-card button:hover{

    transform:scale(1.03);

    box-shadow:0 0 30px rgba(37,99,235,.6);

}

/*==================================================
                SECTION ANIMATION
==================================================*/

.box,
.skill-card,
.project-card{

    animation:fadeUp .8s ease;

}

/*==============================
      FLOATING WHATSAPP
===============================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:36px;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 10px 25px rgba(37,211,102,.45);

    animation:whatsappPulse 2s infinite;

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.12);

    background:#1ebe5d;

}

@keyframes whatsappPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.7);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

@media(max-width:768px){

    .whatsapp-float{

        width:58px;

        height:58px;

        font-size:32px;

        right:18px;

        bottom:18px;

    }

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}


/*==================================================
                CONTACT SECTION
==================================================*/

.contact{
    padding:100px 10%;
    background:rgba(255,255,255,.03);
}

.contact h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
}

.contact p{
    text-align:center;
    color:#cbd5e1;
    margin-bottom:40px;
}

.contact form{
    max-width:800px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact input,
.contact textarea{

    width:100%;
    padding:18px;
    border:none;
    outline:none;
    border-radius:15px;
    background:rgba(255,255,255,.08);
    color:white;
    font-size:16px;
    border:1px solid rgba(255,255,255,.08);

}

.contact textarea{

    resize:none;

}

.contact input::placeholder,
.contact textarea::placeholder{

    color:#cbd5e1;

}

.contact button{

    background:linear-gradient(45deg,#2563eb,#7c3aed);
    color:#fff;
    border:none;
    padding:18px;
    border-radius:50px;
    font-size:18px;
    cursor:pointer;
    transition:.4s;

}

.contact button:hover{

    transform:translateY(-5px);
    box-shadow:0 0 25px rgba(37,99,235,.6);

}

/*==================================================
                    FOOTER
==================================================*/

footer{

    background:#06111d;
    text-align:center;
    padding:50px 10%;

}

footer h2{

    font-size:35px;
    color:#38bdf8;
    margin-bottom:15px;

}

footer p{

    color:#cbd5e1;
    margin:8px 0;
    line-height:1.8;

}

.socials{

    margin:25px 0;

}

.socials a{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    width:55px;
    height:55px;

    margin:10px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:22px;

    transition:.4s;

}

.socials a:hover{

    background:#38bdf8;
    transform:translateY(-8px);

}

/*==================================================
            FLOATING WHATSAPP BUTTON
==================================================*/

.whatsapp{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:34px;

    text-decoration:none;

    z-index:999;

    box-shadow:0 0 25px rgba(37,211,102,.6);

    animation:whatsapp 1.5s infinite;

}

@keyframes whatsapp{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.15);

    }

    100%{

        transform:scale(1);

    }

}

/*==================================================
            PROFESSIONAL QUOTE
==================================================*/

.quote{

    text-align:center;

    margin-top:60px;

    font-size:28px;

    font-weight:700;

    color:#38bdf8;

}

.quote span{

    color:white;

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px){

.hero{

flex-direction:column-reverse;
text-align:center;
padding-top:150px;

}

.hero-text h1{

font-size:50px;

}

.hero-text h2{

font-size:28px;

}

.hero-text p{

margin:auto;

}

.buttons{

justify-content:center;
flex-wrap:wrap;

}

.hero-image img{

width:320px;
height:320px;

}

header{

padding:20px 6%;

}

section{

padding:90px 6%;

}

}

@media(max-width:768px){

.menu-btn{

display:block;

}

.nav-links{

position:absolute;

top:80px;
right:-100%;

width:250px;

background:#081b29;

padding:30px;

flex-direction:column;

gap:20px;

transition:.5s;

border-radius:15px;

}

.nav-links.active{

right:20px;

}

.hero-text h1{

font-size:40px;

}

.hero-text h2{

font-size:24px;

}

.hero-image img{

width:270px;
height:270px;

}

.contact h2,
.about h2,
.skills h2,
.projects h2,
.services h2{

font-size:35px;

}

}

@media(max-width:500px){

.hero-text h1{

font-size:34px;

}

.hero-text h2{

font-size:21px;

}

.hero-text h3{

font-size:20px;

}

.buttons{

flex-direction:column;

}

.btn,
.btn-outline{

text-align:center;

}

.hero-image img{

width:220px;
height:220px;

}

.whatsapp{

width:55px;
height:55px;
font-size:28px;

}

footer h2{

font-size:28px;

}

}

/*==================================================
            GLOW EFFECT
==================================================*/

.box:hover,
.skill-card:hover,
.project-card:hover{

box-shadow:
0 0 20px rgba(56,189,248,.5),
0 0 40px rgba(124,58,237,.3);

}

/*==================================================
            TEXT SELECTION
==================================================*/

::selection{

background:#38bdf8;
color:#fff;

}