/*==================================================
  Speedy Web Workers - Premium Agency Theme
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {

    --primary: #ffdf00;
    --secondary: #8A63FF;
    --dark: #0F172A;
    --dark2: #111827;
    --light: #F8FAFC;
    --white: #ffffff;
    --gray: #94A3B8;
    --border: rgba(255, 255, 255, .08);

    --gradient: linear-gradient(135deg, #ffdf00, #ffdd00a0);

    --shadow: 0 15px 40px rgba(0, 0, 0, .20);

    --radius: 18px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    background: #08111f;
    color: #fff;
    line-height: 1.8;
    overflow-x: hidden;

}

/*============================
Background
=============================*/

body::before {

    content: '';
    position: fixed;
    top: -250px;
    left: -250px;
    width: 600px;
    height: 600px;
    background: #6c3bff30;
    filter: blur(140px);
    z-index: -2;

}

body::after {

    content: '';
    position: fixed;
    right: -250px;
    bottom: -250px;
    width: 600px;
    height: 600px;
    background: #00c2ff22;
    filter: blur(150px);
    z-index: -2;

}

/*============================
Common
=============================*/

section {

    padding: 110px 0;

}

.container {

    max-width: 1200px;

}

h1,
h2,
h3,
h4,
h5 {

    font-weight: 700;

}

h1 {

    font-size: 51px;
    line-height: 1.1;

}

h2 {

    font-size: 46px;
    margin-bottom: 20px;

}

h6 {

    letter-spacing: 2px;
    text-transform: uppercase;

}

p {

    color: #b6bfd3;

}

.text-primary {

    color: #00C2FF !important;

}

/*============================
Navbar
=============================*/

.navbar {

    padding: 22px 0;
    transition: .4s;

}

.navbar.scrolled {

    background: #08111fee;
    backdrop-filter: blur(14px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, .30);

}

.navbar-brand {

    font-size: 19px;
    font-weight: 500;
    color: #fff;

}

.navbar-brand span {

    color: #e8cb07;

}

.nav-link {

    color: #fff !important;
    margin-left: 20px;
    font-weight: 500;
    transition: .35s;

}

.nav-link:hover, .nav-link.active {

    color: #e8cb07 !important;

}

/*============================
Buttons
=============================*/

.btn {

    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;

}

.btn-primary {

    background: var(--gradient);
    border: none;

}

.btn-primary:hover {

    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(108, 59, 255, .35);

}

.btn-outline-light {

    border: 2px solid rgba(255, 255, 255, .2);

}

.btn-outline-light:hover {

    background: #fff;
    color: #000;

}

/*============================
Hero
=============================*/

.hero {

    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;

}

.hero h1 span {

    background: var(--gradient);
    -webkit-background-clip: text;
    color: transparent;

}

.hero-img {

    border-radius: 25px;
    box-shadow: var(--shadow);
    animation: float 5s ease-in-out infinite;

}

@keyframes float {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-20px);

    }

    100% {

        transform: translateY(0);

    }

}

/*============================
Glass Card
=============================*/

.glass {

    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);

}

/*============================
About
=============================*/

.about img {

    border-radius: 25px;
    box-shadow: var(--shadow);

}

.about h3 {

    font-size: 48px;
    color: #00C2FF;

}

/*============================
Services
=============================*/

.service-box {

    padding: 40px;
    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    transition: .4s;

    backdrop-filter: blur(14px);

}

.service-box:hover {

    transform: translateY(-10px);

    border-color: #6C3BFF;

    box-shadow: 0 20px 50px rgba(108, 59, 255, .25);

}

.service-box i {

    font-size: 52px;

    margin-bottom: 25px;

    background: var(--gradient);

    -webkit-background-clip: text;

    color: transparent;

}

.service-box h4 {

    margin-bottom: 15px;

}

/*============================
Footer
=============================*/

footer {

    background: #050b16;

    border-top: 1px solid rgba(255, 255, 255, .08);

}

footer p {

    margin: 0;

}

/*============================
Scrollbar
=============================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-thumb {

    background: #6C3BFF;

    border-radius: 30px;

}

::-webkit-scrollbar-track {

    background: #08111f;

}


/* ================= PORTFOLIO ================= */

.portfolio-card {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

}

.portfolio-card img {

    transition: .6s;

    width: 100%;

    display: block;

}

.portfolio-card:hover img {

    transform: scale(1.1);

}

.overlay {

    position: absolute;

    left: 0;

    right: 0;

    bottom: -100%;

    padding: 30px;

    background: rgba(9, 20, 40, .9);

    transition: .4s;

}

.portfolio-card:hover .overlay {

    bottom: 0;

}

/* ================= COUNTER ================= */

.counter {

    font-size: 55px;

    font-weight: 700;

    background: linear-gradient(45deg, #00C2FF, #6C3BFF);

    -webkit-background-clip: text;

    color: transparent;

}

/* ================= PROCESS ================= */

.process-number {

    font-size: 70px;

    font-weight: 800;

    opacity: .15;

}

/* ================= TECHNOLOGY ICON ================= */

.service-box:hover i {

    transform: rotate(10deg) scale(1.1);

    transition: .4s;

}

/* ================= IMAGE ================= */

img {

    max-width: 100%;

}

/* Scroll Progress */

#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #6C3BFF, #00C2FF);
    z-index: 99999;
}

/* Back To Top */

#backTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #6C3BFF;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
}

#backTop.show {
    opacity: 1;
    visibility: visible;
}

#backTop:hover {
    transform: translateY(-5px);
    background: #00C2FF;
}

/* Reveal Animation */

.service-box,
.portfolio-card,
.about img {
    opacity: 0.89;
    transform: translateY(40px);
    transition: .8s;
}

.service-box.show,
.portfolio-card.show,
.about img.show {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================
   Portfolio Filter
===================================== */

.filter-btn.active {

    background: linear-gradient(135deg, #6C3BFF, #00C2FF);

    color: #fff;

}

.portfolio-item {

    transition: .4s;

}

.hidden {

    display: none;

}

/* =====================================
   Lightbox
===================================== */

#lightbox {

    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, .92);

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 999999;

    animation: fadeIn .3s;

}

#lightbox img {

    max-width: 85%;

    max-height: 85%;

    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);

}

#closeLightbox {

    position: absolute;

    top: 30px;

    right: 40px;

    font-size: 55px;

    color: #fff;

    cursor: pointer;

    font-weight: bold;

}

@keyframes fadeIn {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

/*==================================================
CONTACT PAGE
==================================================*/

.form-control,
.form-select {

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    height: 58px;

    color: #fff;

    border-radius: 12px;

    box-shadow: none;

    transition: .35s;

}

.form-control:focus,
.form-select:focus {

    background: rgba(255, 255, 255, .08);

    border-color: #6C3BFF;

    color: #fff;

    box-shadow: 0 0 0 .25rem rgba(108, 59, 255, .2);

}

.form-control::placeholder {

    color: #aab3c5;

}

textarea.form-control {

    height: 180px;

    resize: none;

    padding-top: 18px;

}

/* Select */

.form-select {

    color: #aab3c5;

}

.form-select option {

    background: #111827;

    color: #fff;

}

/* Contact Cards */

.contact-card {

    padding: 30px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .4s;

    height: 100%;

}

.contact-card:hover {

    transform: translateY(-8px);

    border-color: #6C3BFF;

    box-shadow: 0 20px 40px rgba(108, 59, 255, .25);

}

.contact-card i {

    font-size: 45px;

    margin-bottom: 20px;

    background: linear-gradient(135deg, #6C3BFF, #00C2FF);

    -webkit-background-clip: text;

    color: transparent;

}

/* Footer */

footer {

    background: #050b16;

}

footer a {

    color: #aab3c5;

    text-decoration: none;

    transition: .3s;

}

footer a:hover {

    color: #00C2FF;

    padding-left: 6px;

}

/* Social Icons */

footer .fab {

    font-size: 24px;

    transition: .3s;

}

footer .fab:hover {

    color: #00C2FF;

    transform: translateY(-5px);

}

/* Google Map */

.ratio iframe {

    border: 0;

    border-radius: 20px;

}

/* Contact Button */

.btn-primary {

    position: relative;

    overflow: hidden;

}

.btn-primary::before {

    content: "";

    position: absolute;

    left: -100%;

    top: 0;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .18);

    transition: .5s;

}

.btn-primary:hover::before {

    left: 100%;

}

/* Success Alert */

.success-alert {

    display: none;

    padding: 18px;

    margin-top: 20px;

    background: #198754;

    border-radius: 10px;

    color: #fff;

    font-weight: 600;

}

/* Error Alert */

.error-alert {

    display: none;

    padding: 18px;

    margin-top: 20px;

    background: #dc3545;

    border-radius: 10px;

    color: #fff;

    font-weight: 600;

}

/* Floating Animation */

.contact-floating {

    animation: floating 5s ease-in-out infinite;

}

@keyframes floating {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

    100% {

        transform: translateY(0);

    }

}

/*==============================
Pricing
===============================*/

.pricing-card {

    position: relative;

    overflow: hidden;

    transition: .35s;

}

.pricing-card:hover {

    transform: translateY(-10px);

}

.featured {

    border: 2px solid #6C3BFF;

    box-shadow: 0 20px 50px rgba(108, 59, 255, .35);

}

.featured::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg, #6C3BFF, #00C2FF);

}

.price {

    font-size: 60px;

    font-weight: 700;

}

.table {

    border-color: rgba(255, 255, 255, .08);

}

.table th {

    background: #101826;

}

.table td {

    padding: 18px;

}

.accordion-button {

    box-shadow: none;

}

.accordion-button:not(.collapsed) {

    background: #6C3BFF;

    color: #fff;

}

.accordion-body {

    background: #101826;

    color: #ddd;

}

footer {

    background: #050b16;

}

footer a {

    color: #ccc;

    text-decoration: none;

    transition: .3s;

}

footer a:hover {

    color: #00C2FF;

}





.footer {

    background: #071321;

    padding: 90px 0 30px;

    position: relative;

    overflow: hidden;

}

.footer::before {

    content: "";

    position: absolute;

    width: 550px;

    height: 550px;

    background: #6C3BFF;

    opacity: .08;

    border-radius: 50%;

    left: -180px;

    top: -180px;

    filter: blur(80px);

}

.footer::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background: #00BFFF;

    opacity: .08;

    border-radius: 50%;

    right: -120px;

    bottom: -120px;

    filter: blur(80px);

}

.footer-top {

    position: relative;

    z-index: 2;

}

.footer-logo {

    font-size: 25px;

    font-weight: 800;

    color: #fff;

    text-decoration: none;

}

.footer-logo span {

    color: #00BFFF;

}

.footer p {

    color: #AAB3C5;

    line-height: 1.9;

}

.footer h5 {

    color: #fff;

    margin-bottom: 25px;

    font-weight: 700;

}

.footer ul {

    padding: 0;

    margin: 0;

    list-style: none;

}

.footer ul li {

    margin-bottom: 14px;

}

.footer ul li a {

    color: #AAB3C5;

    text-decoration: none;

    transition: .35s;

}

.footer ul li a:hover {

    color: #00BFFF;

    padding-left: 8px;

}

.social-icons {

    display: flex;

    gap: 15px;

}

.social-icons a {

    width: 48px;

    height: 48px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 15px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-size: 18px;

    transition: .35s;

    text-decoration: none;

}

.social-icons a:hover {

    background: linear-gradient(135deg, #6C3BFF, #00BFFF);

    transform: translateY(-8px);

}

.newsletter {

    padding: 35px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 22px;

    backdrop-filter: blur(20px);

}

.newsletter .form-control {

    height: 56px;

    background: #0f1c2c;

    border: none;

    color: #fff;

}

.newsletter .btn {

    width: 60px;

}

.footer hr {

    margin: 60px 0 25px;

    border-color: rgba(255, 255, 255, .08);

}

.footer-bottom {

    position: relative;

    z-index: 2;

}

.footer-bottom p {

    margin: 0;

}

.footer-bottom a {

    color: #AAB3C5;

    text-decoration: none;

    margin-left: 25px;

    transition: .35s;

}

.footer-bottom a:hover {

    color: #00BFFF;

}






/* Responsive */


@media(max-width:992px) {

    .service-box {

        padding: 35px;

    }


    .footer {

        text-align: center;

    }

    .social-icons {

        justify-content: center;

        margin-bottom: 30px;

    }

    .footer-bottom {

        text-align: center;

    }

    .footer-bottom .text-lg-end {

        margin-top: 20px;

    }

    .footer-bottom a {

        margin: 0 10px;

    }

}

@media(max-width:991px) {

    .hero {

        padding-top: 120px;
        text-align: center;

    }

    .hero h1 {

        font-size: 48px;

    }

    .hero img {

        margin-top: 50px;

    }

    .nav-link {

        margin-left: 0;

        padding: 15px 0;

    }

}

@media(max-width:768px) {
    #menu.navbar-collapse
    {
            background: #111;
            padding: 15px;
    }
    .hide-me
    {
        display: none;
    }

    h1 {

        font-size: 40px;

    }

    h2 {

        font-size: 34px;

    }

    section {

        padding: 110px 0;

    }

    .service-box {

        padding: 30px;

    }


    .form-control,
    .form-select {

        height: 54px;

    }

    textarea.form-control {

        height: 150px;

    }

    footer {

        text-align: center;

    }

    footer .d-flex {

        justify-content: center;

    }

}

@media(max-width:576px) {

    .hero h1 {

        font-size: 34px;

    }

    .btn {

        width: 100%;
        margin-bottom: 15px;

    }

    .hero {

        padding-top: 120px;

    }

    .service-box {

        padding: 25px;

    }

    .btn {

        width: 100%;

    }
}