/*=====================================
        VARIABLES
======================================*/

:root{
    --brand-green:#5aaee0;
    --brand-black:#000;
    --brand-white:#fff;

    --text-primary:#ffffff;
    --text-secondary:#b7b7b7;

    --border-color:rgba(255,255,255,.08);
}

/*=====================================
        RESET
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--brand-black);
    color:var(--text-primary);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/*=====================================
        HEADER
======================================*/

.main-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 60px;

    background:#000;

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:1000;

}

.logo a{

    font-size:34px;

    font-weight:800;

    color:#fff;

}

.logo-highlight{

    color:#5aaee0;

}

.header-middle{

    display:flex;

    align-items:center;

}

.main-nav ul{

    display:flex;

    gap:40px;

}

.main-nav a{

    position:relative;

    color:#fff;

    font-weight:500;

    transition:.3s;

}

.main-nav a:hover{

    color:#5aaee0;

}

.main-nav a.active{

    color:#5aaee0;

}

.main-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:100%;

    height:2px;

    background:#5aaee0;

    transform:scaleX(0);

    transform-origin:right;

    transition:.35s;

}

.main-nav a:hover::after,
.main-nav a.active::after{

    transform:scaleX(1);

    transform-origin:left;

}

.cta-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 32px;

    background:#5aaee0;

    color:#000;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.cta-button:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(90,174,224,.30);

}

/*=====================================
        HAMBURGER
======================================*/

.hamburger{

    display:none;

    border:none;

    background:transparent;

    cursor:pointer;

    width:48px;

    height:48px;

    justify-content:center;

    align-items:center;

    flex-direction:column;

}

.bar{

    width:28px;

    height:3px;

    background:#fff;

    margin:3px 0;

    transition:.3s;

}

.hamburger.active .bar:nth-child(1){

    transform:rotate(45deg) translate(6px,6px);

}

.hamburger.active .bar:nth-child(2){

    opacity:0;

}

.hamburger.active .bar:nth-child(3){

    transform:rotate(-45deg) translate(6px,-6px);

}

/*=====================================
        MOBILE MENU
======================================*/

.mobile-nav{

    position:fixed;

    inset:0;

    background:#000;

    display:none;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:30px;

    z-index:999;

}

.mobile-nav.active{

    display:flex;

}

.mobile-nav a{

    font-size:2rem;

    color:#fff;

    font-weight:700;

}

.mobile-nav a:hover{

    color:#5aaee0;

}
/*=====================================
            HERO SECTION
======================================*/

.social-hero{
    position:relative;
    padding:180px 0 120px;
    background:linear-gradient(135deg,#000 0%,#0a0a0a 50%,#000 100%);
    overflow:hidden;
}

.social-hero::before{
    content:"";
    position:absolute;
    top:-150px;
    left:-150px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(90,174,224,.18),transparent 70%);
    filter:blur(30px);
}

.social-hero::after{
    content:"";
    position:absolute;
    bottom:-180px;
    right:-180px;
    width:550px;
    height:550px;
    background:radial-gradient(circle,rgba(90,174,224,.12),transparent 70%);
    filter:blur(40px);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    background:rgba(90,174,224,.12);
    border:1px solid rgba(90,174,224,.25);
    color:#5aaee0;
    border-radius:50px;
    margin-bottom:25px;
    font-size:15px;
    font-weight:600;
}

.hero-tag i{
    font-size:16px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#5aaee0;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#b7b7b7;
    max-width:680px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:16px 36px;
    background:#5aaee0;
    color:#000;
    border-radius:50px;
    font-weight:700;
    transition:.35s;
}

.primary-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(90,174,224,.35);
}

.secondary-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:16px 36px;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    border-radius:50px;
    transition:.35s;
}

.secondary-btn:hover{
    background:#5aaee0;
    color:#000;
    border-color:#5aaee0;
}

/* Hero Stats */

.hero-stats{
    display:flex;
    gap:50px;
    margin-top:60px;
    flex-wrap:wrap;
}

.hero-stat h2{
    color:#5aaee0;
    font-size:42px;
    margin-bottom:8px;
}

.hero-stat p{
    color:#9d9d9d;
    font-size:15px;
    margin:0;
}

/*=====================================
        HERO RESPONSIVE
======================================*/

@media(max-width:991px){

    .social-hero{
        padding:150px 0 100px;
    }

    .hero-content h1{
        font-size:56px;
    }

    .hero-stats{
        gap:30px;
    }

}

@media(max-width:768px){

    .social-hero{
        padding:140px 0 90px;
    }

    .hero-content{
        text-align:center;
        margin:auto;
    }

    .hero-content h1{
        font-size:44px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
    }

}

@media(max-width:480px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-tag{
        font-size:13px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
    }

    .hero-stats{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

}
/*=====================================
            ABOUT SECTION
======================================*/

.social-about{
    padding:120px 0;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.social-about::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    top:-200px;
    right:-180px;
    background:radial-gradient(circle,rgba(90,174,224,.08),transparent 70%);
    filter:blur(35px);
}

.section-title{
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.section-title span{
    display:inline-block;
    color:#5aaee0;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title h2{
    font-size:52px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
}

.section-title p{
    max-width:720px;
    margin:auto;
    color:#b7b7b7;
    line-height:1.9;
    font-size:17px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
    border-radius:24px;
    overflow:hidden;
}

.about-image img{
    width:100%;
    border-radius:24px;
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.06);
}

.about-content h3{
    font-size:40px;
    color:#fff;
    margin-bottom:20px;
}

.about-content p{
    color:#b7b7b7;
    line-height:1.9;
    margin-bottom:18px;
    font-size:17px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.feature{
    display:flex;
    align-items:center;
    gap:12px;
    background:#111;
    padding:18px 20px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.feature:hover{
    transform:translateY(-6px);
    border-color:#5aaee0;
    box-shadow:0 12px 25px rgba(90,174,224,.12);
}

.feature i{
    color:#5aaee0;
    font-size:20px;
}

/*=====================================
        ABOUT RESPONSIVE
======================================*/

@media(max-width:991px){

    .about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-content{
        text-align:center;
    }

    .about-features{
        justify-content:center;
    }

}

@media(max-width:768px){

    .social-about{
        padding:90px 0;
    }

    .section-title h2{
        font-size:38px;
    }

    .about-content h3{
        font-size:32px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

}

@media(max-width:480px){

    .section-title h2{
        font-size:30px;
    }

    .about-content h3{
        font-size:26px;
    }

    .about-content p{
        font-size:15px;
    }

}
/*=====================================
            SERVICES SECTION
======================================*/

.social-services{
    padding:120px 0;
    background:#0b0b0b;
    position:relative;
    overflow:hidden;
}

.social-services::before{
    content:"";
    position:absolute;
    left:-180px;
    bottom:-180px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(90,174,224,.08),transparent 70%);
    filter:blur(35px);
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

.service-card{
    background:linear-gradient(145deg,#141414,#0c0c0c);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:40px 30px;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#5aaee0;
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#5aaee0;
    box-shadow:0 25px 45px rgba(90,174,224,.15);
}

.service-card i{
    width:75px;
    height:75px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#5aaee0;
    color:#000;
    border-radius:18px;
    font-size:30px;
    margin-bottom:25px;
    transition:.5s;
}

.service-card:hover i{
    transform:rotate(360deg) scale(1.1);
}

.service-card h3{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
    font-weight:700;
}

.service-card p{
    color:#b7b7b7;
    line-height:1.8;
    font-size:16px;
}

/*=====================================
        SERVICES RESPONSIVE
======================================*/

@media(max-width:1100px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .social-services{
        padding:90px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:30px 25px;
    }

    .service-card h3{
        font-size:22px;
    }

}

@media(max-width:480px){

    .service-card i{
        width:65px;
        height:65px;
        font-size:26px;
    }

    .service-card p{
        font-size:15px;
    }

}
/*=====================================
        WHY CHOOSE US
======================================*/

.why-social{
    padding:120px 0;
    background:#050505;
    position:relative;
    overflow:hidden;
}

.why-social::before{
    content:"";
    position:absolute;
    top:-220px;
    right:-220px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(90,174,224,.10),transparent 70%);
    filter:blur(40px);
}

.why-social .services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-social .service-card{
    text-align:center;
}

.why-social .service-card i{
    margin:0 auto 25px;
}

.why-social .service-card h3{
    margin-bottom:15px;
}

.why-social .service-card:hover{
    transform:translateY(-12px);
}

/*=====================================
            PROCESS
======================================*/

.social-process{
    padding:120px 0;
    background:#0b0b0b;
    position:relative;
}

.social-process .services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.social-process .service-card{
    text-align:center;
    padding:45px 25px;
}

.social-process .service-card h3{
    font-size:52px;
    color:#5aaee0;
    margin-bottom:15px;
    font-weight:800;
}

.social-process .service-card h4{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
    font-weight:700;
}

.social-process .service-card p{
    color:#b7b7b7;
    line-height:1.8;
}

.social-process .service-card:hover h3{
    transform:scale(1.08);
    transition:.3s;
}

/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:1100px){

    .why-social .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .social-process .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-social,
    .social-process{
        padding:90px 0;
    }

    .why-social .services-grid,
    .social-process .services-grid{
        grid-template-columns:1fr;
    }

    .social-process .service-card h3{
        font-size:42px;
    }

    .social-process .service-card h4{
        font-size:22px;
    }

}

@media(max-width:480px){

    .social-process .service-card{
        padding:35px 20px;
    }

    .social-process .service-card h3{
        font-size:36px;
    }

}
/*=====================================
            CTA SECTION
======================================*/

.social-cta{
    position:relative;
    padding:120px 0;
    background:linear-gradient(
        135deg,
        #000000 0%,
        #0a0a0a 50%,
        #000000 100%
    );
    overflow:hidden;
}

.social-cta::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle,
        rgba(90,174,224,.15) 0%,
        transparent 70%);
    filter:blur(40px);
}

.social-cta .container{
    position:relative;
    z-index:2;
}

.social-cta .section-title{
    margin-bottom:0;
    text-align:center;
}

.social-cta .section-title span{
    color:#5aaee0;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:15px;
    font-weight:700;
}

.social-cta h2{
    color:#fff;
    font-size:56px;
    font-weight:800;
    margin:20px 0;
}

.social-cta p{
    max-width:720px;
    margin:0 auto 45px;
    color:#b7b7b7;
    line-height:1.9;
    font-size:17px;
}

.social-cta .hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.social-cta .primary-btn{
    background:#5aaee0;
    color:#000;
}

.social-cta .primary-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(90,174,224,.35);
}

.social-cta .secondary-btn{
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
}

.social-cta .secondary-btn:hover{
    background:#5aaee0;
    color:#000;
    border-color:#5aaee0;
}

/*=====================================
        CTA RESPONSIVE
======================================*/

@media(max-width:991px){

    .social-cta h2{
        font-size:44px;
    }

}

@media(max-width:768px){

    .social-cta{
        padding:90px 0;
    }

    .social-cta h2{
        font-size:34px;
    }

    .social-cta p{
        font-size:16px;
    }

}

@media(max-width:480px){

    .social-cta h2{
        font-size:28px;
    }

    .social-cta .hero-buttons{
        flex-direction:column;
    }

    .social-cta .primary-btn,
    .social-cta .secondary-btn{
        width:100%;
    }

}
/*=====================================
            FOOTER
======================================*/

.main-footer{
    background:#050505;
    padding:90px 0 30px;
    border-top:1px solid rgba(255,255,255,.08);
    position:relative;
    overflow:hidden;
}

.main-footer::before{
    content:"";
    position:absolute;
    top:-200px;
    left:-200px;
    width:450px;
    height:450px;
    background:radial-gradient(circle,
        rgba(90,174,224,.08),
        transparent 70%);
    filter:blur(40px);
}

.footer-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    margin-bottom:50px;
}

.footer-logo h2{
    font-size:34px;
    color:#fff;
    margin-bottom:18px;
    font-weight:800;
}

.footer-logo p{
    color:#a5a5a5;
    line-height:1.9;
    max-width:340px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4{
    color:#fff;
    font-size:20px;
    margin-bottom:20px;
    font-weight:700;
}

.footer-links ul,
.footer-services ul{
    list-style:none;
}

.footer-links ul li,
.footer-services ul li{
    margin-bottom:14px;
}

.footer-links ul li a{
    color:#b7b7b7;
    transition:.3s;
}

.footer-links ul li a:hover{
    color:#5aaee0;
    padding-left:6px;
}

.footer-services li{
    color:#b7b7b7;
    transition:.3s;
}

.footer-services li:hover{
    color:#5aaee0;
    padding-left:6px;
}

.footer-contact p{
    color:#b7b7b7;
    margin-bottom:12px;
    line-height:1.8;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#111;
    color:#fff;
    transition:.35s;
}

.footer-social a:hover{
    background:#5aaee0;
    color:#000;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    text-align:center;
}

.footer-bottom p{
    color:#888;
    font-size:15px;
    letter-spacing:.5px;
}

/*=====================================
        FOOTER RESPONSIVE
======================================*/

@media(max-width:1100px){

    .footer-content{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}

@media(max-width:768px){

    .main-footer{
        padding:70px 0 25px;
    }

    .footer-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo p{
        margin:auto;
    }

    .footer-social{
        justify-content:center;
    }

}

@media(max-width:480px){

    .footer-logo h2{
        font-size:28px;
    }

    .footer-links h4,
    .footer-services h4,
    .footer-contact h4{
        font-size:18px;
    }

    .footer-bottom p{
        font-size:14px;
    }

}
/*=====================================
        UTILITY CLASSES
======================================*/

.text-center{
    text-align:center;
}

.mt-30{
    margin-top:30px;
}

.mt-50{
    margin-top:50px;
}

.mb-30{
    margin-bottom:30px;
}

.mb-50{
    margin-bottom:50px;
}

.hidden{
    display:none;
}

.w-100{
    width:100%;
}

/*=====================================
        SCROLLBAR
======================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#050505;
}

::-webkit-scrollbar-thumb{
    background:#5aaee0;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#6dc4f7;
}

/*=====================================
        SELECTION
======================================*/

::selection{
    background:#5aaee0;
    color:#000;
}

/*=====================================
        IMAGE EFFECTS
======================================*/

img{
    transition:.4s ease;
}

img:hover{
    transform:scale(1.02);
}

/*=====================================
        BUTTON ANIMATION
======================================*/

.primary-btn,
.secondary-btn,
.cta-button{

    position:relative;

    overflow:hidden;

}

.primary-btn::before,
.secondary-btn::before,
.cta-button::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.15);

    transition:.5s;

}

.primary-btn:hover::before,
.secondary-btn:hover::before,
.cta-button:hover::before{

    left:100%;

}

/*=====================================
        CARD EFFECTS
======================================*/

.service-card,
.feature{

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

}

.service-card:hover,
.feature:hover{

    box-shadow:
    0 20px 40px rgba(0,0,0,.35),
    0 0 20px rgba(90,174,224,.12);

}

/*=====================================
        FADE ANIMATION
======================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/*=====================================
        GENERAL ANIMATION
======================================*/

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.floating{

    animation:float 4s ease-in-out infinite;

}

/*=====================================
        RESPONSIVE FIXES
======================================*/

@media(max-width:1200px){

    .container{

        width:92%;

    }

}

@media(max-width:991px){

    .main-header{

        padding:18px 30px;

    }

}

@media(max-width:768px){

    .main-nav{

        display:none;

    }

    .hamburger{

        display:flex;

    }

    .container{

        width:94%;

    }

}

@media(max-width:576px){

    .container{

        width:92%;

    }

    .section-title{

        margin-bottom:50px;

    }

    .section-title p{

        font-size:15px;

    }

}

/*=====================================
        PERFORMANCE
======================================*/

.service-card,
.feature,
.primary-btn,
.secondary-btn,
.about-image img{

    will-change:transform;

}

/*=====================================
        END OF FILE
======================================*/

