/* =====================================================
   GOOGLE FONT
===================================================== */


/* =====================================================
   CSS VARIABLES
===================================================== */

:root{

    --bg-color:#2B2828;
    --primary:#0D85EB;
    --white:#ffffff;
    --text:#c9c9c9;

    --border:rgba(255,255,255,.08);

    --container:1320px;

    --transition:.35s ease;

}


/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Outfit',sans-serif;
    background:var(--bg-color);
    color:var(--white);

    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;
    cursor:pointer;

}


/* =====================================================
   COMMON
===================================================== */

.container{
    
    width:100%;

    max-width:1320px;

    margin:0 auto;

    padding:0 20px;

}

section{

    padding:120px 0;

}

/* =====================================================
   NAVBAR
===================================================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    padding:22px 0;

    background:rgba(43,40,40,.25);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

    transition:.35s ease;


}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:70px;
}

.logo img{

    height:58px;

    width:auto;

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:45px;

}

.nav-menu a{

    color:var(--white);

    font-size:16px;

    font-weight:500;

    transition:var(--transition);

    position:relative;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a:hover::after{

    width:100%;

}

.contact-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:14px 30px;

    border-radius:12px;

    background:linear-gradient(135deg,#0D85EB,#42A5F5);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.contact-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(13,133,235,.35);

}

/* =====================================================
   HERO
===================================================== */

#hero{

     min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding-top:120px;
}

.hero-content{

    max-width:600px;

}



.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.hero-content h1{

    font-size:58px;

    line-height:1.12;

    margin:22px 0;

    font-weight:700;

    max-width:620px;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    color:var(--text);

    font-size:19px;

    line-height:1.9;

    max-width:560px;

    margin-top:10px;

}

.hero-badge{

    display:inline-block;

    padding:10px 20px;

    border:1px solid var(--border);

    border-radius:50px;

    background:rgba(255,255,255,.03);

    color:var(--primary);

    font-weight:500;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:50px;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

    padding:16px 34px;

    border-radius:14px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(13,133,235,.35);

}

.btn-secondary{

    border:1px solid var(--border);

    color:#fff;

    padding:16px 34px;

    border-radius:14px;

    transition:.35s;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.05);

}

.hero-image{

    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    transform:translateX(40px);

}

.hero-image::before{

    content:"";

    position:absolute;

    width:920px;
    height:920px;

    background:rgba(13,133,235,.18);

    filter:blur(130px);

    border-radius:50%;

    z-index:1;

}

.hero-image img{

     height:500px;
     width:auto;

     position:relative;

     z-index:2;


}

.floating-card{

    position:absolute;

    padding:14px 20px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    color:#fff;

    font-size:15px;

    font-weight:500;

    box-shadow:0 10px 40px rgba(0,0,0,.25);

}

.card-one{

    top:12%;

    left:5%;
}

.card-two{

    top:28%;

    right:-20px;

    z-index:3;
}

.card-three{

    bottom:25%;

    left:0;

    z-index:3;

}

.card-four{

    bottom:10%;

    right:-20px;

    z-index:3;

}

/* =====================================================
   ABOUT
===================================================== */

#about{

    padding:70px 0;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;


}

.about-image{

    display:flex;
    justify-content:center;

}

.about-image img{

    width:100%;

    max-width:560px;

    border-radius:20px;

    object-fit:cover;


}

.about-badge{

    display:inline-block;

    padding:10px 22px;

    border:1px solid var(--border);

    border-radius:40px;

    color:var(--primary);

    background:rgba(255,255,255,.03);

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

.about-content h2{

    font-size:44px;

    line-height:1.25;

    margin:18px 0 24px;

    max-width:620px;

    font-weight:700;

}

.about-content p{

    font-size:17px;

    line-height:1.8;

    max-width:620px;

    color:var(--text);

}

.about-grid{

    margin-top:45px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.about-card{

    padding:22px;

    border:1px solid var(--border);

    border-radius:18px;

    background:rgba(255,255,255,.03);

    transition:.35s;
}

.about-card:hover{

    border-color:var(--primary);

    transform:translateY(-8px);

}

.about-card h3{

    font-size:20px;

    margin-bottom:10px;

}

.about-card p{

    font-size:15px;

    line-height:1.7;

}

/* =====================================================
   SERVICES
===================================================== */

#services{

    padding:70px 0;

}

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-badge{

    display:inline-block;

    padding:10px 22px;

    border:1px solid var(--border);

    border-radius:40px;

    background:rgba(255,255,255,.03);

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

.section-title h2{

    font-size:46px;

    line-height:1.2;

    margin:22px 0;

}

.section-title p{

    color:var(--text);

    font-size:18px;

    line-height:1.8;

}

/* ========================= */

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

/* ========================= */

.service-card{

    padding:32px;

    border:1px solid var(--border);

    border-radius:22px;

    background:rgba(255,255,255,.03);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 18px 45px rgba(13,133,235,.12);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:rgba(13,133,235,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:26px;

}

.service-card h3{

    font-size:22px;

    margin-bottom:16px;

}

.service-card p{

    color:var(--text);

    font-size:16px;

    line-height:1.8;

}

/* =====================================================
   PORTFOLIO
===================================================== */

#portfolio{

    padding:100px 0;

}

.portfolio-item{

    display:grid;

    grid-template-columns:520px 1fr;

    gap:60px;

    align-items:center;

    padding:45px;

    margin-bottom:40px;

    border:1px solid var(--border);

    border-radius:24px;

    background:rgba(255,255,255,.03);

    transition:.35s;

}

.portfolio-item:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(13,133,235,.10);

}

.portfolio-image{

    overflow:hidden;

    border-radius:18px;

}

.portfolio-image img{

    width:100%;

    display:block;

    border-radius:18px;

    transition:.5s;

}

.portfolio-item:hover .portfolio-image img{

    transform:scale(1.05);

}

.industry{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    margin-bottom:14px;

}

.portfolio-content h3{

    font-size:42px;

    margin-bottom:18px;

}

.portfolio-content p{

    color:var(--text);

    font-size:17px;

    line-height:1.8;

    max-width:620px;

}

.portfolio-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin:30px 0;

}

.portfolio-tags span{

    padding:10px 18px;

    border-radius:30px;

    border:1px solid var(--border);

    background:rgba(255,255,255,.04);

    font-size:14px;

}

.project-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 30px;

    border-radius:12px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.project-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(13,133,235,.35);

}

/* =====================================================
   WHY CHOOSE US
===================================================== */

#why-us{

    padding:70px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.why-card{

    padding:34px 28px;

    border:1px solid var(--border);

    border-radius:22px;

    background:rgba(255,255,255,.03);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 18px 40px rgba(13,133,235,.12);

}

.why-number{

    width:60px;

    height:60px;

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(13,133,235,.12);

    color:var(--primary);

    font-size:20px;

    font-weight:700;

    margin-bottom:28px;

}

.why-card h3{

    font-size:24px;

    margin-bottom:14px;

}

.why-card p{

    color:var(--text);

    line-height:1.8;

    font-size:16px;

}

/* =====================================================
   PROCESS
===================================================== */

#process{

    padding:100px 0;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.process-card{

    position:relative;

    padding:34px 28px;

    border:1px solid var(--border);

    border-radius:22px;

    background:rgba(255,255,255,.03);

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 18px 40px rgba(13,133,235,.12);

}

.process-number{

    width:65px;

    height:65px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(13,133,235,.12);

    color:var(--primary);

    font-size:22px;

    font-weight:700;

    margin-bottom:28px;

}

.process-card h3{

    font-size:24px;

    margin-bottom:14px;

}

.process-card p{

    color:var(--text);

    font-size:16px;

    line-height:1.8;

}

/* =====================================================
   FAQS
===================================================== */

#faqs{

    padding:100px 0;

}

.faq-container{

    max-width:900px;

    margin:0 auto;

}

.faq-item{

    margin-bottom:18px;

    border:1px solid var(--border);

    border-radius:18px;

    background:rgba(255,255,255,.03);

    overflow:hidden;

}

.faq-item summary{

    position:relative;

    padding-right:70px;

    cursor:pointer;

    list-style:none;

    padding:24px 28px;

    font-size:20px;

    font-weight:600;

    color:var(--white);

}

.faq-item summary::after{

    content:"+";

    position:absolute;

    right:28px;

    top:50%;

    transform:translateY(-50%);

    font-size:28px;

    font-weight:300;

    color:var(--primary);

    transition:.35s;

}

.faq-item[open] summary::after{

    content:"−";

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item p{

    padding:0 28px 24px;

    color:var(--text);

    line-height:1.8;

    font-size:16px;

}

/* =====================================================
   CTA
===================================================== */

#cta{

    padding:30px 0;

}

.cta-box{

    text-align:center;

    padding:90px 70px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);

    background:linear-gradient(
        135deg,
        rgba(13,133,235,.16),
        rgba(255,255,255,.03)
    );

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(13,133,235,.20);

    filter:blur(140px);

    top:-180px;

    right:-120px;

}

.cta-box h2{

    font-size:52px;

    max-width:760px;

    margin:25px auto;

    line-height:1.2;

}

.cta-box p{

    max-width:700px;

    margin:0 auto;

    color:var(--text);

    font-size:18px;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:22px;

    margin-top:45px;

}

/* =====================================================
   FOOTER
===================================================== */

footer{

    padding:70px 0 35px;

    border-top:1px solid var(--border);

    background:#242121;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:60px;

    padding-bottom:60px;

}

.footer-about img{

    width:70px;

    margin-bottom:25px;

}

.footer-about p{

    max-width:320px;

    color:var(--text);

    line-height:1.9;

}

.footer-links h4,
.footer-contact h4{

    margin-bottom:25px;

    font-size:22px;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links a{

    margin-bottom:15px;

    color:var(--text);

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

    padding-left:8px;

}

.footer-contact p{

    margin-bottom:14px;

    color:var(--text);

}

.footer-bottom{

    border-top:1px solid var(--border);

    padding-top:28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-policy{

    display:flex;

    gap:30px;

}

.footer-policy a{

    color:var(--text);

}

.footer-policy a:hover{

    color:var(--primary);

}

