/* ==========================================
   GOOGLE FONT / RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:#07111f;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
    cursor: default;
    animation:fadeIn .8s ease;
}
@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

img{
    max-width:100%;
    display:block;
    transition:0.4s ease;
}

img:hover{
    transform:scale(1.02);
}
::selection{
    background:#2da8ff;
    color:#fff;
}


a{
    text-decoration:none;
}

ul{
    list-style:none;
}


/* ==========================================
   NAVBAR
========================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    padding:0 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(10,20,40,.75);
    backdrop-filter:blur(20px);
    z-index:1000;
    transition:.35s ease;
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:200px;
    width:auto;
    display:block;
}

/* Navigation */

.navbar{
    display:flex;
    align-items:center;
    gap:35px;
}

.navbar a{
    color:#fff;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.navbar a:hover,
.navbar a.active{
    color:#2da8ff;
}

/* Get Started Button */

.btn-nav{
    background:#2da8ff;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-nav:hover{
    background:#fff;
    color:#07111f;
    transform:translateY(-3px);
}


/* ==========================================
   HERO SECTION
========================================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    padding:150px 8% 90px;
    background:
        radial-gradient(circle at top right,#1d5cff33,transparent 35%),
        radial-gradient(circle at bottom left,#00b8ff33,transparent 35%),
        #07111f;
}

/* Left Content */

.hero-content{
    flex:1;
}

.hero-content h1{
    font-size:68px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    font-size:21px;
    color:#d4d4d4;
    margin-bottom:35px;
    max-width:650px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:60px;
}

.primary-btn{
    display:inline-block;
    background:#2da8ff;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.primary-btn:hover{
    transform:translateY(-4px);
}

.secondary-btn{
    display:inline-block;
    border:2px solid #2da8ff;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    transition:.3s;
}

.secondary-btn:hover{
    background:#2da8ff;
}

/* Hero Image */

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:95%;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

/* Hero Stats */

.hero-stats{
    display:flex;
    gap:45px;
}

.hero-stats h2{
    color:#2da8ff;
    font-size:40px;
    margin-bottom:5px;
    font-weight:800;
}

.hero-stats p{
    color:#bbbbbb;
    font-size:16px;
}
/* ==========================================
   SECTIONS
========================================== */

section{
    padding:100px 8%;
    border-bottom:1px solid rgba(255,255,255,.05);
}

section h2{
    text-align:center;
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
}

.section-text{
    max-width:720px;
    margin:0 auto 60px;
    text-align:center;
    color:#bfbfbf;
    font-size:18px;
    line-height:1.8;
}


/* ==========================================
   SERVICES
========================================== */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:35px 30px;
    text-align:center;
    transition:.35s ease;
    backdrop-filter:blur(15px);
}


.card:hover{
    transform:translateY(-10px);
    border-color:#2da8ff;
    box-shadow:0 20px 40px rgba(45,168,255,.15);
}

.card i{
    font-size:52px;
    color:#2da8ff;
    margin-bottom:20px;
}

.card h3{
    font-size:24px;
    margin-bottom:15px;
}

.card p{
    color:#d0d0d0;
    font-size:16px;
    line-height:1.7;
}


/* ==========================================
   PORTFOLIO
========================================== */

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.project{
    background:#111b2d;
    border-radius:22px;
    overflow:hidden;
    transition:.35s ease;
    backdrop-filter:blur(15px);
}

.project:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.project img{
    width:100%;
    transition:.5s;
}

.project:hover img{
    transform:scale(1.08);
}

.project h3{
    padding:22px;
    text-align:center;
    font-size:22px;
    font-weight:700;
}
/* ==========================================
   PRICING
========================================== */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    align-items:stretch;
}

.price-card{
    background:#111b2d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    transition:.35s ease;
    position:relative;
    backdrop-filter:blur(15px);
}

.price-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.35);
}

.popular{
    border:2px solid #2da8ff;
}

.popular-tag{
    display:inline-block;
    background:#2da8ff;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.price-card h3{
    font-size:28px;
    margin-bottom:10px;
}

.price-card h1{
    font-size:56px;
    color:#2da8ff;
    margin:20px 0;
}

.price-card h1 span{
    font-size:18px;
    color:#bfbfbf;
}

.price-card ul{
    margin:35px 0;
    text-align:left;
}

.price-card ul li{
    margin:16px 0;
    color:#d5d5d5;
    font-size:16px;
}

.price-btn{
    display:inline-block;
    background:#2da8ff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.price-btn:hover{
    background:#fff;
    color:#07111f;
}


/* ==========================================
   ABOUT
========================================== */

.about{
    background:#0b1628;
}

.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-content h2{
    margin-bottom:20px;
}

.about-content p{
    color:#d2d2d2;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
}

.about-content ul{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.about-content li{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:22px;
    font-weight:600;
    transition:.3s ease;
}

.about-content li:hover{
    border-color:#2da8ff;
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(45,168,255,.12);
}
/* ==========================================
   CONTACT
========================================== */

.contact{
    text-align:center;
}

.contact h2{
    margin-bottom:15px;
}

.contact p{
    color:#cfcfcf;
    margin-bottom:40px;
    font-size:18px;
}

#planDisplay{
    font-size:18px;
    font-weight:700;
    color:#2da8ff;
    margin-bottom:25px;
}

form{
    max-width:700px;
    margin:40px auto 0;
}

form input,
form textarea{
    width:100%;
    padding:18px 20px;
    margin-bottom:20px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    outline:none;
    background:#152338;
    color:#fff;
    font-size:16px;
    transition:.3s;
}

form input::placeholder,
form textarea::placeholder{
    color:#9ea7b5;
}

form input:focus,
form textarea:focus{
    border-color:#2da8ff;
    box-shadow:0 0 0 3px rgba(45,168,255,.15);
}

form textarea{
    resize:vertical;
    min-height:180px;
}

form button{
    width:100%;
    background:#2da8ff;
    color:#fff;
    border:none;
    border-radius:50px;
    padding:18px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

form button:hover{
    background:#fff;
    color:#07111f;
    transform:translateY(-3px);
}


/* ==========================================
   FOOTER
========================================== */

footer{
    background:#050b15;
    padding:70px 8% 35px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-logo h2{
    font-size:38px;
    margin-bottom:10px;
}

.footer-logo p{
    max-width:600px;
    margin:0 auto;
    color:#bfbfbf;
    line-height:1.8;
}

.socials{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:40px 0;
}

.socials a{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#152338;
    color:#fff;
    border-radius:50%;
    font-size:22px;
    transition:.3s;
}

.socials a:hover{
    background:#2da8ff;
    transform:translateY(-5px);
}

.copyright{
    margin-top:25px;
    color:#8f96a3;
    font-size:15px;
}
/* ==========================================
   WHATSAPP BUTTON
========================================== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#25D366;
    color:#fff;
    font-size:30px;
    border-radius:50%;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
    z-index:999;
    transition:.3s ease;
}

.whatsapp:hover{
    transform:scale(1.1);
}


/* ==========================================
   BACK TO TOP BUTTON
========================================== */

#topBtn{
    position:fixed;
    bottom:100px;
    right:30px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#2da8ff;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    display:none;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    transition:.3s ease;
}

#topBtn:hover{
    transform:translateY(-5px);
}


/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#07111f;
}

::-webkit-scrollbar-thumb{
    background:#2da8ff;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#4ab6ff;
}


/* ==========================================
   SCROLL ANIMATION
========================================== */

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}


/* ==========================================
   ACTIVE NAVIGATION
========================================== */

.navbar a.active{
    color:#2da8ff;
}


/* ==========================================
   RESPONSIVE DESIGN
========================================== */

@media (max-width:992px){

    .header{
        height:auto;
        padding:18px 6%;
        flex-direction:column;
        gap:20px;
    }

    .logo img{
        height:55px;
    }

    .navbar{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .hero{
        flex-direction:column;
        text-align:center;
        padding:160px 6% 80px;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-content p{
        margin:auto auto 35px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-image{
        margin-top:40px;
    }

    .hero-image img{
        width:80%;
    }
}


@media (max-width:768px){

    section{
        padding:80px 6%;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .primary-btn,
    .secondary-btn,
    .btn-nav{
        width:100%;
        max-width:320px;
        text-align:center;
    }

    .hero-stats{
        gap:25px;
    }

    section h2{
        font-size:36px;
    }

    .price-card{
        padding:35px 25px;
    }

    .logo img{
        height:50px;
    }
}


@media (max-width:500px){

    .header{
        padding:15px 5%;
    }

    .logo img{
        height:45px;
    }

    .navbar{
        gap:15px;
    }

    .navbar a{
        font-size:15px;
    }

    .hero{
        padding-top:180px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-stats{
        flex-direction:column;
        gap:18px;
    }

    .socials a{
        width:45px;
        height:45px;
        font-size:20px;
    }

    .whatsapp{
        width:55px;
        height:55px;
        font-size:26px;
    }

    #topBtn{
        width:45px;
        height:45px;
    }
}
/* ==========================
   LOADER
========================== */

#loader{
    position:fixed;
    inset:0;
    background:#07111f;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

#loader img{
    width:120px;
}
