/*=========================
GOOGLE FONT
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/*=========================
RESET
==========================*/

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:#0D0D0D;

color:white;

overflow-x:hidden;

}

/*=========================
HEADER
==========================*/

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    background:rgba(13,13,13,.75);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

/*=========================
NAVBAR
==========================*/

.navbar{

    width:90%;

    max-width:1300px;

    margin:auto;

    height:85px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    font-size:34px;

    font-family:'Outfit',sans-serif;

    font-weight:700;

    color:var(--gold);

    letter-spacing:2px;

}

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links a{

    color:white;

    font-size:16px;

    font-weight:500;

    position:relative;

    transition:.35s;

}

.nav-links a:hover{

    color:var(--gold);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

.menu-btn{

    display:none;

    font-size:30px;

    color:var(--gold);

    cursor:pointer;

}

@media(max-width:768px){

.menu-btn{

display:block;

z-index:1001;

}

.nav-links{

position:fixed;

top:0;

right:-100%;

width:280px;

height:100vh;

background:#111;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

gap:35px;

transition:.45s ease;

box-shadow:-10px 0 30px rgba(0,0,0,.4);

}

.nav-links.active{

right:0;

}

.nav-links li{

width:100%;

text-align:center;

}

.nav-links a{

font-size:22px;

color:white;

}

.download-btn{

display:none;

}

}

/*=========================
HERO
==========================*/

.hero{

width:90%;

max-width:1300px;

margin:auto;

padding:140px 0 80px;

min-height:100vh;

display:flex;

align-items:center;

}

.hero-content{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:70px;

align-items:center;

width:100%;

}

.hero-text h1{

font-size:70px;

line-height:1.1;

font-family:'Outfit',sans-serif;

margin:20px 0;

}

.hero-text h1 span{

display:block;

color:var(--gold);

}

.hero-text h2{

font-size:30px;

font-weight:400;

margin-bottom:25px;

}

.hero-text p{

max-width:560px;

line-height:1.9;

font-size:18px;

color:#bbb;

margin-bottom:40px;

}

.status{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 22px;

border-radius:30px;

background:rgba(184,115,51,.15);

color:var(--gold);

font-size:14px;

}

.status i{

font-size:10px;

color:#4ade80;

}

.hero-tech{

display:flex;

gap:15px;

margin-top:40px;

flex-wrap:wrap;

}

.hero-tech span{

padding:10px 18px;

background:rgba(255,255,255,.05);

border-radius:30px;

border:1px solid rgba(255,255,255,.08);

}

.hero-image{

display:flex;

justify-content:center;

position:relative;

}

.hero-image img{

width:420px;

height:420px;

object-fit:cover;

border-radius:50%;

border:6px solid rgba(184,115,51,.3);

position:relative;

z-index:2;

}

.hero-ring{

position:absolute;

width:470px;

height:470px;

border-radius:50%;

background:radial-gradient(circle,
rgba(184,115,51,.35),
transparent 70%);

filter:blur(45px);

animation:float 5s ease-in-out infinite;

}

@media(max-width:768px){

.hero{

padding-top:120px;

min-height:auto;

}

.hero-content{

grid-template-columns:1fr;

text-align:center;

}

.hero-image{

order:-1;

margin-bottom:40px;

}

.hero-image img{

width:260px;

height:260px;

}

.hero-ring{

width:300px;

height:300px;

}

.hero-text h1{

font-size:44px;

}

.hero-text h2{

font-size:22px;

}

.hero-text p{

font-size:16px;

max-width:100%;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.hero-buttons a{

width:220px;

}

.hero-tech{

justify-content:center;

}

}

/*=========================
INDUSTRIES
==========================*/

.industries{

    width:90%;

    max-width:1300px;

    margin:120px auto;

}

.industry-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:25px;

margin-top:60px;

}

.industry-card{

padding:35px 20px;

text-align:center;

border-radius:22px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

transition:.45s;

backdrop-filter:blur(15px);

cursor:pointer;

}

.industry-card:hover{

transform:translateY(-10px);

border-color:rgba(184,115,51,.35);

box-shadow:0 0 35px rgba(184,115,51,.2);

}

.industry-card i{

font-size:42px;

margin-bottom:20px;

color:var(--gold);

transition:.45s;

}

.industry-card:hover i{

transform:scale(1.2) rotate(8deg);

}

.industry-card h3{

font-size:20px;

font-family:'Outfit';

font-weight:500;

}

@media(max-width:768px){

.industry-grid{

grid-template-columns:repeat(2,1fr);

gap:20px;

}

}

/*=========================
ABOUT
==========================*/

.about{

    width:90%;
    max-width:1300px;
    margin:140px auto;

    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:70px;
    align-items:center;

}

.about-left h2{

    font-size:52px;
    line-height:1.2;
    margin:25px 0;

    font-family:'Outfit',sans-serif;

}

.about-left p{

    color:#bfbfbf;

    line-height:1.9;

    font-size:17px;

    margin-bottom:45px;

}

.about-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.feature{

display:flex;

align-items:center;

gap:18px;

padding:20px;

border-radius:18px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.feature:hover{

transform:translateY(-8px);

border-color:rgba(184,115,51,.35);

}

.feature i{

font-size:22px;

color:var(--gold);

}

.feature span{

font-weight:500;

}

.about-right{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.achievement-card{

padding:45px 25px;

text-align:center;

border-radius:25px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

transition:.45s;

backdrop-filter:blur(15px);

}

.achievement-card:hover{

transform:translateY(-10px);

box-shadow:0 0 40px rgba(184,115,51,.2);

}

.achievement-card h2{

font-size:56px;

font-family:'Outfit';

color:var(--gold);

margin-bottom:15px;

}

.achievement-card span{

color:#bfbfbf;

}

@media(max-width:768px){

.about{

grid-template-columns:1fr;

text-align:center;

}

.about-left h2{

font-size:38px;

}

.about-features{

grid-template-columns:1fr;

}

.about-right{

grid-template-columns:1fr;

margin-top:50px;

}

}

/*=========================
PROJECTS
==========================*/

.projects{

    width:90%;
    max-width:1300px;

    margin:140px auto;

}

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-header span{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:600;

}

.section-header h2{

    font-size:54px;

    margin:15px 0;

    font-family:'Outfit',sans-serif;

}

.section-header p{

    color:var(--text);

    max-width:650px;

    margin:auto;

    line-height:1.8;

}

.project-card{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

background:rgba(255,255,255,.04);

border-radius:30px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

transition:.4s;

margin-bottom:60px;

}

.project-card:hover{

transform:translateY(-10px);

box-shadow:0 0 50px rgba(184,115,51,.2);

}

.project-image{

padding:30px;

display:flex;

justify-content:center;

align-items:center;

}

.project-image img{

width:100%;

border-radius:20px;

transition:.5s;

}

.project-card:hover img{

transform:scale(1.04);

}

.project-info{

padding:40px;

display:flex;

flex-direction:column;

justify-content:center;

}

.project-info h3{

font-size:34px;

margin-bottom:20px;

font-family:'Outfit';

}

.project-info p{

line-height:1.9;

color:var(--text);

margin-bottom:30px;

}

.project-info ul{

margin-bottom:30px;

}

.project-info li{

margin:12px 0;

list-style:none;

color:white;

}

.tech{

display:flex;

gap:15px;

flex-wrap:wrap;

margin-bottom:35px;

}

.tech span{

padding:10px 18px;

background:rgba(184,115,51,.18);

border-radius:30px;

color:var(--gold);

font-size:14px;

}

.buttons{

display:flex;

gap:20px;

}

.live-btn{

background:linear-gradient(135deg,var(--bronze),var(--gold));

padding:14px 28px;

border-radius:40px;

color:white;

transition:.3s;

}

.github-btn{

padding:14px 28px;

border:1px solid var(--gold);

border-radius:40px;

color:var(--gold);

transition:.3s;

}

.live-btn:hover{

transform:translateY(-3px);

}

.github-btn:hover{

background:var(--gold);

color:#111;

}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 768px){

    .project-card{

        display:flex;
        flex-direction:column;

        width:100%;

        overflow:hidden;

    }

    .project-image{

        padding:20px;

    }

    .project-image img{

        width:100%;
        height:auto;

        border-radius:18px;

    }

    .project-info{

        padding:25px;

    }

    .project-info h3{

        font-size:28px;

    }

    .project-info p{

        font-size:15px;

        line-height:1.7;

    }

    .project-info ul{

        padding:0;

    }

    .project-info li{

        font-size:15px;

    }

    .tech{

        gap:10px;

    }

    .tech span{

        font-size:13px;

        padding:8px 14px;

    }

    .buttons{

        display:flex;

        flex-direction:column;

        gap:15px;

    }

    .buttons a{

        width:100%;

        text-align:center;

    }

}

/*=========================
SKILLS
==========================*/

.skills{

    width:90%;

    max-width:1300px;

    margin:140px auto;

}

.skills-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:70px;

}

.skill-card{

padding:40px 30px;

text-align:center;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

backdrop-filter:blur(15px);

transition:.45s;

}

.skill-card:hover{

transform:translateY(-10px);

box-shadow:0 0 45px rgba(184,115,51,.2);

border-color:rgba(216,161,90,.4);

}

.skill-card i{

font-size:55px;

color:var(--gold);

margin-bottom:25px;

transition:.4s;

}

.skill-card:hover i{

transform:scale(1.2);

}

.skill-card h3{

font-size:28px;

margin-bottom:15px;

font-family:'Outfit',sans-serif;

}

.skill-card p{

color:var(--text);

line-height:1.8;

}

@media(max-width:768px){

    .skills-grid{

        grid-template-columns:1fr;

    }

}

/*=========================
PROCESS
==========================*/

.process{

    width:90%;
    max-width:1300px;

    margin:150px auto;

}

.process-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

margin-top:70px;

}

.process-card{

position:relative;

padding:45px 30px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

text-align:center;

backdrop-filter:blur(15px);

transition:.45s;

overflow:hidden;

}

.process-card:hover{

transform:translateY(-12px);

border-color:rgba(216,161,90,.35);

box-shadow:0 0 40px rgba(184,115,51,.2);

}

.process-number{

position:absolute;

top:20px;

right:25px;

font-size:50px;

font-weight:700;

color:rgba(216,161,90,.12);

font-family:'Outfit';

}

.process-card i{

font-size:60px;

color:var(--gold);

margin-bottom:30px;

transition:.4s;

}

.process-card:hover i{

transform:rotate(10deg) scale(1.15);

}

.process-card h3{

font-size:28px;

margin-bottom:18px;

font-family:'Outfit';

}

.process-card p{

color:var(--text);

line-height:1.8;

}

@media(max-width:768px){

    .process-container{

        grid-template-columns:1fr;

    }

}

/*=========================
SERVICES
==========================*/

.services{

    width:90%;
    max-width:1300px;

    margin:150px auto;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

    margin-top:70px;

}

.service-card{

padding:45px 35px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

text-align:center;

transition:.45s;

backdrop-filter:blur(15px);

}

.service-card:hover{

transform:translateY(-12px);

border-color:rgba(216,161,90,.4);

box-shadow:0 0 40px rgba(184,115,51,.18);

}

.service-card i{

font-size:60px;

color:var(--gold);

margin-bottom:25px;

transition:.45s;

}

.service-card:hover i{

transform:rotate(8deg) scale(1.2);

}

.service-card h3{

font-size:28px;

margin-bottom:20px;

font-family:'Outfit';

}

.service-card p{

line-height:1.8;

color:var(--text);

}

@media(max-width:768px){

    .services-grid{

        grid-template-columns:1fr;

    }

}

/*=========================
CONTACT
==========================*/

.contact{

    width:90%;
    max-width:1300px;

    margin:160px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.contact-left h2{

    font-size:52px;

    font-family:'Outfit';

    margin:20px 0;

}

.contact-left p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:40px;

}

.contact-info{

display:flex;

flex-direction:column;

gap:25px;

margin-bottom:40px;

}

.info-box{

display:flex;

align-items:center;

gap:20px;

padding:25px;

background:rgba(255,255,255,.04);

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.info-box:hover{

transform:translateX(12px);

border-color:rgba(216,161,90,.35);

}

.info-box i{

font-size:28px;

color:var(--gold);

width:45px;

text-align:center;

}

.social-links{

display:flex;

gap:20px;

}

.social-links a{

width:55px;

height:55px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:rgba(255,255,255,.05);

color:var(--gold);

font-size:22px;

transition:.4s;

}

.social-links a:hover{

background:var(--gold);

color:#111;

transform:translateY(-5px);

}

.contact-right form{

display:flex;

flex-direction:column;

gap:25px;

padding:45px;

background:rgba(255,255,255,.04);

border-radius:30px;

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

}

.contact-right input,
.contact-right textarea{

padding:18px;

background:#181818;

border:1px solid rgba(255,255,255,.08);

border-radius:12px;

color:white;

font-size:16px;

outline:none;

}

.contact-right input:focus,
.contact-right textarea:focus{

border-color:var(--gold);

}

.contact-right button{

padding:18px;

border:none;

border-radius:50px;

background:linear-gradient(
135deg,
var(--bronze),
var(--gold));

color:white;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.4s;

}

.contact-right button:hover{

transform:translateY(-5px);

}

@media(max-width:900px){

.contact{

grid-template-columns:1fr;

}

}

/*=========================
FOOTER
==========================*/

.footer{

    background:#090909;

    padding-top:90px;

    margin-top:160px;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer-container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

}

.footer-col h2{

    color:var(--gold);

    font-size:40px;

    margin-bottom:20px;

}

.footer-col h3{

    margin-bottom:25px;

}

.footer-col p{

    color:var(--text);

    line-height:1.8;

}

.footer-col a{

    display:block;

    margin:12px 0;

    color:var(--text);

    transition:.3s;

}

.footer-col a:hover{

    color:var(--gold);

    padding-left:8px;

}

.footer-social{

display:flex;

gap:18px;

margin-top:20px;

}

.footer-social a{

width:50px;

height:50px;

display:flex;

justify-content:center;

align-items:center;

background:rgba(255,255,255,.05);

border-radius:50%;

font-size:22px;

color:var(--gold);

transition:.4s;

}

.footer-social a:hover{

background:var(--gold);

color:#111;

transform:translateY(-6px);

}

.footer-bottom{

text-align:center;

margin-top:60px;

padding:30px;

border-top:1px solid rgba(255,255,255,.05);

color:var(--text);

}

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-social{

        justify-content:center;

    }

}

.nav-links a.active{

color:var(--gold);

}

#topBtn{

position:fixed;

bottom:30px;

right:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:var(--gold);

color:#111;

font-size:20px;

cursor:pointer;

display:none;

transition:.4s;

z-index:999;

}

#topBtn:hover{

transform:translateY(-5px);

}

body{

animation:fadeIn 1s;

}

@keyframes fadeIn{

from{

opacity:0;

}

to{

opacity:1;

}

}

/*=========================
CLIENT RESULTS
==========================*/

.results{

    width:90%;
    max-width:1300px;

    margin:120px auto;

}

.results-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.result-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:45px;

    text-align:center;

    transition:.4s;

    backdrop-filter:blur(15px);

}

.result-card:hover{

    transform:translateY(-10px);

    border-color:rgba(216,161,90,.35);

    box-shadow:0 0 35px rgba(184,115,51,.18);

}

.result-card h2{

    font-size:60px;

    color:var(--gold);

    font-family:'Outfit',sans-serif;

    margin-bottom:15px;

}

.result-card p{

    color:var(--text);

    font-size:18px;

}

@media(max-width:768px){

    .results-container{

        grid-template-columns:1fr;

    }

}

.overlay{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.5);

opacity:0;

visibility:hidden;

transition:.4s;

z-index:999;

}

.overlay.active{

opacity:1;

visibility:visible;

}

/*=========================
FLOATING WHATSAPP
==========================*/

.whatsapp-float{

position:fixed;

bottom:30px;

left:30px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:white;

text-decoration:none;

box-shadow:0 10px 30px rgba(0,0,0,.3);

z-index:9999;

transition:.35s;

animation:whatsappPulse 2s infinite;

}

.whatsapp-float:hover{

transform:scale(1.1);

background:#1ebe5d;

}

@keyframes whatsappPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.6);

}

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:30px;

bottom:20px;

left:20px;

}

}